Go to file
Fabian Reinartz 6dde527ee0 Cut 0.14.0. 2015-06-01 18:44:21 +02:00
.build Simplify makefiles. 2014-11-25 17:10:39 +01:00
Godeps Update all vendored dependency to latest versions. 2015-05-22 13:45:14 +02:00
config Add Consul SD configuration. 2015-05-20 11:46:24 +02:00
console_libraries Convert pathPrefix to not have trailing slash. 2015-06-01 12:43:17 +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 Change case of alert json to initial lower letter. 2015-05-30 14:35:51 +01:00
promql Add increase() function, to replace delta(..., 1). 2015-05-26 22:49:21 +01:00
retrieval Merge pull request #744 from prometheus/fabxc/fix-labels 2015-05-27 19:57:15 +02:00
rules Convert pathPrefix to not have trailing slash. 2015-06-01 12:43:17 +02:00
stats Limit maximum number of concurrent queries. 2015-05-06 11:34:17 +02:00
storage Limit retrievable samples to retention window. 2015-05-27 13:13:59 +02:00
templates Convert pathPrefix to not have trailing slash. 2015-06-01 12:43:17 +02:00
tools Remove `name` arg from `Parse*` functions, enhance parsing errors. 2015-04-29 16:38:41 +02:00
utility Switch Prometheus to promql package. 2015-04-28 16:19:23 +02:00
web Fix slash position in MustBuildServerURL(). 2015-06-01 12:54:19 +02:00
.gitignore Ignore YAML files 2015-05-23 11:20:14 +02:00
.pkgignore
.travis.yml Use less offensive language WRT Travise. 2014-12-09 14:25:37 +01:00
AUTHORS.md Tweak AUTHORS. 2015-01-22 14:12:26 +01: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 Rename refs to prometheus.conf -> prometheus.yml 2015-05-22 15:25:18 +00:00
LICENSE Clean up license issues. 2015-01-21 20:07:45 +01:00
Makefile Remove logging output from test runs 2015-05-23 21:21:56 +02:00
Makefile.INCLUDE Remove logging output from test runs 2015-05-23 21:21:56 +02:00
NOTICE Copy vendored deps manually instead of using Godeps. 2015-02-17 02:08:56 +01:00
README.md Fix reference to example configuration file 2015-06-01 13:05:48 +02:00
VERSION Cut 0.14.0. 2015-06-01 18:44:21 +02:00
build_info.go Clean up license issues. 2015-01-21 20:07:45 +01:00
main.go Add links to configuration change notice. 2015-06-01 18:36:11 +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), 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.