Last active
April 8, 2025 13:45
-
-
Save MithunArunan/6c697844655d7c82ff1c35d354d9e3ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global: | |
cloud: gcp | |
clusterName: mithun-cluster | |
deploymentEnvironment: mithun-gcp | |
otelAgent: | |
config: | |
receivers: | |
filelog: | |
include: | |
- "/var/log/pods/*/*/*.log" | |
processors: | |
k8sattributes: | |
extract: | |
metadata: | |
- k8s.container.name | |
resource: | |
attributes: | |
- key: service.name | |
from_attribute: k8s.container.name | |
action: insert | |
exporters: | |
otlp: # TODO: Configure with TLS certificate | |
endpoint: "ingest.eu.signoz.cloud:443" | |
headers: | |
"signoz-ingestion-key": "<redacted>" | |
otlphttp: | |
endpoint: "https://ingest.eu.signoz.cloud:443" | |
headers: | |
"signoz-ingestion-key": "<redacted>" | |
service: | |
pipelines: | |
logs: | |
receivers: [filelog] | |
processors: [k8sattributes, resource] | |
exporters: [otlphttp] | |
otelDeployment: | |
enabled: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment