Fix prometheus typo. (#3999)

Signed-off-by: Michael Payne <michael@sooper.org>

Mirrored from https://github.com/envoyproxy/envoy @ f0ca7541550baa3dd34dd69c948c2696d5c92e12
pull/620/head
data-plane-api(CircleCI) 6 years ago
parent 93e8038a99
commit 3e30543124
  1. 2
      bazel/repositories.bzl
  2. 4
      envoy/service/metrics/v2/BUILD

@ -239,7 +239,7 @@ py_proto_library(
) )
native.new_http_archive( native.new_http_archive(
name = "promotheus_metrics_model", name = "prometheus_metrics_model",
strip_prefix = "client_model-" + PROMETHEUS_SHA, strip_prefix = "client_model-" + PROMETHEUS_SHA,
url = "https://github.com/prometheus/client_model/archive/" + PROMETHEUS_SHA + ".tar.gz", url = "https://github.com/prometheus/client_model/archive/" + PROMETHEUS_SHA + ".tar.gz",
build_file_content = """ build_file_content = """

@ -10,7 +10,7 @@ api_proto_library_internal(
deps = [ deps = [
"//envoy/api/v2/core:base", "//envoy/api/v2/core:base",
"//envoy/api/v2/core:grpc_service", "//envoy/api/v2/core:grpc_service",
"@promotheus_metrics_model//:client_model", "@prometheus_metrics_model//:client_model",
], ],
) )
@ -19,6 +19,6 @@ api_go_grpc_library(
proto = ":metrics_service", proto = ":metrics_service",
deps = [ deps = [
"//envoy/api/v2/core:base_go_proto", "//envoy/api/v2/core:base_go_proto",
"@promotheus_metrics_model//:client_model_go_proto", "@prometheus_metrics_model//:client_model_go_proto",
], ],
) )

Loading…
Cancel
Save