[SfStats] Add event connection count to atom proto.

Bug: 135480141
Test: builds
Change-Id: I5eeafd7f2631b0d2e72777ee802df378266cffda
diff --git a/bin/src/atoms.proto b/bin/src/atoms.proto
index 71afc32..0d63e6c 100644
--- a/bin/src/atoms.proto
+++ b/bin/src/atoms.proto
@@ -7911,6 +7911,10 @@
     // Total time that was spent performing animations.
     // This is derived from the present-to-present layer histogram
     optional int64 animation_millis = 5;
+    // Total number of event connections tracked by SurfaceFlinger at the time
+    // of this pull. If this number grows prohibitively large, then this can
+    // cause jank due to resource contention.
+    optional int32 event_connection_count = 6;
 }
 
 /**