Change from mean to sum in distribution. (#109)

pull/114/head
Bogdan Drutu 6 years ago committed by GitHub
parent 3a6c8d90f8
commit cbeb482511
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/opencensus/proto/metrics/v1/metrics.proto

@ -167,9 +167,9 @@ message DistributionValue {
// provided.
int64 count = 1;
// The arithmetic mean of the values in the population. If count is zero
// then this field must be zero.
double mean = 2;
// The sum of the values in the population. If count is zero then this field
// must be zero.
double sum = 2;
// The sum of squared deviations from the mean of the values in the
// population. For values x_i this is:

Loading…
Cancel
Save