Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit cbeb482

Browse files
author
Bogdan Drutu
authored
Change from mean to sum in distribution. (#109)
1 parent 3a6c8d9 commit cbeb482

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/opencensus/proto/metrics/v1/metrics.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ message DistributionValue {
167167
// provided.
168168
int64 count = 1;
169169

170-
// The arithmetic mean of the values in the population. If count is zero
171-
// then this field must be zero.
172-
double mean = 2;
170+
// The sum of the values in the population. If count is zero then this field
171+
// must be zero.
172+
double sum = 2;
173173

174174
// The sum of squared deviations from the mean of the values in the
175175
// population. For values x_i this is:

0 commit comments

Comments
 (0)