Prometheus instrumentation library for Go applications
Go to file
beorn7 5d286d7120 Update .gitignore
Inspired by
https://github.com/prometheus/common/pull/202

Signed-off-by: beorn7 <beorn@grafana.com>
2019-07-30 23:07:13 +02:00
.github Release v0.9.0 2018-10-15 13:28:28 +02:00
api Handle formatting when the time in nanoseconds requires more than a single int64 2019-07-09 09:23:52 -07:00
examples Add a simple buildInfoCollector 2019-06-06 22:24:23 +02:00
prometheus Support new base64 encoding for pushing to the Pushgateway 2019-07-22 20:31:37 +02:00
.gitignore Update .gitignore 2019-07-30 23:07:13 +02:00
.golangci.yml Add .golangci.yml 2019-04-25 10:38:07 +02:00
.travis.yml Make lint only run on 1.11 and higher 2019-07-22 15:45:59 +02:00
CHANGELOG.md Cut release v1.0.0 2019-06-14 23:54:28 +02:00
CONTRIBUTING.md Mention the DCO in the contributing guide 2018-05-31 14:22:30 +00:00
Dockerfile Using the recommended label syntax for maintainer in Dockerfile. 2018-08-27 08:28:47 -07:00
LICENSE License cleanup 2015-01-22 16:13:15 +01:00
MAINTAINERS.md Make Krasi the maintainer for the HTTP API client 2018-06-06 13:14:29 +02:00
Makefile Update Makefile.common 2019-03-13 09:43:07 +01:00
Makefile.common makefile: update Makefile.common with newer version 2019-07-20 00:01:36 +00:00
NOTICE Create a public registry interface and separate out HTTP exposition 2016-08-02 18:46:22 +02:00
README.md Cut release v1.0.0 2019-06-14 23:54:28 +02:00
VERSION Cut release v1.0.0 2019-06-14 23:54:28 +02:00
go.mod Implement process collector for Windows (#596) 2019-06-14 12:26:55 +02:00
go.sum Implement process collector for Windows (#596) 2019-06-14 12:26:55 +02:00

README.md

Prometheus Go client library

Build Status Go Report Card go-doc

This is the Go client library for Prometheus. It has two separate parts, one for instrumenting application code, and one for creating clients that talk to the Prometheus HTTP API.

This library requires Go1.9 or later.

Important note about releases and stability

This repository generally follows Semantic Versioning. However, the API client in prometheus/client_golang/api/… is still considered experimental. Breaking changes of the API client will not trigger a new major release. The same is true for selected other new features explicitly marked as EXPERIMENTAL in CHANGELOG.md.

Features that require breaking changes in the stable parts of the repository are being batched up and tracked in the v2 milestone. The v2 development happens in a separate branch for the time being. v2 releases off that branch will happen once sufficient stability is reached. In view of the widespread use of this repository, v1 and v2 will coexist for a while to enable a convenient transition.

Instrumenting applications

code-coverage go-doc

The prometheus directory contains the instrumentation library. See the guide on the Prometheus website to learn more about instrumenting applications.

The examples directory contains simple examples of instrumented code.

Client for the Prometheus HTTP API

code-coverage go-doc

The api/prometheus directory contains the client for the Prometheus HTTP API. It allows you to write Go applications that query time series data from a Prometheus server. It is still in alpha stage.

Where is model, extraction, and text?

The model packages has been moved to prometheus/common/model.

The extraction and text packages are now contained in prometheus/common/expfmt.

Contributing and community

See the contributing guidelines and the Community section of the homepage.