Another separate question, I have multiple namespa...
# support
e
Another separate question, I have multiple namespaces in the same production cluster that have duplicate sets of our stack in them (app A, app B, etc.) I would like to have them not combine their telemetry on the Services page of signoz when I use the auto instrumentation sidecar. Is there a way to separate the apps out by namespace on this page? Or maybe prepend the namespace name to the service name?
n
I guess you are adding the service name trough env variable right? you can modify that to have the namespace
e
No, the auto injection from the sidecar somehow manages to figure it out - my guess is from the k8s Deployment name
Well, actually it probably takes it from
<http://app.kubernetes.io/name|app.kubernetes.io/name>
n
e
Solved this another way. In the sidecar I set the attributes based on the deployment.environment. That allows the Services page to be filtered:
Copy code
processors:
      batch:
      resource/k8s:
        attributes:
          - key: deployment.environment
            value: dev
            action: upsert
👍 1