Fix some issues
This commit is contained in:
53
infrastructure/monitoring/signoz/k8s-infra-values-dev.yaml
Normal file
53
infrastructure/monitoring/signoz/k8s-infra-values-dev.yaml
Normal file
@@ -0,0 +1,53 @@
|
||||
# SigNoz k8s-infra Helm Chart Values - Development Environment
|
||||
# Collects Kubernetes infrastructure metrics and sends to SigNoz
|
||||
#
|
||||
# Official Chart: https://github.com/SigNoz/charts/tree/main/charts/k8s-infra
|
||||
# Install Command: helm upgrade --install k8s-infra signoz/k8s-infra -n bakery-ia -f k8s-infra-values-dev.yaml
|
||||
|
||||
# ============================================================================
|
||||
# OTEL COLLECTOR ENDPOINT
|
||||
# ============================================================================
|
||||
otelCollectorEndpoint: "signoz-otel-collector.bakery-ia.svc.cluster.local:4317"
|
||||
otelInsecure: true
|
||||
clusterName: "bakery-ia-dev"
|
||||
|
||||
# ============================================================================
|
||||
# PRESETS - Minimal configuration for development
|
||||
# ============================================================================
|
||||
presets:
|
||||
hostMetrics:
|
||||
enabled: true
|
||||
collectionInterval: 60s # Less frequent in dev
|
||||
|
||||
kubeletMetrics:
|
||||
enabled: true
|
||||
collectionInterval: 60s
|
||||
|
||||
kubernetesAttributes:
|
||||
enabled: true
|
||||
|
||||
kubernetesEvents:
|
||||
enabled: false # Disabled in dev to reduce noise
|
||||
|
||||
logsCollection:
|
||||
enabled: false
|
||||
|
||||
# ============================================================================
|
||||
# OTEL AGENT - Minimal resources for dev
|
||||
# ============================================================================
|
||||
otelAgent:
|
||||
enabled: true
|
||||
resources:
|
||||
requests:
|
||||
memory: "128Mi"
|
||||
cpu: "50m"
|
||||
limits:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
|
||||
otelDeployment:
|
||||
enabled: false
|
||||
|
||||
commonLabels:
|
||||
app.kubernetes.io/part-of: "signoz"
|
||||
environment: "development"
|
||||
Reference in New Issue
Block a user