aboutsummaryrefslogtreecommitdiff
path: root/protos/perfetto/common/trace_stats.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protos/perfetto/common/trace_stats.proto')
-rw-r--r--protos/perfetto/common/trace_stats.proto17
1 files changed, 2 insertions, 15 deletions
diff --git a/protos/perfetto/common/trace_stats.proto b/protos/perfetto/common/trace_stats.proto
index 9a661e12e..970608789 100644
--- a/protos/perfetto/common/trace_stats.proto
+++ b/protos/perfetto/common/trace_stats.proto
@@ -21,11 +21,11 @@ package perfetto.protos;
// Statistics for the internals of the tracing service.
//
-// Next id: 11.
+// Next id: 10.
message TraceStats {
// From TraceBuffer::Stats.
//
- // Next id: 20.
+ // Next id: 19.
message BufferStats {
// Size of the circular buffer in bytes.
optional uint64 buffer_size = 12;
@@ -110,15 +110,6 @@ message TraceStats {
// the buffer. This is an indication of either a bug in the producer(s) or
// malicious producer(s).
optional uint64 abi_violations = 9;
-
- // The fields below have been introduced in Android R.
-
- // Num. of times the service detected packet loss on a trace writer
- // sequence. This is usually caused by exhaustion of available chunks in the
- // writer process's SMB. Note that this relies on the client's TraceWriter
- // indicating this loss to the service -- packets lost for other reasons are
- // not reflected in this stat.
- optional uint64 trace_writer_packet_loss = 19;
}
// Stats for the TraceBuffer(s) of the current trace session.
@@ -155,8 +146,4 @@ message TraceStats {
// Num. patches that were discarded by the service before attempting to apply
// them to a buffer, e.g. because the producer specified an invalid buffer ID.
optional uint64 patches_discarded = 9;
-
- // Packets that failed validation of the TrustedPacket. If this is > 0, there
- // is a bug in the producer.
- optional uint64 invalid_packets = 10;
}