mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
22 lines
520 B
Python
22 lines
520 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "model",
|
||
|
srcs = [
|
||
|
"alert.go",
|
||
|
"fingerprinting.go",
|
||
|
"fnv.go",
|
||
|
"labels.go",
|
||
|
"labelset.go",
|
||
|
"metric.go",
|
||
|
"model.go",
|
||
|
"signature.go",
|
||
|
"silence.go",
|
||
|
"time.go",
|
||
|
"value.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/prometheus/common/model",
|
||
|
importpath = "github.com/prometheus/common/model",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|