hi there, i am trying to see how I can point my ex...
# support
r
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
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
@Srikanth Chekuri that document is not giving instructions on how to override helm charts to enable this. Can you point me to that?
s
Create an override-value.yaml and make changes to the default config to suit your needs. That should do it.
r
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
Just the
otelCollectorMetrics
is enough