The Prometheus monitoring system and time series database.
Find a file
Johannes 'fish' Ziemke e020b91603 Merge pull request #669 from prometheus/fabxc/sd_warn
Add warning about config changes.
2015-05-05 19:10:36 +02:00
.build Simplify makefiles. 2014-11-25 17:10:39 +01:00
config Cleanup, test, and document config. 2015-04-30 21:17:19 +02:00
console_libraries Make all paths absolute to support proxies 2015-04-02 20:36:47 +02:00
consoles Add cpu count to rhs table 2015-02-19 12:07:52 +01:00
documentation Remove hopelessly outdated tutorial. 2015-03-13 15:50:57 +01:00
Godeps Change JobConfig to ScrapeConfig. 2015-04-28 23:18:55 +02:00
notification Strip trailing slash in alertmanager URL. 2015-03-23 19:17:42 +01:00
retrieval Cleanup, test, and document config. 2015-04-30 21:17:19 +02:00
rules Cleanup, test, and document config. 2015-04-30 21:17:19 +02:00
stats Query timeout added. 2015-02-03 08:04:27 +01:00
storage Comment improvement. 2015-04-14 10:49:43 +02:00
templates Add stddev and stdvar aggregation functions. 2015-04-17 00:30:03 +01:00
tools Increase the usability of the rule_checker CLI. 2015-04-01 08:17:12 +02:00
utility Remove now-unused utility.Time type. 2015-03-27 23:45:11 +01:00
web Make target manager source based. 2015-04-24 15:49:35 +02:00
.gitignore Also vendor Prometheus-internal deps and update existing ones. 2015-02-17 02:20:12 +01:00
.pkgignore Make prometheus build on bazooka repo manager 2013-06-13 16:31:33 +02:00
.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
build_info.go Clean up license issues. 2015-01-21 20:07:45 +01:00
CHANGELOG.md Cut 0.13.1. 2015-04-09 16:36:04 +02:00
CONTRIBUTING.md Update CONTRIBUTING.md. 2015-01-22 15:07:20 +01:00
Dockerfile Duplicated packages already present in inherited images (mercurial => buildpack-deps:jessie-scm, gcc => golang:1.4) 2015-04-14 10:01:28 +02:00
LICENSE Clean up license issues. 2015-01-21 20:07:45 +01:00
main.go Add warning about config changes. 2015-05-05 15:17:55 +02:00
Makefile Makefile: Calculate $(GOROOT), etc. relative to Makefile instead of using $(PWD), which is not always available (eg., in debuild). 2015-02-22 23:14:11 -05:00
Makefile.INCLUDE Upgrade to go1.4.2. 2015-02-27 14:28:04 +01:00
NOTICE Copy vendored deps manually instead of using Godeps. 2015-02-17 02:08:56 +01:00
README.md Add warning about tarballs. 2015-04-10 13:53:32 +02:00
travis-helper.sh Clean up license issues. 2015-01-21 20:07:45 +01:00
VERSION Cut 0.13.1. 2015-04-09 16:36:04 +02:00

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.