This message was deleted.
# general
s
This message was deleted.
a
It was renamed to “Services”
b
I see "Services", but it still doesn't show individual containers, only the sample ones, i.e..., "frontend", "customer", etc...
a
hmm, not sure how you set your services up, out of the box I don’t see those at a per container level but at the logical service level which you assign your application via OpenTelemetry environment params
b
Copy code
docker run -it -p 8080:8080 -e SW_AGENT_NAME=docmagic-dev-torrance::bluelagoon -e POD_NAMESPACE=docmagic-dev-torrance cfpb-brian bash

docker run -it -p 8081:8080 -e SW_AGENT_NAME=docmagic-preprod-torrance::jetblue -e POD_NAMESPACE=docmagic-preprod-torrance cfpb-brian bash

docker run -it -p 8082:8080 -e SW_AGENT_NAME=docmagic-qa-torrance::chinaair -e POD_NAMESPACE=docmagic-qa-torrance cfpb-brian bash

docker run -it -p 8083:8080 -e SW_AGENT_NAME=docmagic-stage-torrance::evaair -e POD_NAMESPACE=docmagic-stage-torrance cfpb-brian bash

docker run -it -p 8084:8080 -e SW_AGENT_NAME=docmagic-dev-torrance::manadarinair -e POD_NAMESPACE=docmagic-dev-torrance cfpb-brian bash

docker run -it -p 8085:8080 -e SW_AGENT_NAME=docmagic-stage-torrance::starlux -e POD_NAMESPACE=docmagic-stage-torrance cfpb-brian bash

docker run -it -p 8086:8080 -e SW_AGENT_NAME=docmagic-qa-torrance::tigerair -e POD_NAMESPACE=docmagic-qa-torrance cfpb-brian bash

docker run -it -p 8087:8080 -e SW_AGENT_NAME=docmagic-preprod-torrance::delta -e POD_NAMESPACE=docmagic-preprod-torrance cfpb-brian bash

docker run -it -p 8088:8080 -e SW_AGENT_NAME=boa-preprod-torrance::blue22 -e POD_NAMESPACE=boa-preprod-torrance cfpb-brian bash
In the old version they all showed up individually by their names
And I was told that you guys were working on a feature to make them show up by namespace or group
a
I see. I am also a user of SigNoz so not too sure on that one
👍 1
b
This works:
Copy code
docker run -it -p 8080:8080 -e  OTEL_EXPORTER_OTLP_ENDPOINT="<http://10.1.130.93:4317>" -e OTEL_RESOURCE_ATTRIBUTES=service.name=bluelagoon -e POD_NAMESPACE=docmagic-dev-torrance cfpb-brian bash
👍 1
a
@Brian Bills are you able to see your services now and filter by
resource attributes
?
b
Hi Pranay, I'm on version v0.9.2 and I am looking around and I don't see any attributes. But still, wouldn't each container have to pass something telling signoz what environment / vertical that it's in? If you're open for a call some time, please let me know. Thanks.
p
Hi @Brian Bills! You would have to use
OTEL_RESOURCE_ATTRIBUTES
to pass namespace. For example:
Copy code
OTEL_RESOURCE_ATTRIBUTES=service.namespace=docmagic-dev-torrance,service.name=bluelagoon