peridot/vendor/github.com/prometheus/common/expfmt/BUILD.bazel
Mustafa Gezen 8176493bc0
Add grpc-middleware-prometheus and promhttp dependencies
Signed-off-by: Mustafa Gezen <mustafa@ctrliq.com>
2022-08-31 20:06:02 +02:00

24 lines
792 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "expfmt",
srcs = [
"decode.go",
"encode.go",
"expfmt.go",
"openmetrics_create.go",
"text_create.go",
"text_parse.go",
],
importmap = "peridot.resf.org/vendor/github.com/prometheus/common/expfmt",
importpath = "github.com/prometheus/common/expfmt",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/matttproud/golang_protobuf_extensions/pbutil",
"//vendor/github.com/prometheus/client_model/go",
"//vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg",
"//vendor/github.com/prometheus/common/model",
"@com_github_golang_protobuf//proto:go_default_library",
],
)