mirror of https://github.com/status-im/consul.git
Add emit_tags_as_labels to envoy bootstrap config when using Consul Telemetry Collector (#17888)
This commit is contained in:
parent
c8cfa605f8
commit
55056be093
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
connect: Add capture group labels from Envoy cluster FQDNs to Envoy exported metric labels
|
||||
```
|
|
@ -847,7 +847,8 @@ func appendTelemetryCollectorConfig(args *BootstrapTplArgs, telemetryCollectorBi
|
|||
"envoy_grpc": {
|
||||
"cluster_name": "consul_telemetry_collector_loopback"
|
||||
}
|
||||
}
|
||||
},
|
||||
"emit_tags_as_labels": true
|
||||
}
|
||||
}`
|
||||
|
||||
|
|
|
@ -539,7 +539,8 @@ const (
|
|||
"envoy_grpc": {
|
||||
"cluster_name": "consul_telemetry_collector_loopback"
|
||||
}
|
||||
}
|
||||
},
|
||||
"emit_tags_as_labels": true
|
||||
}
|
||||
}`
|
||||
|
||||
|
@ -638,7 +639,8 @@ func TestBootstrapConfig_ConfigureArgs(t *testing.T) {
|
|||
"envoy_grpc": {
|
||||
"cluster_name": "consul_telemetry_collector_loopback"
|
||||
}
|
||||
}
|
||||
},
|
||||
"emit_tags_as_labels": true
|
||||
}
|
||||
}`,
|
||||
StaticClustersJSON: `{
|
||||
|
|
|
@ -89,7 +89,8 @@
|
|||
"envoy_grpc": {
|
||||
"cluster_name": "consul_telemetry_collector_loopback"
|
||||
}
|
||||
}
|
||||
},
|
||||
"emit_tags_as_labels": true
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue