Open SergeyKanzhelev opened 8 years ago
We plan to deprecate PerformanceCounter type in favor of custom metrics.
Proposed conversion is similar to what we use for custom metrics today. When we receive PerformanceCounter (pc) we save it as a Metric (m):
m.Name = pc.CategoryName + “ - “ + pc.CounterName m.Value = pc.Value m.Count = 1 m.Properties[“CounterInstanceName”] = pc.InstanceName foreach (prop in pc.Properties) m.Properties[prop.Name] = prop.Value
There is a multi-step plan to accomplish this:
FAQ
Will it affect existing limits?
Will there be a data loss?
We plan to deprecate PerformanceCounter type in favor of custom metrics.
Proposed conversion is similar to what we use for custom metrics today. When we receive PerformanceCounter (pc) we save it as a Metric (m):
There is a multi-step plan to accomplish this:
FAQ
Will it affect existing limits?
Will there be a data loss?