Go to file
Julius Volz 2dd70b8c13 Merge pull request #542 from prometheus/I-cant-believe-its-not-federation
Proof of concept for federation via console templates.
2015-02-19 00:23:39 +01:00
.build
Godeps Also vendor Prometheus-internal deps and update existing ones. 2015-02-17 02:20:12 +01:00
config Make config/Makefile use user Go installation. 2015-02-17 02:20:16 +01:00
console_libraries Fix Rickshaw/D3 version mismatch. 2015-02-02 23:41:36 +01:00
consoles Proof of concept for federation via console templates. 2015-02-18 23:21:33 +00:00
documentation Update architecture diagram and include source file. 2014-12-23 14:04:58 +01:00
notification More efficient JSON query result format. 2015-01-26 13:06:22 +01:00
retrieval Copy vendored deps manually instead of using Godeps. 2015-02-17 02:08:56 +01:00
rules Add tests for invalid uses of "offset". 2015-02-18 02:56:40 +01:00
stats Query timeout added. 2015-02-03 08:04:27 +01:00
storage Improve persisting chunks to disk. 2015-02-17 16:02:09 +01:00
templates Clean up license issues. 2015-01-21 20:07:45 +01:00
tools Clean up license issues. 2015-01-21 20:07:45 +01:00
utility Fix embedded files generation on OS X. 2015-02-16 16:52:11 +01:00
web Merge pull request #514 from prometheus/fix-graph-js-errors 2015-02-09 13:17:28 +01:00
.gitignore Also vendor Prometheus-internal deps and update existing ones. 2015-02-17 02:20:12 +01:00
.pkgignore
.travis.yml
AUTHORS.md Tweak AUTHORS. 2015-01-22 14:12:26 +01:00
CHANGELOG.md Cut release 0.10.0. 2015-01-26 15:35:57 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md. 2015-01-22 15:07:20 +01:00
Dockerfile Clean fetched package cache 2015-02-11 11:23:35 +11:00
LICENSE Clean up license issues. 2015-01-21 20:07:45 +01:00
Makefile Simplify GOPATH/dependency setup. 2015-02-17 02:20:16 +01:00
Makefile.INCLUDE Simplify GOPATH/dependency setup. 2015-02-17 02:20:16 +01:00
NOTICE Copy vendored deps manually instead of using Godeps. 2015-02-17 02:08:56 +01:00
README.md Fixed the link of the Travis build status image. 2015-01-27 14:43:46 +01:00
VERSION Also update VERSION file. 2015-01-26 15:52:34 +01:00
build_info.go Clean up license issues. 2015-01-21 20:07:45 +01:00
main.go Improve persisting chunks to disk. 2015-02-17 16:02:09 +01: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 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

In most cirumstances, 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.