Prajith P
06/03/2025, 11:08 AMdb.system
is always set to “redis.”
Is there a way to have the Service Map show each Redis host by name instead of lumping them together? For example, could we overwrite db.system
with the value of net.peer.name
so that each Redis instance shows up separately? If that isn’t the recommended approach, could you please advise on how to configure SigNoz (e.g., via Helm or the Collector) so that each Redis endpoint or any other external endpoint appears distinctly in the Service Map?
Thanks in advance for your help.Gil
06/04/2025, 8:00 AMprocessors:
resource/passport:
attributes:
- key: service.name
value: "PASSPORT"
action: upsert
Then add it in the pipeline
pipelines:
metrics/passport:
receivers: [httpcheck/passport]
processors: [resourcedetection, resource/env, resource/passport, transform/http_code, batch]
exporters: [clickhousemetricswrite, metadataexporter]
Maybe you can adapt something like that.Nagesh Bansal
06/04/2025, 2:34 PMSrikanth Chekuri
06/04/2025, 4:16 PM