예제 #1
0
 public static TagCollection HttpPath(this TagCollection tagCollection, string path)
 {
     return(tagCollection.Set("http.path", path));
 }
예제 #2
0
 public static TagCollection HttpHost(this TagCollection tagCollection, string host)
 {
     return(tagCollection.Set("http.host", host));
 }
예제 #3
0
 public static TagCollection ServiceIdentity(this TagCollection tags, string applicationName)
 {
     return(tags?.Set(ServiceTags.ServiceIdentity, applicationName));
 }
예제 #4
0
 public static TagCollection ServiceHost(this TagCollection tags, string host)
 {
     return(tags?.Set(ServiceTags.ServiceHost, host));
 }
예제 #5
0
 public static TagCollection ServiceEnvironment(this TagCollection tags, string environment)
 {
     return(tags?.Set(ServiceTags.ServiceEnvironment, environment));
 }
예제 #6
0
 public static TagCollection ServiceMetrics(this TagCollection tags, string metricsType)
 {
     return(tags?.Set(ServiceTags.ServiceMetrics, metricsType));
 }