The Prometheus monitoring system and time series database.
Find a file
Fabian Reinartz 54202bc5a8 Merge pull request #902 from xperimental/feature/marathon-discovery
retrieval/discovery: Service discovery using marathon API
2015-08-10 01:43:37 +02:00
.build Simplify makefiles. 2014-11-25 17:10:39 +01:00
cmd cmd/promtool: resolve rule files relative to config file 2015-07-03 15:10:37 +02:00
config Merge pull request #902 from xperimental/feature/marathon-discovery 2015-08-10 01:43:37 +02:00
console_libraries Add console template for Prometheus itself 2015-08-07 16:34:48 +01:00
consoles Add console template for Prometheus itself 2015-08-07 16:34:48 +01:00
documentation Adjust example config to naming changes 2015-05-19 18:12:58 +02:00
Godeps Make scheme relabelable via discovery 2015-08-06 12:00:33 +01:00
notification Add proxy_url parameter to allow specifying per-job HTTP proxy servers 2015-08-08 04:29:27 +10:00
promql Merge pull request #936 from prometheus/predict 2015-08-05 16:40:51 +02:00
retrieval Merge pull request #902 from xperimental/feature/marathon-discovery 2015-08-10 01:43:37 +02:00
rules rules: load rule files relative to a base dir 2015-07-03 15:10:37 +02:00
storage Don't warn/increment metric upon equal timestamps during append. 2015-08-09 23:49:49 +02:00
template Switch human-readable times to UTC. 2015-06-23 21:26:05 +02:00
util Add proxy_url parameter to allow specifying per-job HTTP proxy servers 2015-08-08 04:29:27 +10:00
version Cut Prometheus version 0.15.1. 2015-07-27 17:51:34 +02:00
web Add IDs to H2 tags to allow anchored linking 2015-07-30 15:39:05 -04:00
.dockerignore Add service discovery using Marathon API. 2015-08-10 01:36:24 +02:00
.gitignore Configuration options for bearer tokens, client certs & CA certs 2015-08-04 17:18:46 +01:00
.pkgignore Make prometheus build on bazooka repo manager 2013-06-13 16:31:33 +02:00
.travis.yml Enable container-based Travis builds. 2015-06-26 00:14:13 +02:00
AUTHORS.md Update Authors 2015-08-10 00:11:12 +02:00
CHANGELOG.md Cut Prometheus version 0.15.1. 2015-07-27 17:51:34 +02:00
circle.yml Add circleci yaml for Dockerfile test build 2015-06-26 11:00:15 +02:00
CONTRIBUTING.md Update CONTRIBUTING.md. 2015-01-22 15:07:20 +01:00
Dockerfile New dockerfile using alpine-glibc base image and make 2015-07-07 21:57:58 +02:00
LICENSE Clean up license issues. 2015-01-21 20:07:45 +01:00
Makefile create a unix-style tarball with a nested folder 2015-07-28 08:52:41 -07:00
Makefile.INCLUDE create a unix-style tarball with a nested folder 2015-07-28 08:52:41 -07:00
NOTICE Add support for Zookeeper Serversets for SD. 2015-06-16 11:02:08 +01:00
README.md Add circleci yaml for Dockerfile test build 2015-06-26 11:00:15 +02:00
travis-helper.sh Clean up license issues. 2015-01-21 20:07:45 +01:00

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.