This repository was archived by the owner on Jul 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
opencensus/exporters/stats/stackdriver Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ cc_library(
3131 "//opencensus/common/internal/grpc:with_user_agent" ,
3232 "//opencensus/stats" ,
3333 "@com_github_grpc_grpc//:grpc++" ,
34- "@com_google_absl//absl/base" ,
34+ "@com_google_absl//absl/base:core_headers" ,
35+ "@com_google_absl//absl/memory" ,
3536 "@com_google_absl//absl/strings" ,
3637 "@com_google_absl//absl/synchronization" ,
3738 "@com_google_absl//absl/time" ,
@@ -89,8 +90,8 @@ cc_test(
8990 "//google/api:distribution" ,
9091 "//google/api:label" ,
9192 "//google/api:metric" ,
93+ "//google/api:monitored_resource" ,
9294 "//google/monitoring/v3:common" ,
93- "//google/monitoring/v3:metric" ,
9495 "//opencensus/stats" ,
9596 "//opencensus/stats:test_utils" ,
9697 "@com_google_absl//absl/strings" ,
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ void Handler::ExportViewData(
111111 (rpc_index + 1 ) * kTimeSeriesBatchSize );
112112 for (int i = rpc_index * kTimeSeriesBatchSize ; i < batch_end; ++i) {
113113 *request.add_time_series () = time_series[i];
114- };
114+ }
115115 ctx[rpc_index].set_deadline (
116116 absl::ToChronoTime (absl::Now () + opts_.rpc_deadline ));
117117 auto rpc (stub_->AsyncCreateTimeSeries (&ctx[rpc_index], request, &cq));
You can’t perform that action at this time.
0 commit comments