summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSung Yoon Whang <suwhang@microsoft.com>2019-03-08 14:54:38 -0800
committerGitHub <noreply@github.com>2019-03-08 14:54:38 -0800
commitee56e5874db8780c99d2d93169aacf477f7b73f1 (patch)
treed8b0d3ca1a26ae0c6ea3d1fa4d4b83610110b2ea
parentc1feb4eda03d1d82908d4d733c95413a1c85d749 (diff)
downloadcoreclr-ee56e5874db8780c99d2d93169aacf477f7b73f1.tar.gz
coreclr-ee56e5874db8780c99d2d93169aacf477f7b73f1.tar.bz2
coreclr-ee56e5874db8780c99d2d93169aacf477f7b73f1.zip
Update eventcounter spec (#23142)
-rw-r--r--Documentation/design-docs/event-counter.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/Documentation/design-docs/event-counter.md b/Documentation/design-docs/event-counter.md
index ffff8505b2..b5ffc056f5 100644
--- a/Documentation/design-docs/event-counter.md
+++ b/Documentation/design-docs/event-counter.md
@@ -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);
}