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

Ramkumar Vaidyanathan

06/03/2023, 12:19 AM
hi there, i am trying to see how I can point my existing k8s based app to signoz, we use micrometer, prometheus and k8s.
s

Srikanth Chekuri

06/03/2023, 3:29 AM
See this part of docs https://signoz.io/docs/userguide/send-metrics/#enable-a-prometheus-receiver. You can run collector to scrape the metrics and send them to SigNoz.
r

Ramkumar Vaidyanathan

06/03/2023, 5:09 AM
@Srikanth Chekuri that document is not giving instructions on how to override helm charts to enable this. Can you point me to that?
s

Srikanth Chekuri

06/03/2023, 5:14 AM
Create an override-value.yaml and make changes to the default config to suit your needs. That should do it.
r

Ramkumar Vaidyanathan

06/03/2023, 5:25 AM
Copy code
global:
  storageClass: gp2
  cloud: aws

clickhouse:
  installCustomStorageClass: true

otelCollectorMetrics:
  config:
    scrape_configs:
        - job_name: "otel-collector"
          scrape_interval: 30s
          static_configs:
            - targets: ["otel-collector:8889"]
like that?
when i do a dry-run don't see the values
s

Srikanth Chekuri

06/03/2023, 5:25 AM
Just the
otelCollectorMetrics
is enough
2 Views