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.
1 parent 15884c2 commit 15049b0Copy full SHA for 15049b0
collector/config.go
@@ -20,6 +20,7 @@ type ApplicationInstrumentation struct {
20
Type model.ApplicationType `json:"type"`
21
Host string `json:"host"`
22
Port string `json:"port"`
23
+ Sni string `json:"sni"`
24
Credentials model.Credentials `json:"credentials"`
25
Params map[string]string `json:"params"`
26
Instance string `json:"instance"`
@@ -131,6 +132,7 @@ func (c *Collector) Config(w http.ResponseWriter, r *http.Request) {
131
132
i := ApplicationInstrumentation{
133
Type: instrumentation.Type,
134
Host: ip.String(),
135
+ Sni: instance.NodeName(),
136
Port: instrumentation.Port,
137
Credentials: instrumentation.Credentials,
138
Params: instrumentation.Params,
0 commit comments