Hi everyone,
I’m having an issue with Tempo and Prometheus when configuring span_metrics
. I’m trying to include two dimensions like this:
span_metrics:
dimensions:
- browserId
- report.type
filter_policies: - include:
attributes:- key: resource.service.name
value: ms-browser - key: name
value: GetData
match_type: strict
- key: resource.service.name
- include:
attributes:- key: resource.service.name
value: ms-reports - key: name
value: GetReport
match_type: strict
histogram_buckets:
- key: resource.service.name
- 0.002
- 0.004
- 0.008
- 0.016
- 0.032
- 0.064
- 0.128
- 0.256
- 0.512
- 1.02
- 2.05
- 4.1
Notes:
- If I remove
browserId
and leave onlyreport.type
, the metric appears, but the dimension doesn’t show up. - If I include both
browserId
andreport.type
, nothing works — no metrics appear at all. - Has anyone faced this issue or has a working example of
span_metrics
using multiple dimensions?
Thanks a lot in advance for your help!