First steps with Prometheus

    of Prometheus for your platform, then extract it:

    The Prometheus server is a single binary called (or prometheus.exe on Microsoft Windows). We can run the binary and see help on its options by passing the --help flag.

    1. ./prometheus --help
    2. usage: prometheus [<flags>]
    3. The Prometheus monitoring server
    4. . . .

    Before starting Prometheus, let’s configure it.

    Configuring Prometheus

    Prometheus configuration is YAML. The Prometheus download comes with a sample configuration in a file called prometheus.yml that is a good place to get started.

    We’ve stripped out most of the comments in the example file to make it more succinct (comments are the lines prefixed with a ).

    There are three blocks of configuration in the example configuration file: global, rule_files, and scrape_configs.

    The global block controls the Prometheus server’s global configuration. We have two options present. The first, scrape_interval, controls how often Prometheus will scrape targets. You can override this for individual targets. In this case the global setting is to scrape every 15 seconds. The evaluation_interval option controls how often Prometheus will evaluate rules. Prometheus uses rules to create new time series and to generate alerts.

    The last block, scrape_configs, controls what resources Prometheus monitors. Since Prometheus also exposes data about itself as an HTTP endpoint it can scrape and monitor its own health. In the default configuration there is a single job, called prometheus, which scrapes the time series data exposed by the Prometheus server. The job contains a single, statically configured, target, the on port 9090. Prometheus expects metrics to be available on targets on a path of /metrics. So this default job is scraping via the URL: .

    The time series data returned will detail the state and performance of the Prometheus server.

    For a complete specification of configuration options, see the configuration documentation.

    To start Prometheus with our newly created configuration file, change to the directory containing the Prometheus binary and run:

    1. ./prometheus --config.file=prometheus.yml

    Prometheus should start up. You should also be able to browse to a status page about itself at . Give it about 30 seconds to collect data about itself from its own HTTP metrics endpoint.

    You can also verify that Prometheus is serving metrics about itself by navigating to its own metrics endpoint: http://localhost:9090/metrics.

    Using the expression browser

    Let us try looking at some data that Prometheus has collected about itself. To use Prometheus’s built-in expression browser, navigate to and choose the “Console” view within the “Graph” tab.

    This should return a number of different time series (along with the latest value recorded for each), all with the metric name promhttp_metric_handler_requests_total, but with different labels. These labels designate different requests statuses.

    If we were only interested in requests that resulted in HTTP code 200, we could use this query to retrieve that information:

      To count the number of returned time series, you could write:

      For more about the expression language, see the expression language documentation.

      To graph expressions, navigate to and use the “Graph” tab.

      For example, enter the following expression to graph the per-second HTTP request rate returning status code 200 happening in the self-scraped Prometheus:

      1. rate(promhttp_metric_handler_requests_total{code="200"}[1m])

      You can experiment with the graph range parameters and other settings.

      Monitoring other targets

      In this guide, you installed Prometheus, configured a Prometheus instance to monitor resources, and learned some basics of working with time series data in Prometheus’ expression browser. To continue learning about Prometheus, check out the Overview for some ideas about what to explore next.