Monitoring JVM Metrics with Signoz in Kubernetes Cluster
TLDR Ragul had trouble monitoring JVM metrics in their Kubernetes cluster with Signoz using Helm. Srikanth advised modifying the scrape config in values.yaml and checking the host:port/path
.
Jun 05, 2023 (3 months ago)
Ragul
05:31 PMJun 06, 2023 (3 months ago)
Srikanth
12:47 AMRagul
04:14 AMSrikanth
07:47 AMRagul
10:32 AMRagul
10:32 AMRagul
10:34 AMSrikanth
11:24 AMotelCollectorMetrics:
config:
receivers:
# prometheus scrape config
prometheus:
config:
scrape_configs:
... <existing_configs_here>
- job_name: 'applications-metrics'
scrape_interval: 10s
metrics_path: <your probe endpoint>
static_configs:
- targets:
Ragul
04:59 PMRagul
05:01 PMFROM
(
SELECT DISTINCT JSONExtractString(labels, 'name') AS name
FROM signoz_metrics.time_series_v2
) AS tmp1
WHERE name ILIKE '%jdbc%' with this query
Ragul
05:02 PMSrikanth
06:35 PMhost:port/path
is valid and outputs the metrics.SigNoz Community
Indexed 825 threads (61% resolved)
Similar Threads
Monitoring JDBC and HIKARI Metrics in SigNoz
Ragulraj is unable to monitor JDBC and HIKARI metrics in their spring boot application using SigNoz. Srikanth suggests configuring `scrape_configs` in `otel-collector-metrics`.
Unable to Monitor jdbc_connections_active Metrics in SigNoz
Ragulraj is unable to monitor jdbc_connections_active metrics with SigNoz despite modifying configurations and adding dependencies. Srikanth provided troubleshooting steps and info on alternatives, but the issue remains unresolved.
Issues with SigNoz Setup and Data Persistence in AKS
Vaibhavi experienced issues setting up SigNoz in AKS, and faced data persistence issues after installation. Srikanth provided guidance on ClickHouse version compatibility and resource requirements, helping Vaibhavi troubleshoot and resolve the issue.
Configuring Signoz to Consume Metrics From App's Endpoint
Sindhu wanted to configure Signoz to consume metrics from their app's endpoint. Ankit provided guidance on enabling a Prometheus receiver and suggested changing the host path for Docker.

Extracting Custom Fields as Attributes from Log in SigNoz
Harald wants to have custom fields from their body parsed as attributes in the SigNoz logger. They have tried implementing suggestions from nitya-signoz and Prashant, but the issue remains unsolved due to a potential race condition encountered while executing the code. They have provided a full example using Kind for further assistance.


