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