gnu: Add go-github-com-prometheus-otlptranslator.

* gnu/packages/prometheus.scm (go-github-com-prometheus-otlptranslator): New variable.

Change-Id: Ib7d84bae39da3d6b8c75e1e4024a92de3e499e8a
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Arthur Rodrigues 2025-10-13 21:39:25 -03:00 committed by Sharlatan Hellseher
parent a94fd53bea
commit 9dc500b359
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -593,6 +593,32 @@ Protocol,ICMP} echo (ping) functionality.")
"This package provides tooling to build Prometheus exporters")
(license license:asl2.0)))
(define-public go-github-com-prometheus-otlptranslator
(package
(name "go-github-com-prometheus-otlptranslator")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/prometheus/otlptranslator")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1naca6ima2bzf6yhb2w9favqx644c0q1y16jlb2na7s4bgr3107p"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/prometheus/otlptranslator"))
(home-page "https://github.com/prometheus/otlptranslator")
(synopsis "OTLP Prometheus Translator")
(description
"This package provides a functionality to convert
@url{https://opentelemetry.io/docs/specs/otlp/, OTLP} metric and attribute
names to @url{https://prometheus.io/, Prometheus-compliant} formats. This is
an internal library for both Prometheus and Open Telemetry,")
(license license:asl2.0)))
(define-public go-github-com-prometheus-procfs
(package
(name "go-github-com-prometheus-procfs")