https://signoz.io logo
#support
Title
# support
r

Ragul

06/05/2023, 5:31 PM
Hi team , I've just installed signoz in k8s cluster using helm. i need to monitor metrics for my spring boot microservice ,and I can see my microservice name in services section for that i was trying to monitor metrics listed in link https://signoz.io/docs/tutorial/jvm-metrics/#available-metrics-that-you-can-monitor . in this i am getting values for only few metrics for other i am not getting data i have added screenshot of metric which i am not getting data , should i add additional config for this metrics . please suggest some solution for getting this metrics value
s

Srikanth Chekuri

06/06/2023, 12:47 AM
What does your scrape config look like? There is probably some n/w issue while scraping.
r

Ragul

06/06/2023, 4:14 AM
scrape config is default one from helm values.yaml . i have not did any changes
s

Srikanth Chekuri

06/06/2023, 7:47 AM
The default one from values.yaml doesn’t scrape the metrics exposed by general applications. You need to configure it with the endpoints where you applications emit metrics.
r

Ragul

06/06/2023, 10:32 AM
OK
if yes , please help me in overiding the values.yaml
s

Srikanth Chekuri

06/06/2023, 11:24 AM
Yes, you need to add an additional scrape config in values.yaml. It would look like following.
Copy code
otelCollectorMetrics:
  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:
r

Ragul

06/06/2023, 4:59 PM
I added this above config in values.yaml , and upgraded helm using the command -> helm -n platform upgrade my-release signoz/signoz -f values.yaml . but still i am not getting those above mentioned metrics
for cross check in signoz clickhouse i tried with -> SELECT name FROM ( SELECT DISTINCT JSONExtractString(labels, '__name__') AS name FROM signoz_metrics.time_series_v2 ) AS tmp1 WHERE name ILIKE '%jdbc%' with this query
No data where there
s

Srikanth Chekuri

06/06/2023, 6:35 PM
Make sure the
host:port/path
is valid and outputs the metrics.