Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Update eventcounter spec #23142

Merged
merged 1 commit into from
Mar 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Documentation/design-docs/event-counter.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,13 @@ 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);
}

class PollingCounter {
PollingCounter(string name, EventSource eventSource Func<float> getMetricFunction);
string DisplayName;
TimeSpan DisplayRateTimeScale;
void AddMetaData(string key, string value);
}

Expand Down