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.
 
 
 
 
 
Julius Volz 5a58e876c3 Allow overriding GOARCH and GOOS in Makefile.INCLUDE. 9 years ago
.build Simplify makefiles. 10 years ago
Godeps retrieval: add honor label handling and parametrized querying. 10 years ago
cmd cmd/promtool: resolve rule files relative to config file 10 years ago
config Fix missing defaults for empty global config blocks 9 years ago
console_libraries Fix consoles "Prometheus" link to point to / 10 years ago
consoles Update node disk console for new filesystem labels. 9 years ago
documentation Adjust example config to naming changes 10 years ago
notification promql: add runbook to alert statement. 10 years ago
promql promql: implement JSON array format for scalar and string 10 years ago
retrieval Add Consul Address, ServicePort, and ServiceAddress to the meta labels. 9 years ago
rules rules: load rule files relative to a base dir 10 years ago
storage Only do regex lookups when there was no equality match. 9 years ago
template Switch human-readable times to UTC. 10 years ago
util httputil: remove non-general helper functions 10 years ago
version Cut release 0.15.0 9 years ago
web Fix /debug/pprof endpoint with new web router. 9 years ago
.gitignore git: ignore promtool, be less strict about config files. 10 years ago
.pkgignore Make prometheus build on bazooka repo manager 12 years ago
.travis.yml Enable container-based Travis builds. 10 years ago
AUTHORS.md Update email address 9 years ago
CHANGELOG.md Cut release 0.15.0 9 years ago
CONTRIBUTING.md Update CONTRIBUTING.md. 10 years ago
Dockerfile New dockerfile using alpine-glibc base image and make 10 years ago
LICENSE Clean up license issues. 10 years ago
Makefile Fix the race condition targets in the Makefile. 10 years ago
Makefile.INCLUDE Allow overriding GOARCH and GOOS in Makefile.INCLUDE. 9 years ago
NOTICE Add support for Zookeeper Serversets for SD. 10 years ago
README.md Add circleci yaml for Dockerfile test build 10 years ago
circle.yml Add circleci yaml for Dockerfile test build 10 years ago
travis-helper.sh Clean up license issues. 10 years ago

README.md

Prometheus Build Status Circle CI

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 binaries

Precompiled binaries for released versions are available in the releases section of the GitHub repository. Using the latest production release binary is the recommended way of installing Prometheus.

Debian and RPM packages are being worked on.

Use make

Clone the repository in the usual way with git clone. (If you download and unpack the source archives provided by GitHub instead of using git clone, you need to set an environment variable VERSION to make the below work. See issue #609 for context.)

In most circumstances, the following should work:

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

The above requires a number of common tools to be installed, namely curl, git, gzip, hg (Mercurial CLI).

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. After making changes to the files in web/static you have to run make in the web/ directory. This generates the respective web/blob/files.go file which embedds the static assets in the compiled binary.

Furthermore, the version information (see version/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.