Update eventcounter spec (#23142)
authorSung Yoon Whang <suwhang@microsoft.com>
Fri, 8 Mar 2019 22:54:38 +0000 (14:54 -0800)
committerGitHub <noreply@github.com>
Fri, 8 Mar 2019 22:54:38 +0000 (14:54 -0800)
Documentation/design-docs/event-counter.md

index ffff850..b5ffc05 100644 (file)
@@ -34,7 +34,6 @@ We believe adding some new top-level types will satisfy these requests:
     class EventCounter {
         EventCounter(string name, EventSource eventSource);
         string DisplayName;
-        TimeSpan DisplayRateTimeScale;
         void WriteMetric(float metric);
         void AddMetaData(string key, string value);
     }
@@ -42,7 +41,6 @@ We believe adding some new top-level types will satisfy these requests:
     class PollingCounter {
         PollingCounter(string name, EventSource eventSource Func<float> getMetricFunction);
         string DisplayName;
-        TimeSpan DisplayRateTimeScale;
         void AddMetaData(string key, string value);
     }