Hi everyone, I use Signoz to collect logs of my se...
# general
đ
Hi everyone, I use Signoz to collect logs of my service on the EKS cluster. But I have other tools like external-dns, external-secret, etc., so the k8s-infra also collects logs from it. Can I only collect log from a specific deployment name or pattern? Example,
my-service-*
? Has anyone helped me? Thanks!
a
you can declare this in your overide yaml file
Copy code
k8s-infra:
  presets:
    logsCollection:
      enabled: true
      blacklist:
        enabled: true
        signozLogs: false
        namespaces:
          - kube-systems
        pods:
          - hotrod
          - locust
        containers: []
        additionalExclude: []