mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
76 lines
1.8 KiB
Python
76 lines
1.8 KiB
Python
load("//tools:defs.bzl", "go_library", "go_test", "proto_library")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "metric",
|
|
srcs = [
|
|
"condmetric.go",
|
|
"metric.go",
|
|
"metric_unsafe.go",
|
|
"profiling_metric.go",
|
|
"sentry_profiling.go",
|
|
"sentry_profiling_fake.go",
|
|
],
|
|
stateify = False,
|
|
visibility = ["//:sandbox"],
|
|
deps = [
|
|
":metric_go_proto",
|
|
"//pkg/atomicbitops",
|
|
"//pkg/eventchannel",
|
|
"//pkg/gohacks",
|
|
"//pkg/log",
|
|
"//pkg/prometheus",
|
|
"//pkg/sync",
|
|
"@org_golang_google_protobuf//encoding/protojson:go_default_library",
|
|
"@org_golang_google_protobuf//types/known/timestamppb",
|
|
],
|
|
)
|
|
|
|
proto_library(
|
|
name = "metric",
|
|
srcs = ["metric.proto"],
|
|
visibility = ["//:sandbox"],
|
|
deps = [
|
|
"@com_google_protobuf//:timestamp_proto",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "metric_test",
|
|
srcs = [
|
|
"metric_test.go",
|
|
"utils_test.go",
|
|
],
|
|
library = ":metric",
|
|
tags = ["not_run:arm"],
|
|
deps = [
|
|
":metric_go_proto",
|
|
"//pkg/eventchannel",
|
|
"//pkg/prometheus",
|
|
"//pkg/sync",
|
|
"@com_github_google_go_cmp//cmp:go_default_library",
|
|
"@com_github_prometheus_common//expfmt",
|
|
"@org_golang_google_protobuf//proto:go_default_library",
|
|
"@org_golang_google_protobuf//testing/protocmp:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "condmetric_test",
|
|
srcs = [
|
|
"condmetric_profiling_disabled_test.go",
|
|
"condmetric_profiling_enabled_test.go",
|
|
"utils_test.go",
|
|
],
|
|
library = ":metric",
|
|
deps = [
|
|
":metric_go_proto",
|
|
"//pkg/eventchannel",
|
|
"@org_golang_google_protobuf//proto:go_default_library",
|
|
],
|
|
)
|