-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can i check AccountingService's Metrics? #1789
Comments
Hello @eee269 👋🏽
Are you getting any metrics from the I'm not experienced with the operator and that is not a scenario we support in the demo currently, but I may be able to help you out. Just one question, have you uninstrumented the services? |
Thanks @julianocosta89 !!🙌 I already know that 1. http
http.client.connection.duration (histogram)
http.client.request.duration (histogram)
http.client.request.time_in_queue (histogram)
http.server.request.duration (histogram)
http.client.active_requests (sum)
http.client.open_connections (sum)
http.server.active_requests (sum)
2. process_memory
process.memory.usage (sum)
process.memory.virtual (sum)
3. process_cpu
process.cpu.count (sum)
process.cpu.time (sum)
4. process_thread
process.thread.count (sum)
5. dotnet_process_gc
process.runtime.dotnet.gc.allocations.size (sum)
process.runtime.dotnet.gc.collections.count (sum)
process.runtime.dotnet.gc.duration (sum)
process.runtime.dotnet.gc.objects.size (sum)
6. dotnet_process_jit
process.runtime.dotnet.jit.compilation_time (sum)
[process.runtime.dotnet.jit.il](http://process.runtime.dotnet.jit.il/)_compiled.size (sum)
process.runtime.dotnet.jit.methods_compiled.count (sum)
7. dotnet_process_thread
process.runtime.dotnet.thread_pool.completed_items.count (sum)
process.runtime.dotnet.thread_pool.queue.length (sum)
process.runtime.dotnet.thread_pool.threads.count (sum)
8. dotnet_kestrel
kestrel.connection.duration (histogram)
kestrel.active_connections (sum)
kestrel.queued_connections (sum)
9. dotnet_routing
aspnetcore.routing.match_attempts (sum)
10. dotnet_misc
process.runtime.dotnet.monitor.lock_contention.count (sum)
process.runtime.dotnet.timer.count (sum)
process.runtime.dotnet.assemblies.count (sum)
process.runtime.dotnet.exceptions.count (sum) have you uninstrumented the services?
|
I don't understand what you mean here. |
I'm deploying the OpenTelemetry demo on a Kubernetes cluster and encountering an issue. Here's my setup:
Resource Configuration
Workflow
Question
How can I verify metrics for the accounting service in ClickHouse?
Currently, I can't find any metrics using
ServiceName=accountingservice
. However, I can find metrics foradservice
andrecommendationservice
.Do I need to configure additional settings for auto-instrumentation?
Could you please guide me on what could be missing or misconfigured?
Current Auto-Instrumentation Setup
The text was updated successfully, but these errors were encountered: