Replies: 7 comments 11 replies
-
Can you see your traces in Jaeger? Have you tried going through the Troubleshooting steps?
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Are you running off a docker image? I also suggest running the docker-compose example: https://github.com/jaegertracing/jaeger/tree/main/docker-compose/monitor#quickstart. I've just checked and is working as expected for me. That can be your baseline that you can use to build upon for your specific deployment. |
Beta Was this translation helpful? Give feedback.
-
I run docker-compose expample success, but my production environment does not have docker,I just can use CLI to deploy,I deployed it according to the configuration of docker, but the monitor page still has no data.The following are my relevant commands and configurations, please help me to see if there is any problem, thank you
|
Beta Was this translation helpful? Give feedback.
-
Okay, so I think we've established that your challenges most likely boil down to configuration. The reason why I suggest running the stack locally is so you have a chance to understand the configs necessary to get things working for SPM in a simple, self-contained environment that can be quickly brought up and down. For example, when I copy your OTEL config and paste it into the docker-compose example I can see the following error immediately on startup:
That's because: process:
batch: should be: processors:
batch: and there may be more configuration issues but at least you can test some of your deployment configs quickly within the local docker-compose setup and be confident they work, then you can deal with any problems relating to deployment and network. In short, we're reducing the problem space down to separate problems to make it easier to troubleshoot:
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
What happened?
I want to use jaeger's monitor page to monitor the running status of the application. I configured METRICS_STORAGE_TYPE according to the instructions, configured otelcol's
SpanMetrics Connector
and--prometheus.query.support-spanmetrics-connector=true
, but it didn't work, the monitor page All indicators are empty inSteps to reproduce
Expected behavior
The monitor page displays performance data
Relevant log output
No response
Screenshot
No response
Additional context
No response
Jaeger backend version
1.47.0
SDK
No response
Pipeline
javaagent->otelcol->spanmetrics connector->prometheus
Stogage backend
clickhouse
Operating system
linux
Deployment model
CLI
Deployment configs
No response
Beta Was this translation helpful? Give feedback.
All reactions