Go to file
Julius Volz c69b733956 Simplify Go dependency handling in Dockerfile.
Also, put quotes around the GOPATH in the Makefile for safety in case of
spaces, etc.
2015-06-23 23:58:09 +02:00
.build
Godeps retrieval: add honor label handling and parametrized querying. 2015-06-23 13:45:14 +02:00
cmd Merge pull request #816 from prometheus/fabxc/promctl 2015-06-22 16:40:09 +02:00
config config: show original input on String() 2015-06-23 19:40:44 +02:00
console_libraries Fix consoles "Prometheus" link to point to / 2015-06-18 19:25:19 +02:00
consoles Add cpu count to rhs table 2015-02-19 12:07:52 +01:00
documentation Adjust example config to naming changes 2015-05-19 18:12:58 +02:00
notification notification: remove flags 2015-06-15 19:01:06 +02:00
promql Merge pull request #810 from prometheus/fabxc/lmatch 2015-06-22 15:45:50 +02:00
retrieval Improve UI of /alerts page. 2015-06-23 18:48:45 +02:00
rules Improve UI of /alerts page. 2015-06-23 18:48:45 +02:00
storage Minor doc fixes. 2015-06-23 17:07:18 +02:00
template Switch human-readable times to UTC. 2015-06-23 21:26:05 +02:00
tools Remove `name` arg from `Parse*` functions, enhance parsing errors. 2015-04-29 16:38:41 +02:00
util util/cli: create CLI utility package 2015-06-18 21:28:03 +02:00
version version: move version information into separate package. 2015-06-16 14:48:29 +02:00
web Switch human-readable times to UTC. 2015-06-23 21:26:05 +02:00
.gitignore git: ignore promtool, be less strict about config files. 2015-06-23 11:53:00 +02:00
.pkgignore
.travis.yml Use less offensive language WRT Travise. 2014-12-09 14:25:37 +01:00
AUTHORS.md Update AUTHORS.md and put fabxc into maintainers. 2015-06-03 16:20:21 +02:00
CHANGELOG.md Cut 0.14.0. 2015-06-01 18:44:21 +02:00
CONTRIBUTING.md Update CONTRIBUTING.md. 2015-01-22 15:07:20 +01:00
Dockerfile Simplify Go dependency handling in Dockerfile. 2015-06-23 23:58:09 +02:00
LICENSE Clean up license issues. 2015-01-21 20:07:45 +01:00
Makefile Simplify Go dependency handling in Dockerfile. 2015-06-23 23:58:09 +02:00
Makefile.INCLUDE readme: remove tools that are no longer required 2015-06-23 00:40:44 +02:00
NOTICE Add support for Zookeeper Serversets for SD. 2015-06-16 11:02:08 +01:00
README.md readme: remove tools that are no longer required 2015-06-23 00:40:44 +02:00
travis-helper.sh Clean up license issues. 2015-01-21 20:07:45 +01:00

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 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.