Kibana version:
7.10.1
Elasticsearch version:
7.10.1
APM Server version:
7.8.0
APM Agent language and version:
java 1.19.1
Steps to reproduce:
start apm java agent with option
-Delastic.apm.disable_metrics=hikaricp.connections
Due to I got some error form APM Server
Sep 25 10:23:09 apm-server[31357]: WARN [transform] model/metricset.go:141 failed to transform sample model.Sample{Name:"hikaricp.connections.idle", Value:2, Values:[]float64(nil), Counts:[]int64(nil)}
Sep 25 10:23:09 apm-server[31357]: WARN [transform] model/metricset.go:141 failed to transform sample model.Sample{Name:"hikaricp.connections.creation.count", Value:600, Values:[]float64(nil), Counts:[]int64(nil)}
Sep 25 10:23:09 apm-server[31357]: WARN [transform] model/metricset.go:141 failed to transform sample model.Sample{Name:"hikaricp.connections.creation.sum.us", Value:7.0216e+07, Values:[]float64(nil), Counts:[]int64(nil)}
:
.
Refer to Support metrics with dots in their names #347
I want to filter out the metric "hikaricp.connections" only at APM Agent with java option
-Delastic.apm.disable_metrics=hikaricp.connections and keep other HikariCP metrics.
But after apply this setting, I still can't see other metrics like hikaricp.connections.* .
Why?