projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7eb6f06
)
Update eventcounter spec (dotnet/coreclr#23142)
author
Sung Yoon Whang
<suwhang@microsoft.com>
Fri, 8 Mar 2019 22:54:38 +0000
(14:54 -0800)
committer
GitHub
<noreply@github.com>
Fri, 8 Mar 2019 22:54:38 +0000
(14:54 -0800)
Commit migrated from https://github.com/dotnet/coreclr/commit/
ee56e5874db8780c99d2d93169aacf477f7b73f1
docs/coreclr/design-docs/event-counter.md
patch
|
blob
|
history
diff --git
a/docs/coreclr/design-docs/event-counter.md
b/docs/coreclr/design-docs/event-counter.md
index
ffff850
..
b5ffc05
100644
(file)
--- a/
docs/coreclr/design-docs/event-counter.md
+++ b/
docs/coreclr/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);
}