Sync back from NetworkIpProvisioningReported in framework.
Add two new fileds in NetworkIpProvisioningReported:
- ignore_nud_failure_count
- query_nud_failure_count
Flag: EXEMPT proto change
Bug: 427056084
Test: TH
Change-Id: I19ad7e7a17a4cd3294b3d4a16fe37c0f9bb45c80
diff --git a/src/com/android/networkstack/metrics/stats.proto b/src/com/android/networkstack/metrics/stats.proto
index 972e1f1..9ef6c94 100644
--- a/src/com/android/networkstack/metrics/stats.proto
+++ b/src/com/android/networkstack/metrics/stats.proto
@@ -110,6 +110,14 @@
// Check which IPv6 provisioning mode is used for current connection
optional .android.stats.connectivity.Ipv6ProvisioningMode ipv6_provisioning_mode = 8;
+
+ // The event count of ignoring the organic NUD failure within the IP provisioning
+ // life cycle.
+ optional int32 ignore_nud_failure_count = 9;
+
+ // The event count of querying the NUD failure from database within the IP provisioning
+ // life cycle.
+ optional int32 query_nud_failure_count = 10;
}
/**
@@ -231,7 +239,6 @@
optional int64 counter_value = 2;
}
-
message ApfCounterList {
repeated ApfCounter apf_counter = 1;
}