You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2019/03/09 17:31:44 UTC

[beam] branch master updated: make MIs repeated in MetricResults proto

This is an automated email from the ASF dual-hosted git repository.

robertwb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 911e9ef  make MIs repeated in MetricResults proto
     new 46c30b8  Merge pull request #8022 [BEAM-4775] Make MIs repeated in MetricResults proto.
911e9ef is described below

commit 911e9ef9b2c08a31e497cbe9c48da710374ed331
Author: Ryan Williams <ry...@gmail.com>
AuthorDate: Sat Mar 9 04:20:22 2019 +0000

    make MIs repeated in MetricResults proto
---
 model/job-management/src/main/proto/beam_job_api.proto | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/model/job-management/src/main/proto/beam_job_api.proto b/model/job-management/src/main/proto/beam_job_api.proto
index a3d88a9..c7b972e 100644
--- a/model/job-management/src/main/proto/beam_job_api.proto
+++ b/model/job-management/src/main/proto/beam_job_api.proto
@@ -188,13 +188,13 @@ message GetJobMetricsRequest {
 }
 
 message GetJobMetricsResponse {
-  MetricsResults metrics = 1;
+  MetricResults metrics = 1;
 }
 
 // All metrics for a given job.  Runners may support one or the other or both.
-message MetricsResults {
-  org.apache.beam.model.pipeline.v1.MonitoringInfo attempted = 1;
-  org.apache.beam.model.pipeline.v1.MonitoringInfo committed = 2;
+message MetricResults {
+  repeated org.apache.beam.model.pipeline.v1.MonitoringInfo attempted = 1;
+  repeated org.apache.beam.model.pipeline.v1.MonitoringInfo committed = 2;
 }