Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71be329f authored by Jeffrey Huang's avatar Jeffrey Huang
Browse files

Add a new bucket drop reason for no data.

Bug: 157155330
Test: m -j
Change-Id: I17bb6b9f9692bb6e185c2dc0414dcb166e6e120c
parent e7b00f67
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -82,7 +82,9 @@ enum BucketDropReason {
    DIMENSION_GUARDRAIL_REACHED = 6,
    MULTIPLE_BUCKETS_SKIPPED = 7,
    // Not an invalid bucket case, but the bucket is dropped.
    BUCKET_TOO_SMALL = 8
    BUCKET_TOO_SMALL = 8,
    // Not an invalid bucket case, but the bucket is skipped.
    NO_DATA = 9
};

struct Activation {
+2 −0
Original line number Diff line number Diff line
@@ -212,6 +212,8 @@ message StatsLogReport {
      MULTIPLE_BUCKETS_SKIPPED = 7;
      // Not an invalid bucket case, but the bucket is dropped.
      BUCKET_TOO_SMALL = 8;
      // Not an invalid bucket case, but the bucket is skipped.
      NO_DATA = 9;
  };

  message DropEvent {