We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MetricTags now take a Dictionary of <string, string> instead of the string[].
var tags1 = new MetricTags(new Dictionary<string,string> { {"tagKey","tagValue"} }); MetricTags tags2 = new Dictionary<string,string> { {"tagKey","tagValue"} };
This has allowed for more simple code for formatting of tag name and values.