blob: 07e3d1e317656c35b5e04551a832ede1ebdc615d [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "metrics",
srcs = ["handler.go"],
importpath = "go.skia.org/infra/temporal/go/metrics",
visibility = ["//visibility:public"],
deps = [
"//go/metrics2",
"@io_temporal_go_sdk//client",
],
)
go_test(
name = "metrics_test",
srcs = ["handler_test.go"],
embed = [":metrics"],
race = "on",
deps = [
"//go/metrics2",
"@com_github_prometheus_client_golang//prometheus",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)