Prometheus instrumentation library for Go applications
Go to file
Kemal Akkoyun abf357c979
docs: Add RELEASE.md for the release process
docs: update README for version compatibility

Signed-off-by: Kemal Akkoyun <kakkoyun@gmail.com>
2024-11-19 18:10:35 +01:00
.bingo Fixed README & CHANGELOG; Added fmt makefile command (+bingo) for easier contributions. (#1289) 2023-06-13 14:54:49 +01:00
.github Update common Prometheus files (#1679) 2024-11-11 15:09:29 +01:00
api [chore]: enable perfsprint linter (#1676) 2024-11-08 09:54:31 +01:00
dagger Update Dagger and build. (#1610) 2024-09-02 11:40:53 +00:00
examples [chore]: enable perfsprint linter (#1676) 2024-11-08 09:54:31 +01:00
internal/github.com/golang/gddo feat: Support zstd compression (#1496) 2024-06-07 15:56:19 +01:00
prometheus Add native histograms 2024-11-13 14:19:40 +01:00
tutorials/whatsup Update Dagger and build. (#1610) 2024-09-02 11:40:53 +00:00
.gitignore Cut v1.15.0 (#1249) 2023-04-13 12:51:09 +02:00
.golangci.yml chore: enable usestdlibvars linter (#1680) 2024-11-11 15:19:33 +01:00
CHANGELOG.md Cut 1.20.5; update comments. 2024-10-14 21:56:44 +01:00
CODE_OF_CONDUCT.md Update common Prometheus files (#1045) 2022-05-05 07:46:54 +02:00
CONTRIBUTING.md chore: Remove half-implemented changelog automation (#1564) 2024-07-19 17:12:40 +01:00
Dockerfile prometheus: Fix convention violating names for generated collector metrics (#1048) 2022-05-09 10:33:45 +02:00
LICENSE License cleanup 2015-01-22 16:13:15 +01:00
MAINTAINERS.md Add Arianna as maintainer 💪 2024-10-15 09:36:59 -03:00
Makefile ci: daggerize test and lint pipelines (#1534) 2024-08-07 14:49:16 +02:00
Makefile.common Update common Prometheus files (#1683) 2024-11-12 20:02:43 +00:00
NOTICE Remove inlined upstream code (#1539) 2024-06-20 13:05:41 +02:00
README.md docs: Add RELEASE.md for the release process 2024-11-19 18:10:35 +01:00
RELEASE.md docs: Add RELEASE.md for the release process 2024-11-19 18:10:35 +01:00
SECURITY.md Update common Prometheus files (#1045) 2022-05-05 07:46:54 +02:00
VERSION Cut 1.20.5; update comments. 2024-10-14 21:56:44 +01:00
dagger.json ci: bump dagger to the latest version (#1588) 2024-08-20 09:48:50 +01:00
generate-go-collector.bash Auto-update Go Collector Metrics for new Go versions (#1476) 2024-03-26 12:42:34 +00:00
go.mod build(deps): bump google.golang.org/protobuf from 1.34.2 to 1.35.1 2024-11-01 09:49:50 +00:00
go.sum build(deps): bump google.golang.org/protobuf from 1.34.2 to 1.35.1 2024-11-01 09:49:50 +00:00
supported_go_versions.txt Update supported Go versions 2024-08-31 22:47:31 +02:00
update-go-version.bash feat: metrics generation workflow (#1481) 2024-04-04 08:25:38 +02:00

README.md

Prometheus Go client library

CI Go Report Card Go Reference Slack

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.

Version Compatibility

This library supports the three most recent major releases of Go. While it may function with older versions, we only provide fixes and support for the currently supported Go releases.

[!NOTE] See our Release Process for details on compatibility and support policies.

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, but plans for further development of v2 at the moment.

NOTE: The initial v2 attempt is in a separate branch. We also started experimenting on a new prometheus.V2.* APIs in the 1.x's V2 struct. Help wanted!

Instrumenting applications

Go Reference

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

Go Reference

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.

client_golang community is also present on the CNCF Slack #prometheus-client_golang.