The Prometheus monitoring system and time series database.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Steve Durrheimer af99960974 Small size docker image refactoring 10 years ago
.build Simplify makefiles. 10 years ago
Godeps Update vendoring. 10 years ago
config Fix scrape timeout in config. 10 years ago
console_libraries Make all paths absolute to support proxies 10 years ago
consoles Add cpu count to rhs table 10 years ago
documentation Remove hopelessly outdated tutorial. 10 years ago
notification Strip trailing slash in alertmanager URL. 10 years ago
retrieval Show correct error on wrong DNS response. 10 years ago
rules Make Prepare{Instant,Range}Query public 10 years ago
stats Query timeout added. 10 years ago
storage Comment improvement. 10 years ago
templates Add stddev and stdvar aggregation functions. 10 years ago
tools Increase the usability of the rule_checker CLI. 10 years ago
utility Remove now-unused utility.Time type. 10 years ago
web Add stddev and stdvar aggregation functions. 10 years ago
.gitignore Also vendor Prometheus-internal deps and update existing ones. 10 years ago
.pkgignore Make prometheus build on bazooka repo manager 12 years ago
.travis.yml Use less offensive language WRT Travise. 10 years ago
AUTHORS.md Tweak AUTHORS. 10 years ago
CHANGELOG.md Cut 0.13.1. 10 years ago
CONTRIBUTING.md Update CONTRIBUTING.md. 10 years ago
Dockerfile Small size docker image refactoring 10 years ago
LICENSE Clean up license issues. 10 years ago
Makefile Makefile: Calculate $(GOROOT), etc. relative to Makefile instead of using $(PWD), which is not always available (eg., in debuild). 10 years ago
Makefile.INCLUDE Upgrade to go1.4.2. 10 years ago
NOTICE Copy vendored deps manually instead of using Godeps. 10 years ago
README.md Add warning about tarballs. 10 years ago
VERSION Cut 0.13.1. 10 years ago
build_info.go Clean up license issues. 10 years ago
main.go Remove special listing of config.file in usage 10 years ago
travis-helper.sh Clean up license issues. 10 years ago

README.md

Prometheus Build Status

Prometheus is a systems and service monitoring system. It collects metrics from configured targets at given intervals, evaluates rule expressions, displays the results, and can trigger alerts if some condition is observed to be true.

Prometheus' main distinguishing features as compared to other monitoring systems are:

  • a multi-dimensional data model (timeseries defined by metric name and set of key/value dimensions)
  • a flexible query language to leverage this dimensionality
  • no dependency on distributed storage; single server nodes are autonomous
  • timeseries collection happens via a pull model over HTTP
  • pushing timeseries is supported via an intermediary gateway
  • targets are discovered via service discovery or static configuration
  • multiple modes of graphing and dashboarding support
  • federation support coming soon

Architecture overview

Install

There are various ways of installing Prometheus.

Precompiled packages

We plan to provide precompiled binaries for various platforms and even packages for common Linux distributions soon. Once those are offered, it will be the recommended way of installing Prometheus.

Use make

Clone the repository in the usual way with git clone. Do not download and unpack the source archives provided by GitHub. (The makefile depends on running in a git repository. This will be fixed eventually.)

In most circumstances, the following should work:

$ make build
$ ./prometheus -config.file=documentation/examples/prometheus.conf

The above requires a number of common tools to be installed, namely curl, git, gzip, hg (Mercurial CLI), sed, xxd. Should you need to change any of the protocol buffer definition files (*.proto), you also need the protocol buffer compiler protoc, v2.5.0 or higher, in your $PATH.

Everything else will be downloaded and installed into a staging environment in the .build sub-directory. That includes a Go development environment of the appropriate version.

The Makefile offers a number of useful targets. Some examples:

  • make test runs tests.
  • make tarball creates a tarball with the binary for distribution.
  • make race_condition_run compiles and runs a binary with the race detector enabled. To pass arguments when running Prometheus this way, set the ARGUMENTS environment variable (e.g. ARGUMENTS="-config.file=./prometheus.conf" make race_condition_run).

Use your own Go development environment

Using your own Go development environment with the usual tooling is possible, too, but you have to take care of various generated files (usually by running make in the respective sub-directory):

  • Compiling the protocol buffer definitions in config (only if you have changed them).
  • Generating the parser and lexer code in rules (only if you have changed parser.y or lexer.l).
  • The files.go blob in web/blob, which embeds the static web content into the binary.

Furthermore, the build info (see build_info.go) will not be populated if you simply run go build. You have to pass in command line flags as defined in Makefile.INCLUDE (see ${BUILDFLAGS}) to do that.

More information

  • The source code is periodically indexed: Prometheus Core.
  • You will find a Travis CI configuration in .travis.yml.
  • All of the core developers are accessible via the Prometheus Developers Mailinglist and the #prometheus channel on irc.freenode.net.

Contributing

Refer to CONTRIBUTING.md

License

Apache License 2.0, see LICENSE.