public static TagCollection HttpPath(this TagCollection tagCollection, string path) { return(tagCollection.Set("http.path", path)); }
public static TagCollection HttpHost(this TagCollection tagCollection, string host) { return(tagCollection.Set("http.host", host)); }
public static TagCollection ServiceIdentity(this TagCollection tags, string applicationName) { return(tags?.Set(ServiceTags.ServiceIdentity, applicationName)); }
public static TagCollection ServiceHost(this TagCollection tags, string host) { return(tags?.Set(ServiceTags.ServiceHost, host)); }
public static TagCollection ServiceEnvironment(this TagCollection tags, string environment) { return(tags?.Set(ServiceTags.ServiceEnvironment, environment)); }
public static TagCollection ServiceMetrics(this TagCollection tags, string metricsType) { return(tags?.Set(ServiceTags.ServiceMetrics, metricsType)); }