├── .cursor └── rules │ └── k8s-monitoring-helm-v2-usage.mdc ├── .ecrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── configs │ ├── .gitleaks.toml │ └── cr.yaml ├── renovate.json └── workflows │ ├── integration-test.yml │ ├── lint.yaml │ ├── platform-test.yml │ ├── release-v1.yml │ ├── release.yml │ ├── test-v1.yml │ ├── unit-test.yml │ └── update-test-image.yml ├── .gitignore ├── .markdownlint.yml ├── .shellcheckrc ├── .textlintignore ├── .textlintrc ├── .tflint.hcl ├── .yamllint.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── allowLists ├── cadvisor.yaml ├── kepler.yaml ├── kube-state-metrics.yaml ├── kubelet.yaml ├── kubelet_probes.yaml ├── kubelet_resource.yaml ├── node-exporter-integration.yaml ├── node-exporter.yaml ├── opencost.yaml └── windows-exporter.yaml ├── charts ├── k8s-monitoring-v1 │ ├── .ct.yaml │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ │ ├── alloy-1.4.0.tgz │ │ ├── beyla-1.9.9.tgz │ │ ├── kepler-0.6.1.tgz │ │ ├── kube-state-metrics-6.4.1.tgz │ │ ├── opencost-2.3.2.tgz │ │ ├── prometheus-node-exporter-4.49.1.tgz │ │ ├── prometheus-operator-crds-24.0.2.tgz │ │ └── prometheus-windows-exporter-0.12.2.tgz │ ├── default_allow_lists │ │ ├── README.md │ │ ├── alloy.yaml │ │ ├── alloy_integration.yaml │ │ ├── beyla.yaml │ │ ├── cadvisor.yaml │ │ ├── kepler.yaml │ │ ├── kube-state-metrics.yaml │ │ ├── kubelet.yaml │ │ ├── kubelet_resource.yaml │ │ ├── node-exporter-integration.yaml │ │ ├── node-exporter.yaml │ │ ├── opencost.yaml │ │ └── windows-exporter.yaml │ ├── docs │ │ ├── Customizations.md │ │ ├── HelmTests.md │ │ ├── RBAC.md │ │ ├── ScrapeApplicationMetrics.md │ │ ├── Structure.md │ │ ├── Troubleshooting.md │ │ ├── UsingExtraConfig.md │ │ └── examples │ │ │ ├── README.md │ │ │ ├── alloy-autoscaling-and-storage │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── application-observability │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── azure-aks │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── bearer-token-auth │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── beyla │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── control-plane-metrics │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── custom-config │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── custom-metrics-tuning │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── custom-pricing │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── custom-prometheus-operator-rules │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── default-values │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── eks-fargate │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── environment-variables │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── external-secrets │ │ │ ├── README.md │ │ │ ├── alloy-secret.yaml │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── extra-rules │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── gke-autopilot │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── ibm-cloud │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── logs-journal │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── logs-only │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── metric-module-imports-extra-config │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── metric-module-imports │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── metrics-only │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── openshift-compatible │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── otel-metrics-service │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── pod-labels │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── private-image-registry │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── process.png │ │ │ ├── profiles-enabled │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── proxies │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── scrape-intervals │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── service-integrations │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── mysql-config.yaml │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── sigv4-auth │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── specific-namespace │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ ├── terraform-deployment │ │ │ ├── README.md │ │ │ ├── grafana-k8s-monitoring.tf │ │ │ ├── provider.tf │ │ │ └── vars.tf │ │ │ ├── traces-enabled │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ │ │ └── windows-exporter │ │ │ ├── README.md │ │ │ ├── events.alloy │ │ │ ├── logs.alloy │ │ │ ├── metrics.alloy │ │ │ ├── output.yaml │ │ │ ├── profiles.alloy │ │ │ └── values.yaml │ ├── schema-mods │ │ ├── enums-and-types.json │ │ ├── remove-subchart-fields.jq │ │ └── required-values.json │ ├── scripts │ │ └── set-version.sh │ ├── templates │ │ ├── _config_validations.tpl │ │ ├── _configs.tpl │ │ ├── _deprecations.tpl │ │ ├── _helpers.tpl │ │ ├── alloy-config.yaml │ │ ├── alloy-events-config.yaml │ │ ├── alloy-logs-config.yaml │ │ ├── alloy-profiles-config.yaml │ │ ├── alloy_config │ │ │ ├── _alloy-modules.alloy.txt │ │ │ ├── _alloy.alloy.txt │ │ │ ├── _annotation_autodiscovery.alloy.txt │ │ │ ├── _apiserver.alloy.txt │ │ │ ├── _beyla.txt │ │ │ ├── _cadvisor.alloy.txt │ │ │ ├── _cluster_events.alloy.txt │ │ │ ├── _endpoints.alloy.txt │ │ │ ├── _journal_logs_discovery.alloy.txt │ │ │ ├── _journal_logs_processor.alloy.txt │ │ │ ├── _kepler.txt │ │ │ ├── _kube_controller_manager.alloy.txt │ │ │ ├── _kube_proxy.alloy.txt │ │ │ ├── _kube_scheduler.alloy.txt │ │ │ ├── _kube_state_metrics.alloy.txt │ │ │ ├── _kubelet.alloy.txt │ │ │ ├── _kubelet_resource.alloy.txt │ │ │ ├── _kubernetes_monitoring_telemetry.alloy.txt │ │ │ ├── _live_debugging.alloy.txt │ │ │ ├── _logging.alloy.txt │ │ │ ├── _logs_service.alloy.txt │ │ │ ├── _logs_service_loki.alloy.txt │ │ │ ├── _logs_service_otlp.alloy.txt │ │ │ ├── _metrics_service.alloy.txt │ │ │ ├── _metrics_service_otlp.alloy.txt │ │ │ ├── _metrics_service_remote_write.alloy.txt │ │ │ ├── _node_exporter.alloy.txt │ │ │ ├── _nodes.alloy.txt │ │ │ ├── _opencost.txt │ │ │ ├── _operator_objects.txt │ │ │ ├── _pod_logs_discovery.alloy.txt │ │ │ ├── _pod_logs_processor.alloy.txt │ │ │ ├── _pods.alloy.txt │ │ │ ├── _processors.alloy.txt │ │ │ ├── _profiles_ebpf.alloy.txt │ │ │ ├── _profiles_java.alloy.txt │ │ │ ├── _profiles_pprof.alloy.txt │ │ │ ├── _profiles_service.alloy.txt │ │ │ ├── _receivers_jaeger.alloy.txt │ │ │ ├── _receivers_otlp.alloy.txt │ │ │ ├── _receivers_remote_write.alloy.txt │ │ │ ├── _receivers_zipkin.alloy.txt │ │ │ ├── _services.alloy.txt │ │ │ ├── _traces_service.alloy.txt │ │ │ └── _windows_exporter.alloy.txt │ │ ├── beyla-config.yaml │ │ ├── extra-manifests.yaml │ │ ├── grafana-agent-receiver-service.yaml │ │ ├── hooks │ │ │ ├── _helpers.tpl │ │ │ └── validate-configuration.yaml │ │ ├── log-service-credentials.yaml │ │ ├── metrics-service-credentials.yaml │ │ ├── platform_specific │ │ │ └── openshift │ │ │ │ ├── alloy-scc.yaml │ │ │ │ ├── beyla-scc.yaml │ │ │ │ └── kepler-scc.yaml │ │ ├── profiles-service-credentials.yaml │ │ ├── tests │ │ │ ├── _helpers.tpl │ │ │ └── test.yaml │ │ ├── trace-service-credentials.yaml │ │ └── validations.yaml │ ├── test │ │ ├── .shellspec │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── config-analysis.sh │ │ ├── query-test.sh │ │ ├── spec │ │ │ ├── deprecation-warning_spec.sh │ │ │ ├── fixtures │ │ │ │ ├── deprecated-agent_metrics-values.yaml │ │ │ │ ├── deprecated-allow-list_values.yaml │ │ │ │ ├── deprecated-grafana_agent-values.yaml │ │ │ │ ├── deprecated-logs-component_values.yaml │ │ │ │ ├── deprecated-metrics-component_values.yaml │ │ │ │ ├── deprecated-opencost-secret_values.yaml │ │ │ │ ├── deprecated-trace-receivers_values.yaml │ │ │ │ ├── invalid-logs-config-daemonset-and-api_values.yaml │ │ │ │ ├── invalid-logs-config-multiple-replicas-and-api_values.yaml │ │ │ │ ├── invalid-logs-config-non-daemonset-and-journal-logs_values.yaml │ │ │ │ ├── invalid-logs-config-non-daemonset-and-volumes_values.yaml │ │ │ │ ├── invalid-logs-config-volumes-and-clustering-values.yaml │ │ │ │ ├── invalid-metrics-service-protocol_values.yaml │ │ │ │ ├── missing-alternative-port_values.yaml │ │ │ │ ├── missing-otel-grpc-port_values.yaml │ │ │ │ ├── missing-otel-http-port_values.yaml │ │ │ │ ├── missing-prometheus-port_values.yaml │ │ │ │ └── missing-zipkin-port_values.yaml │ │ │ ├── invalid-logs-configurations_spec.sh │ │ │ ├── invalid-metrics-service-protocol_spec.sh │ │ │ ├── receiver-port-check_spec.sh │ │ │ └── spec_helper.sh │ │ └── test-runner.sh │ ├── tests │ │ └── integration │ │ │ ├── test-1 │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ └── credentials.yaml │ │ │ ├── kind-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ │ ├── test-2 │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── alloy.yaml │ │ │ │ ├── credentials.yaml │ │ │ │ └── loki-otlp.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ │ └── test-integrations │ │ │ ├── .rendered │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ ├── cert-manager.yaml │ │ │ ├── credentials.yaml │ │ │ ├── mysql.yaml │ │ │ └── prometheus-workload.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ ├── values.schema.json │ └── values.yaml └── k8s-monitoring │ ├── .ct.yaml │ ├── .helmignore │ ├── .lintconf.yaml │ ├── CHANGELOG.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ ├── alloy-operator-0.3.14.tgz │ ├── feature-annotation-autodiscovery │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _nodes_common.tpl │ │ │ ├── _notes.tpl │ │ │ ├── _pods.alloy.tpl │ │ │ ├── _services.alloy.tpl │ │ │ ├── _validation.tpl │ │ │ └── configmap.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ ├── namespaced_test.yaml.snap │ │ │ │ ├── pods_only_test.yaml.snap │ │ │ │ ├── prometheus_annotation_test.yaml.snap │ │ │ │ └── selectors_test.yaml.snap │ │ │ ├── default_test.yaml │ │ │ ├── namespaced_test.yaml │ │ │ ├── node_labels_test.yaml │ │ │ ├── pods_only_test.yaml │ │ │ ├── prometheus_annotation_test.yaml │ │ │ └── selectors_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-application-observability │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── schema-mods │ │ │ └── types-and-enums.json │ │ ├── templates │ │ │ ├── _connector_host_info.tpl │ │ │ ├── _connector_span_logs.tpl │ │ │ ├── _connector_span_metrics.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ ├── _pipeline.tpl │ │ │ ├── _processor_batch.tpl │ │ │ ├── _processor_filter.tpl │ │ │ ├── _processor_interval.tpl │ │ │ ├── _processor_k8sattributes.tpl │ │ │ ├── _processor_memory_limiter.tpl │ │ │ ├── _processor_resourcedetection.tpl │ │ │ ├── _processor_transform.tpl │ │ │ ├── _receiver_jaeger.tpl │ │ │ ├── _receiver_otlp.tpl │ │ │ ├── _receiver_zipkin.tpl │ │ │ ├── _validation.tpl │ │ │ └── configmap.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ ├── interval_test.yaml.snap │ │ │ │ ├── jaeger_test.yaml.snap │ │ │ │ ├── k8sattributes_test.yaml.snap │ │ │ │ ├── keepalive-settings_test.yaml.snap │ │ │ │ ├── memorylimiter_test.yaml.snap │ │ │ │ ├── resourcedetection_test.yaml.snap │ │ │ │ ├── spanlogs_test.yaml.snap │ │ │ │ └── spanmetrics_test.yaml.snap │ │ │ ├── default_test.yaml │ │ │ ├── interval_test.yaml │ │ │ ├── jaeger_test.yaml │ │ │ ├── k8sattributes_test.yaml │ │ │ ├── keepalive-settings_test.yaml │ │ │ ├── memorylimiter_test.yaml │ │ │ ├── resourcedetection_test.yaml │ │ │ ├── spanlogs_test.yaml │ │ │ ├── spanmetrics_test.yaml │ │ │ └── validation_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-auto-instrumentation │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── charts │ │ │ └── beyla-1.9.9.tgz │ │ ├── schema-mods │ │ │ ├── remote-beyla-config-data.jq │ │ │ └── types-and-enums.json │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ ├── configmap.yaml │ │ │ └── platform_specific │ │ │ │ └── openshift │ │ │ │ └── beyla-scc.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ └── default_test.yaml.snap │ │ │ └── default_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-cluster-events │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ └── configmap.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ ├── extra_processing_stages_test.yaml.snap │ │ │ │ ├── labels_test.yaml.snap │ │ │ │ ├── levels_test.yaml.snap │ │ │ │ ├── namespace_test.yaml.snap │ │ │ │ ├── reasons_test.yaml.snap │ │ │ │ └── structured_metadata_test.yaml.snap │ │ │ ├── default_test.yaml │ │ │ ├── extra_processing_stages_test.yaml │ │ │ ├── labels_test.yaml │ │ │ ├── levels_test.yaml │ │ │ ├── namespace_test.yaml │ │ │ ├── reasons_test.yaml │ │ │ └── structured_metadata_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-cluster-metrics │ │ ├── .ct.yaml │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── charts │ │ │ ├── kepler-0.6.1.tgz │ │ │ ├── kube-state-metrics-6.4.1.tgz │ │ │ ├── opencost-2.3.2.tgz │ │ │ ├── prometheus-node-exporter-4.49.1.tgz │ │ │ └── prometheus-windows-exporter-0.12.2.tgz │ │ ├── default-allow-lists │ │ │ ├── cadvisor.yaml │ │ │ ├── kepler.yaml │ │ │ ├── kube-state-metrics.yaml │ │ │ ├── kubelet.yaml │ │ │ ├── kubelet_probes.yaml │ │ │ ├── kubelet_resource.yaml │ │ │ ├── node-exporter-integration.yaml │ │ │ ├── node-exporter.yaml │ │ │ ├── opencost.yaml │ │ │ └── windows-exporter.yaml │ │ ├── schema-mods │ │ │ ├── remove-subchart-fields.jq │ │ │ └── types-and-enums.json │ │ ├── templates │ │ │ ├── _api_server.alloy.tpl │ │ │ ├── _cadvisor.alloy.tpl │ │ │ ├── _kepler.alloy.tpl │ │ │ ├── _kube_controller_manager.alloy.tpl │ │ │ ├── _kube_dns.alloy.tpl │ │ │ ├── _kube_proxy.alloy.tpl │ │ │ ├── _kube_scheduler.alloy.tpl │ │ │ ├── _kube_state_metrics.alloy.tpl │ │ │ ├── _kubelet.alloy.tpl │ │ │ ├── _kubelet_probes.alloy.tpl │ │ │ ├── _kubelet_resource.alloy.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _node_exporter.alloy.tpl │ │ │ ├── _nodes_common.tpl │ │ │ ├── _notes.tpl │ │ │ ├── _opencost.alloy.tpl │ │ │ ├── _validation.tpl │ │ │ ├── _windows_exporter.alloy.tpl │ │ │ ├── configmap.yaml │ │ │ └── platform_specific │ │ │ │ └── openshift │ │ │ │ └── kepler-scc.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── alternative-discovery_test.yaml.snap │ │ │ │ ├── control_plane_test.yaml.snap │ │ │ │ ├── custom_rules_test.yaml.snap │ │ │ │ ├── default_test.yaml.snap │ │ │ │ ├── kepler_test.yaml.snap │ │ │ │ ├── kube-state-metrics_test.yaml.snap │ │ │ │ ├── metrics_tuning_test.yaml.snap │ │ │ │ ├── opencost_test.yaml.snap │ │ │ │ └── openshift_test.yaml.snap │ │ │ ├── alternative-discovery_test.yaml │ │ │ ├── control_plane_test.yaml │ │ │ ├── custom_rules_test.yaml │ │ │ ├── default_test.yaml │ │ │ ├── kepler_test.yaml │ │ │ ├── kube-state-metrics_test.yaml │ │ │ ├── metrics_tuning_test.yaml │ │ │ ├── node-labels_test.yaml │ │ │ ├── opencost_test.yaml │ │ │ ├── openshift-kepler-scc_test.yaml │ │ │ ├── openshift_test.yaml │ │ │ └── validation_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-integrations │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── default-allow-lists │ │ │ ├── alloy.yaml │ │ │ ├── loki.yaml │ │ │ ├── mimir.yaml │ │ │ └── tempo.yaml │ │ ├── docs │ │ │ └── integrations │ │ │ │ ├── .doc_templates │ │ │ │ ├── alloy.gotmpl │ │ │ │ ├── grafana.gotmpl │ │ │ │ ├── loki.gotmpl │ │ │ │ ├── mimir.gotmpl │ │ │ │ └── tempo.gotmpl │ │ │ │ ├── alloy.md │ │ │ │ ├── cert-manager.md │ │ │ │ ├── dcgm-exporter.md │ │ │ │ ├── etcd.md │ │ │ │ ├── grafana.md │ │ │ │ ├── loki.md │ │ │ │ ├── mimir.md │ │ │ │ ├── mysql.md │ │ │ │ └── tempo.md │ │ ├── integrations │ │ │ ├── alloy-values.yaml │ │ │ ├── cert-manager-values.yaml │ │ │ ├── dcgm-exporter-values.yaml │ │ │ ├── etcd-values.yaml │ │ │ ├── grafana-values.yaml │ │ │ ├── loki-values.yaml │ │ │ ├── mimir-values.yaml │ │ │ ├── mysql-values.yaml │ │ │ └── tempo-values.yaml │ │ ├── schema-mods │ │ │ ├── definitions │ │ │ │ ├── alloy-integration.schema.json │ │ │ │ ├── cert-manager-integration.schema.json │ │ │ │ ├── dcgm-exporter-integration.schema.json │ │ │ │ ├── etcd-integration.schema.json │ │ │ │ ├── grafana-integration.schema.json │ │ │ │ ├── loki-integration.schema.json │ │ │ │ ├── mimir-integration.schema.json │ │ │ │ ├── mysql-integration.schema.json │ │ │ │ └── tempo-integration.schema.json │ │ │ ├── integration-list.json │ │ │ └── label-selectors.json │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── _integration_alloy.tpl │ │ │ ├── _integration_cert-manager.tpl │ │ │ ├── _integration_dcgm-exporter.tpl │ │ │ ├── _integration_etcd.tpl │ │ │ ├── _integration_grafana.tpl │ │ │ ├── _integration_grafana_logs.tpl │ │ │ ├── _integration_grafana_metrics.tpl │ │ │ ├── _integration_helpers.tpl │ │ │ ├── _integration_loki.tpl │ │ │ ├── _integration_loki_logs.tpl │ │ │ ├── _integration_loki_metrics.tpl │ │ │ ├── _integration_mimir.tpl │ │ │ ├── _integration_mimir_logs.tpl │ │ │ ├── _integration_mimir_metrics.tpl │ │ │ ├── _integration_mysql.tpl │ │ │ ├── _integration_mysql_logs.tpl │ │ │ ├── _integration_mysql_metrics.tpl │ │ │ ├── _integration_tempo.tpl │ │ │ ├── _integration_tempo_logs.tpl │ │ │ ├── _integration_tempo_metrics.tpl │ │ │ ├── _integration_types.tpl │ │ │ ├── _nodes_common.tpl │ │ │ ├── _notes.tpl │ │ │ ├── _validation.tpl │ │ │ ├── configmap.yaml │ │ │ ├── mysql-secret.yaml │ │ │ └── secrets │ │ │ │ ├── _helpers.tpl │ │ │ │ └── _secret.alloy.tpl │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── alloy_test.yaml.snap │ │ │ │ ├── cert-manager_test.yaml.snap │ │ │ │ ├── dcgm-exporter_test.yaml.snap │ │ │ │ ├── etcd_test.yaml.snap │ │ │ │ ├── grafana_logs_test.yaml.snap │ │ │ │ ├── grafana_metrics_test.yaml.snap │ │ │ │ ├── loki_logs_test.yaml.snap │ │ │ │ ├── loki_metrics_test.yaml.snap │ │ │ │ ├── mimir_logs_test.yaml.snap │ │ │ │ ├── mimir_metrics_test.yaml.snap │ │ │ │ ├── mysql_db_o11y_metrics_test.yaml.snap │ │ │ │ ├── mysql_metrics_test.yaml.snap │ │ │ │ ├── tempo_logs_test.yaml.snap │ │ │ │ └── tempo_metrics_test.yaml.snap │ │ │ ├── alloy_test.yaml │ │ │ ├── cert-manager_test.yaml │ │ │ ├── dcgm-exporter_test.yaml │ │ │ ├── etcd_test.yaml │ │ │ ├── grafana_logs_test.yaml │ │ │ ├── grafana_metrics_test.yaml │ │ │ ├── loki_logs_test.yaml │ │ │ ├── loki_metrics_test.yaml │ │ │ ├── mimir_logs_test.yaml │ │ │ ├── mimir_metrics_test.yaml │ │ │ ├── mysql_db_o11y_metrics_test.yaml │ │ │ ├── mysql_logs_test.yaml │ │ │ ├── mysql_metrics_test.yaml │ │ │ ├── tempo_logs_test.yaml │ │ │ └── tempo_metrics_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-node-logs │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── _collector_validation.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ ├── configmap.yaml │ │ │ └── test │ │ │ │ └── collector.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ ├── filter_units_test.yaml.snap │ │ │ │ ├── labels_test.yaml.snap │ │ │ │ └── structured_metadata_test.yaml.snap │ │ │ ├── collector_validation_test.yaml │ │ │ ├── default_test.yaml │ │ │ ├── filter_units_test.yaml │ │ │ ├── labels_test.yaml │ │ │ └── structured_metadata_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-pod-logs-via-kubernetes-api │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── schema-mods │ │ │ └── types-and-enums.json │ │ ├── templates │ │ │ ├── _collector_validation.tpl │ │ │ ├── _common_log_processing.alloy.tpl │ │ │ ├── _common_pod_discovery.alloy.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _nodes_common.tpl │ │ │ ├── _notes.tpl │ │ │ ├── configmap.yaml │ │ │ └── test │ │ │ │ └── collector.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ └── node_labels_test.yaml.snap │ │ │ ├── collector_validation_test.yaml │ │ │ ├── default_test.yaml │ │ │ └── node_labels_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-pod-logs │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── schema-mods │ │ │ └── types-and-enums.json │ │ ├── templates │ │ │ ├── _api.alloy.tpl │ │ │ ├── _collector_validation.tpl │ │ │ ├── _common_log_processing.alloy.tpl │ │ │ ├── _common_pod_discovery.alloy.tpl │ │ │ ├── _filelog.alloy.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _log_receiver.alloy.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _nodes_common.tpl │ │ │ ├── _notes.tpl │ │ │ ├── _volumes.alloy.tpl │ │ │ ├── configmap.yaml │ │ │ ├── openshift-cluster-log-forwarder.yaml │ │ │ └── test │ │ │ │ └── collector.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ ├── filelog_test.yaml.snap │ │ │ │ ├── kubernetesApi_test.yaml.snap │ │ │ │ └── node_labels_test.yaml.snap │ │ │ ├── collector_validation_test.yaml │ │ │ ├── default_test.yaml │ │ │ ├── filelog_test.yaml │ │ │ ├── kubernetesApi_test.yaml │ │ │ └── node_labels_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-profiles-receiver │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── _collector_validation.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ └── configmap.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── default_test.yaml.snap │ │ │ │ └── rules_test.yaml.snap │ │ │ ├── default_test.yaml │ │ │ └── rules_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── feature-profiling │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── schema-mods │ │ │ └── types-and-enums.json │ │ ├── templates │ │ │ ├── _ebpf.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _java.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ ├── _pprof.tpl │ │ │ └── configmap.yaml │ │ ├── tests │ │ │ ├── __snapshot__ │ │ │ │ ├── ebpf_test.yaml.snap │ │ │ │ ├── java_test.yaml.snap │ │ │ │ └── pprof_test.yaml.snap │ │ │ ├── ebpf_test.yaml │ │ │ ├── java_test.yaml │ │ │ └── pprof_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ └── feature-prometheus-operator-objects │ │ ├── .ct.yaml │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── Makefile │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── charts │ │ └── prometheus-operator-crds-24.0.2.tgz │ │ ├── templates │ │ ├── _collector_validation.tpl │ │ ├── _helpers.tpl │ │ ├── _module.alloy.tpl │ │ ├── _notes.tpl │ │ ├── _pod_monitors.alloy.tpl │ │ ├── _probes.alloy.tpl │ │ ├── _scrape_configs.alloy.tpl │ │ ├── _service_monitors.alloy.tpl │ │ ├── _validations.tpl │ │ ├── configmap.yaml │ │ └── test │ │ │ └── collector.yaml │ │ ├── tests │ │ ├── __snapshot__ │ │ │ ├── default_test.yaml.snap │ │ │ ├── labels-and-expressions_test.yaml.snap │ │ │ └── scrape-intervals-and-timeouts_test.yaml.snap │ │ ├── collector_validation_test.yaml │ │ ├── default_test.yaml │ │ ├── labels-and-expressions_test.yaml │ │ └── scrape-intervals-and-timeouts_test.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── collectors │ ├── alloy-values.yaml │ ├── named-defaults │ │ ├── alloy-logs.yaml │ │ ├── alloy-metrics.yaml │ │ ├── alloy-profiles.yaml │ │ ├── alloy-receiver.yaml │ │ └── alloy-singleton.yaml │ └── upstream │ │ └── alloy-values.yaml │ ├── default-remove-lists │ └── resource-attributes.yaml │ ├── destinations │ ├── custom-values.yaml │ ├── loki-stdout-values.yaml │ ├── loki-values.yaml │ ├── otlp-values.yaml │ ├── prometheus-values.yaml │ └── pyroscope-values.yaml │ ├── docs │ ├── Collectors.md │ ├── Features.md │ ├── Images.md │ ├── Migration.md │ ├── ScrapeApplicationMetrics.md │ ├── Structure.md │ ├── TargetingDataCollection.md │ ├── Troubleshooting.md │ ├── UsingExtraConfig.md │ ├── collectors │ │ ├── .doc_templates │ │ │ └── alloy.gotmpl │ │ └── alloy.md │ ├── create-a-new-feature │ │ ├── README.md │ │ └── new-feature-templates │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md.gotmpl │ │ │ ├── templates │ │ │ ├── _collector_validation.tpl │ │ │ ├── _module.alloy.tpl │ │ │ ├── _notes.tpl │ │ │ └── configmap.yaml │ │ │ ├── tests │ │ │ └── default_test.yaml │ │ │ └── values.yaml │ ├── destinations │ │ ├── .doc_templates │ │ │ ├── custom.gotmpl │ │ │ ├── loki.gotmpl │ │ │ ├── otlp.gotmpl │ │ │ ├── prometheus.gotmpl │ │ │ └── pyroscope.gotmpl │ │ ├── .images │ │ │ ├── example1.png │ │ │ ├── example2.png │ │ │ └── example3.png │ │ ├── README.md │ │ ├── custom.md │ │ ├── loki-stdout.md │ │ ├── loki.md │ │ ├── otlp.md │ │ ├── prometheus.md │ │ └── pyroscope.md │ └── examples │ │ ├── auth │ │ ├── bearer-token │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── embedded-secrets │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── external-secrets │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── oauth2 │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-singleton.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ └── sigv4 │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── collector-storage │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── custom-destinations │ │ └── debug │ │ │ └── output.yaml │ │ ├── deployment-alternatives │ │ ├── argocd │ │ │ ├── .no-render │ │ │ ├── README.md │ │ │ ├── k8s-monitoring-application.yaml │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── dependencies │ │ │ │ └── argocd.yaml │ │ │ │ └── test-plan.yaml │ │ └── terraform │ │ │ ├── README.md │ │ │ ├── grafana-k8s-monitoring.tf │ │ │ ├── provider.tf │ │ │ └── vars.tf │ │ ├── destinations │ │ ├── custom │ │ │ ├── debug │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ ├── test │ │ │ │ │ └── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ └── kafka │ │ │ │ ├── README.md │ │ │ │ ├── alloy-singleton.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ ├── test │ │ │ │ └── test-plan.yaml │ │ │ │ └── values.yaml │ │ ├── loki-stdout │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ ├── test │ │ │ │ ├── test-plan.yaml │ │ │ │ └── workload.yaml │ │ │ └── values.yaml │ │ └── otlp-endpoint │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── exclude-by-namespace │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-profiles.alloy │ │ ├── alloy-receiver.alloy │ │ ├── alloy-singleton.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── extra-configuration │ │ ├── README.md │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── extra-rules │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-singleton.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── features │ │ ├── annotation-autodiscovery │ │ │ ├── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ └── prom-annotations │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── application-observability │ │ │ ├── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-receiver.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ └── tail-sampling │ │ │ │ ├── README.md │ │ │ │ ├── alloy-receiver.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── auto-instrumentation │ │ │ ├── beyla-metrics-and-traces │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── alloy-receiver.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── beyla-metrics │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── discovery-rules │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ └── span-metrics-only │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── alloy-receiver.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── cluster-events │ │ │ └── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-singleton.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── cluster-metrics │ │ │ ├── control-plane-monitoring │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── alloy-singleton.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ └── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── database-observability │ │ │ └── mysql │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-singleton.alloy │ │ │ │ ├── output.yaml │ │ │ │ ├── test │ │ │ │ ├── mysql.yaml │ │ │ │ └── test-plan.yaml │ │ │ │ └── values.yaml │ │ ├── integrations │ │ │ ├── alloy │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── cert-manager │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── dcgm-exporter │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── etcd │ │ │ │ ├── README.md │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── grafana │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── loki │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── mimir │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ ├── multiple │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ └── mysql │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── alloy-metrics.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── node-logs │ │ │ └── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ ├── pod-logs-via-kubernetes-api │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ ├── test │ │ │ │ ├── dependencies │ │ │ │ │ ├── development-workload.yaml │ │ │ │ │ └── production-workload.yaml │ │ │ │ └── test-plan.yaml │ │ │ └── values.yaml │ │ ├── pod-logs │ │ │ ├── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ │ └── multiline │ │ │ │ ├── README.md │ │ │ │ ├── alloy-logs.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ ├── test │ │ │ │ ├── test-plan.yaml │ │ │ │ └── workload.yaml │ │ │ │ └── values.yaml │ │ ├── profiles-receiver │ │ │ ├── README.md │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── profiling │ │ │ └── default │ │ │ │ ├── README.md │ │ │ │ ├── alloy-profiles.alloy │ │ │ │ ├── alloy-receiver.alloy │ │ │ │ ├── description.txt │ │ │ │ ├── output.yaml │ │ │ │ └── values.yaml │ │ └── prometheus-operator-objects │ │ │ └── default │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── images │ │ └── images-by-digest │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── include-by-namespace │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-profiles.alloy │ │ ├── alloy-receiver.alloy │ │ ├── alloy-singleton.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── istio-service-mesh │ │ ├── README.md │ │ ├── alloy-metrics.alloy │ │ ├── alloy-receiver.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── log-metrics │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── meta-monitoring │ │ ├── README.md │ │ ├── alloy-receiver.alloy │ │ ├── alloy-singleton.alloy │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── metrics-tuning │ │ ├── README.md │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── name-overrides │ │ ├── fullname-overrides │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ └── name-overrides │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── namespace-labels-and-annotations │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-receiver.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── node-labels │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── platforms │ │ ├── azure-aks │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-singleton.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── eks-fargate │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-singleton.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── gke-autopilot │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-singleton.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ └── openshift │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-singleton.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── pod-labels-and-annotations │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-receiver.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── private-image-registries │ │ ├── README.md │ │ ├── globally │ │ │ ├── README.md │ │ │ ├── alloy-logs.alloy │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ └── individual │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── alloy-receiver.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── proxies │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-profiles.alloy │ │ ├── alloy-receiver.alloy │ │ ├── alloy-singleton.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── remote-config │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── resource-requests-and-limits │ │ ├── README.md │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ ├── scalability │ │ ├── autoscaling │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── high-availability-kube-state-metrics │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ └── sharded-kube-state-metrics │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── service-integrations │ │ ├── mongodb-atlas │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ └── timescaledb │ │ │ ├── README.md │ │ │ ├── alloy-metrics.alloy │ │ │ ├── description.txt │ │ │ ├── output.yaml │ │ │ └── values.yaml │ │ ├── tail-sampling │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── alloy-receiver.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ │ └── tolerations │ │ ├── README.md │ │ ├── alloy-logs.alloy │ │ ├── alloy-metrics.alloy │ │ ├── description.txt │ │ ├── output.yaml │ │ └── values.yaml │ ├── schema-mods │ ├── definitions │ │ ├── alloy-collector.schema.json │ │ ├── custom-destination.schema.json │ │ ├── invalid-destination.schema.json │ │ ├── loki-destination.schema.json │ │ ├── loki-stdout-destination.schema.json │ │ ├── otlp-destination.schema.json │ │ ├── prometheus-destination.schema.json │ │ └── pyroscope-destination.schema.json │ ├── destination-otlp-types-and-enums.json │ ├── destination.json │ ├── types-and-enums.json │ ├── unset-defined-types.jq │ └── unset-generic-object.jq │ ├── scripts │ ├── generate-profiles.sh │ ├── images-doc.sh │ └── set-version.sh │ ├── templates │ ├── NOTES.txt │ ├── _crd-validation.tpl │ ├── _helpers.tpl │ ├── _platform_validations.tpl │ ├── _validations.tpl │ ├── alloy-config.yaml │ ├── alloy-sampler.yaml │ ├── alloy-servicegraph.yaml │ ├── alloy.yaml │ ├── beyla-config.yaml │ ├── collectors │ │ ├── _collector_common.tpl │ │ ├── _collector_extraConfig.tpl │ │ ├── _collector_helpers.tpl │ │ ├── _collector_notes.tpl │ │ ├── _collector_remoteConfig.tpl │ │ └── _collector_validations.tpl │ ├── destination_secret.yaml │ ├── destinations │ │ ├── _config.alloy.tpl │ │ ├── _destination_custom.tpl │ │ ├── _destination_helpers.tpl │ │ ├── _destination_loki-stdout.tpl │ │ ├── _destination_loki.tpl │ │ ├── _destination_otlp.tpl │ │ ├── _destination_otlp_validations.tpl │ │ ├── _destination_prometheus.tpl │ │ ├── _destination_pyroscope.tpl │ │ ├── _destination_types.tpl │ │ └── _destination_validations.tpl │ ├── extra-objects.yaml │ ├── features │ │ ├── _feature_annotation_autodiscovery.tpl │ │ ├── _feature_application_observability.tpl │ │ ├── _feature_auto_instrumentation.tpl │ │ ├── _feature_cluster_events.tpl │ │ ├── _feature_cluster_metrics.tpl │ │ ├── _feature_helpers.tpl │ │ ├── _feature_integrations.tpl │ │ ├── _feature_node_logs.tpl │ │ ├── _feature_pod_logs.tpl │ │ ├── _feature_pod_logs_via_kubernetes_api.tpl │ │ ├── _feature_profiles_receiver.tpl │ │ ├── _feature_profiling.tpl │ │ ├── _feature_prometheus_operator_obejcts.tpl │ │ ├── _feature_self_reporting.tpl │ │ └── test │ │ │ └── feature_application_observability.yaml │ ├── hooks │ │ ├── README.md │ │ ├── post-install_add-finalizer.yaml │ │ └── pre-delete_remove-alloy-and-finalizer.yaml │ ├── otlp │ │ ├── _receiver_otlp.tpl │ │ ├── sampler │ │ │ ├── _processor_tail_sampling.tpl │ │ │ └── policies │ │ │ │ ├── _helpers.tpl │ │ │ │ └── _policy.tpl │ │ └── servicegraph │ │ │ └── _connector_service_graph.tpl │ ├── platform_specific │ │ └── openshift │ │ │ ├── alloy-sampler-scc.yaml │ │ │ └── alloy-scc.yaml │ ├── receiver-service.yaml │ ├── remote_config_secret.yaml │ ├── secrets │ │ ├── _helpers.tpl │ │ ├── _secret.alloy.tpl │ │ └── test │ │ │ └── secrets.yaml │ ├── test │ │ └── helpers.yaml │ ├── validations.yaml │ └── zzz-destinations.yaml │ ├── tests │ ├── README.md │ ├── __snapshot__ │ │ ├── destination_otlp_test.yaml.snap │ │ ├── destination_prometheus_test.yaml.snap │ │ ├── feature_cluster_events_test.yaml.snap │ │ ├── feature_integrations_test.yaml.snap │ │ ├── feature_notes_test.yaml.snap │ │ ├── feature_pod_logs_test.yaml.snap │ │ ├── feature_remoteConfig_test.yaml.snap │ │ ├── feature_servicegraph_test.yaml.snap │ │ ├── feature_tail_sampling_test.yaml.snap │ │ ├── hook_post-install_add-finalizer_test.yaml.snap │ │ └── hook_pre-delete_remove-alloy-and-finalizer_test.yaml.snap │ ├── crd_upgrade_no_validation_test.yaml │ ├── crd_upgrade_yes_validation_test.yaml │ ├── destination_otlp_test.yaml │ ├── destination_prometheus_test.yaml │ ├── destination_validations_test.yaml │ ├── example-checks │ │ ├── .shellspec │ │ └── spec │ │ │ ├── embedded-secret_spec.sh │ │ │ ├── private_registry_spec.sh │ │ │ └── spec_helper.sh │ ├── extra_objects_test.yaml │ ├── feature_annotation_autodiscovery_test.yaml │ ├── feature_application_observability_test.yaml │ ├── feature_application_observability_unit_test.yaml │ ├── feature_beyla_config_test.yaml │ ├── feature_cluster_events_test.yaml │ ├── feature_integrations_test.yaml │ ├── feature_notes_test.yaml │ ├── feature_pod_logs_test.yaml │ ├── feature_receiver-service_test.yaml │ ├── feature_remoteConfig_test.yaml │ ├── feature_servicegraph_test.yaml │ ├── feature_tail_sampling_test.yaml │ ├── hook_post-install_add-finalizer_test.yaml │ ├── hook_pre-delete_remove-alloy-and-finalizer_test.yaml │ ├── integration │ │ ├── alternative-deployments │ │ │ ├── helmfile │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .no-render │ │ │ │ ├── helmfile.yaml │ │ │ │ └── test-plan.yaml │ │ │ └── terraform │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .no-render │ │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ │ ├── README.md │ │ │ │ ├── grafana-k8s-monitoring.tf │ │ │ │ ├── provider.tf │ │ │ │ ├── test-plan.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── vars.tf │ │ ├── annotation-autodiscovery │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── cert-manager.yaml │ │ │ │ └── nginx-static-metrics.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── application-observability │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── alloy-instrumented.yaml │ │ │ │ └── alloy-via-extra-service.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── auth │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── dependencies │ │ │ │ ├── credentials.yaml │ │ │ │ ├── nginx-auth-gateway.yaml │ │ │ │ └── passwords.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── auto-instrumentation │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── README.md │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── cluster-monitoring │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── control-plane-monitoring │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── kind-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── istio-service-mesh │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── alloy-instrumented.yaml │ │ │ │ ├── default-namespace-label.yaml │ │ │ │ └── istio.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── pod-logs │ │ │ ├── default │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── dependencies │ │ │ │ │ ├── development-workload.yaml │ │ │ │ │ └── production-workload.yaml │ │ │ │ ├── kind-cluster-config.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── filelog │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── dependencies │ │ │ │ │ └── workloads.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── log-metrics │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── kind-cluster-config.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ └── secret-filter │ │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ │ ├── dependencies │ │ │ │ └── workloads.yaml │ │ │ │ ├── kind-cluster-config.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ ├── profiles-receiver │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── profiling │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── prom-and-loki-to-otlp │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── prometheus-io-annotations │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── cert-manager.yaml │ │ │ │ └── nginx-static-metrics.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── prometheus-operator-objects │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── dependencies │ │ │ │ ├── bad-grafana-servicemonitor.yaml │ │ │ │ ├── black-box-exporter.yaml │ │ │ │ ├── cert-manager.yaml │ │ │ │ ├── nginx-static-metrics.yaml │ │ │ │ ├── probe.yaml │ │ │ │ ├── prometheus-operator-crds-values.yaml │ │ │ │ ├── prometheus-operator-crds.yaml │ │ │ │ └── scrapeconfig.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── proxies │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── alloy-instrumented.yaml │ │ │ │ └── proxy.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── service-graph-metrics │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ └── otel-demo-manifest.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── service-integrations │ │ │ ├── alloy │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── cert-manager │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── cert-manager.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── coredns │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── etcd │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── kind-cluster-config.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── grafana │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── loki │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── mysql │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── mysql.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── workload.yaml │ │ │ └── tempo │ │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ ├── sharded-kube-state-metrics │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── kind-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── split-destinations │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ ├── dbs.yaml │ │ │ │ ├── loki.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── tempo.yaml │ │ │ │ └── workloads.yaml │ │ │ ├── kind-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── statsd │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ └── statsd-example.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── tail-sampling │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── dependencies │ │ │ │ └── alloy-instrumented.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── uninstall │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ └── upgrade │ │ │ ├── major │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ │ ├── minor │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ │ └── patch │ │ │ ├── .rendered │ │ │ └── output.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ ├── misc-checks │ │ ├── .shellspec │ │ └── spec │ │ │ ├── crd-link_spec.sh │ │ │ └── spec_helper.sh │ ├── platform │ │ ├── aks │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .manual-only │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── eks-addon-with-terraform │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .manual-only │ │ │ ├── .no-render │ │ │ ├── Makefile │ │ │ ├── addon.tf │ │ │ ├── deploy.sh │ │ │ ├── deployments │ │ │ │ └── query-test.yaml │ │ │ ├── eks-cluster-config.yaml │ │ │ ├── provider.tf │ │ │ └── values.yaml │ │ ├── eks-addon │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .manual-only │ │ │ ├── .no-render │ │ │ ├── Makefile │ │ │ ├── deploy.sh │ │ │ ├── deployments │ │ │ │ └── query-test.yaml │ │ │ ├── eks-cluster-config.yaml │ │ │ ├── values.json │ │ │ └── values.yaml │ │ ├── eks-fargate │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── dependencies │ │ │ │ └── fargate-workload.yaml │ │ │ ├── eks-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── eks-with-windows │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── eks-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── gke-autopilot │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── gke │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── gpu │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── eks-cluster-config.yaml │ │ │ ├── gpu-stress.yaml │ │ │ ├── nvidia-gpu-operator.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── grafana-cloud │ │ │ ├── app-observability │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── dependencies │ │ │ │ │ ├── otel-demo-manifest.yaml │ │ │ │ │ └── otel-demo-namespace.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ ├── database-observability │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .random │ │ │ │ ├── .rendered │ │ │ │ │ └── output.yaml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── dependencies │ │ │ │ │ ├── mysql.yaml │ │ │ │ │ └── workload.yaml │ │ │ │ ├── grafana-cloud-credentials.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ │ └── k8s-monitoring │ │ │ │ ├── .envrc │ │ │ │ ├── .gitignore │ │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ │ ├── Makefile │ │ │ │ ├── dependencies │ │ │ │ ├── hello-kubernetes-test-0.yaml │ │ │ │ └── hello-kubernetes-test-1.yaml │ │ │ │ ├── test-plan.yaml │ │ │ │ └── values.yaml │ │ ├── openshift │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── openshift-cluster-config.yaml │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ ├── otlp-gateway │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ │ └── remote-config │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── .rendered │ │ │ └── output.yaml │ │ │ ├── Makefile │ │ │ ├── test-plan.yaml │ │ │ └── values.yaml │ ├── platform_validations_aks_test.yaml │ ├── platform_validations_openshift_test.yaml │ ├── unittest_helpers_test.yaml │ ├── unittest_secrets_test.yaml │ ├── validations_collectors_test.yaml │ └── validations_test.yaml │ ├── values.schema.json │ └── values.yaml ├── examples └── README.md ├── package.json ├── scripts ├── helm-with-version └── lint-alloy.sh └── yarn.lock /.cursor/rules/k8s-monitoring-helm-v2-usage.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.cursor/rules/k8s-monitoring-helm-v2-usage.mdc -------------------------------------------------------------------------------- /.ecrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.ecrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/configs/.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/configs/.gitleaks.toml -------------------------------------------------------------------------------- /.github/configs/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/configs/cr.yaml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/platform-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/platform-test.yml -------------------------------------------------------------------------------- /.github/workflows/release-v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/release-v1.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/test-v1.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.github/workflows/update-test-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.github/workflows/update-test-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.textlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.textlintignore -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.textlintrc -------------------------------------------------------------------------------- /.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.tflint.hcl -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/README.md -------------------------------------------------------------------------------- /allowLists/cadvisor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/cadvisor.yaml -------------------------------------------------------------------------------- /allowLists/kepler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/kepler.yaml -------------------------------------------------------------------------------- /allowLists/kube-state-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/kube-state-metrics.yaml -------------------------------------------------------------------------------- /allowLists/kubelet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/kubelet.yaml -------------------------------------------------------------------------------- /allowLists/kubelet_probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/kubelet_probes.yaml -------------------------------------------------------------------------------- /allowLists/kubelet_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/kubelet_resource.yaml -------------------------------------------------------------------------------- /allowLists/node-exporter-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/node-exporter-integration.yaml -------------------------------------------------------------------------------- /allowLists/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/node-exporter.yaml -------------------------------------------------------------------------------- /allowLists/opencost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/opencost.yaml -------------------------------------------------------------------------------- /allowLists/windows-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/allowLists/windows-exporter.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/.ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/.ct.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/alloy-1.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/alloy-1.4.0.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/beyla-1.9.9.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/beyla-1.9.9.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/kepler-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/kepler-0.6.1.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/kube-state-metrics-6.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/kube-state-metrics-6.4.1.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/opencost-2.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/opencost-2.3.2.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/prometheus-node-exporter-4.49.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/prometheus-node-exporter-4.49.1.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/prometheus-operator-crds-24.0.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/prometheus-operator-crds-24.0.2.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/charts/prometheus-windows-exporter-0.12.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/charts/prometheus-windows-exporter-0.12.2.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/alloy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/alloy.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/alloy_integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/alloy_integration.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/beyla.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - .* 3 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/cadvisor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/cadvisor.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/kepler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/kepler.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/kube-state-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/kube-state-metrics.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/kubelet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/kubelet.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/kubelet_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/kubelet_resource.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/node-exporter.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/opencost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/opencost.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/default_allow_lists/windows-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/default_allow_lists/windows-exporter.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/Customizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/Customizations.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/HelmTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/HelmTests.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/RBAC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/RBAC.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/ScrapeApplicationMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/ScrapeApplicationMetrics.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/Structure.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/Troubleshooting.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/UsingExtraConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/UsingExtraConfig.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/alloy-autoscaling-and-storage/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/azure-aks/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/azure-aks/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/azure-aks/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/azure-aks/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/azure-aks/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/azure-aks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/azure-aks/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/bearer-token-auth/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/beyla/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/beyla/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/beyla/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/beyla/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/beyla/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/beyla/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/beyla/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/control-plane-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/control-plane-metrics/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/control-plane-metrics/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/profiles.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/profiles.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-config/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-metrics-tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-metrics-tuning/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-metrics-tuning/events.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-metrics-tuning/logs.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-metrics-tuning/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-pricing/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-pricing/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-pricing/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-pricing/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-pricing/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-pricing/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/custom-pricing/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-prometheus-operator-rules/events.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-prometheus-operator-rules/logs.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/custom-prometheus-operator-rules/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/default-values/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/default-values/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/default-values/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/default-values/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/default-values/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/default-values/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/default-values/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/eks-fargate/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/eks-fargate/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/eks-fargate/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/eks-fargate/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/eks-fargate/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/eks-fargate/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/eks-fargate/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/environment-variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/environment-variables/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/environment-variables/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/external-secrets/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/external-secrets/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/external-secrets/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/external-secrets/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/external-secrets/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/external-secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/external-secrets/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/extra-rules/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/extra-rules/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/extra-rules/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/extra-rules/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/extra-rules/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/extra-rules/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/extra-rules/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/gke-autopilot/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/gke-autopilot/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/gke-autopilot/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/gke-autopilot/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/gke-autopilot/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/gke-autopilot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/gke-autopilot/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/ibm-cloud/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/ibm-cloud/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/ibm-cloud/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/ibm-cloud/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/ibm-cloud/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/ibm-cloud/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/ibm-cloud/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-journal/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-journal/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-journal/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/metrics.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-journal/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-journal/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-journal/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-only/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-only/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-only/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/metrics.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-only/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/logs-only/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/logs-only/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metric-module-imports-extra-config/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metric-module-imports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/metric-module-imports/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metric-module-imports/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/metrics-only/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/events.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/logs.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/metrics-only/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/metrics-only/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/metrics-only/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/metrics-only/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/openshift-compatible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/openshift-compatible/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/openshift-compatible/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/openshift-compatible/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/openshift-compatible/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/otel-metrics-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/otel-metrics-service/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/otel-metrics-service/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/otel-metrics-service/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/otel-metrics-service/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/pod-labels/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/pod-labels/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/pod-labels/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/pod-labels/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/pod-labels/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/pod-labels/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/pod-labels/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/private-image-registry/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/process.png -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/profiles.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/profiles.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/profiles-enabled/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/profiles-enabled/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/proxies/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/proxies/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/proxies/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/proxies/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/proxies/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/proxies/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/proxies/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/scrape-intervals/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/events.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/logs.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/scrape-intervals/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/scrape-intervals/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/scrape-intervals/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/scrape-intervals/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/service-integrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/service-integrations/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/service-integrations/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/service-integrations/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/service-integrations/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/sigv4-auth/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/sigv4-auth/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/sigv4-auth/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/sigv4-auth/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/sigv4-auth/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/sigv4-auth/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/sigv4-auth/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/specific-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/specific-namespace/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/specific-namespace/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/specific-namespace/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/specific-namespace/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/specific-namespace/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/specific-namespace/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/specific-namespace/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/specific-namespace/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/specific-namespace/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/specific-namespace/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/terraform-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/terraform-deployment/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/terraform-deployment/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/terraform-deployment/vars.tf -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/traces-enabled/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/traces-enabled/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/traces-enabled/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/traces-enabled/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/traces-enabled/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/traces-enabled/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/traces-enabled/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/windows-exporter/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/events.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/windows-exporter/events.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/windows-exporter/logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/windows-exporter/metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/windows-exporter/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/profiles.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/docs/examples/windows-exporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/docs/examples/windows-exporter/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/schema-mods/enums-and-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/schema-mods/enums-and-types.json -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/schema-mods/remove-subchart-fields.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/schema-mods/remove-subchart-fields.jq -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/schema-mods/required-values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/schema-mods/required-values.json -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/scripts/set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/scripts/set-version.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/_config_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/_config_validations.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/_configs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/_configs.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/_deprecations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/_deprecations.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy-events-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy-events-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy-logs-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy-logs-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy-profiles-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy-profiles-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_alloy.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_alloy.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_apiserver.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_apiserver.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_beyla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_beyla.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_cadvisor.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_cadvisor.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_endpoints.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_endpoints.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_kepler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_kepler.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_kube_proxy.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_kube_proxy.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_kubelet.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_kubelet.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_logging.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_logging.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_nodes.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_nodes.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_opencost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_opencost.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_operator_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_operator_objects.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_pods.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_pods.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_processors.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_processors.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/alloy_config/_services.alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/alloy_config/_services.alloy.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/beyla-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/beyla-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/grafana-agent-receiver-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/grafana-agent-receiver-service.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/hooks/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/hooks/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/hooks/validate-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/hooks/validate-configuration.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/log-service-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/log-service-credentials.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/metrics-service-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/metrics-service-credentials.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/profiles-service-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/profiles-service-credentials.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/tests/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/tests/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/tests/test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/trace-service-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/trace-service-credentials.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/templates/validations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/templates/validations.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/.shellspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/.shellspec -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/Dockerfile -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/config-analysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/config-analysis.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/query-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/query-test.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/spec/deprecation-warning_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/spec/deprecation-warning_spec.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/spec/invalid-logs-configurations_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/spec/invalid-logs-configurations_spec.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/spec/receiver-port-check_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/spec/receiver-port-check_spec.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/spec/spec_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/spec/spec_helper.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/test/test-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/test/test-runner.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/tests/integration/test-1/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/tests/integration/test-1/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/tests/integration/test-1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/tests/integration/test-1/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/tests/integration/test-2/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/tests/integration/test-2/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/tests/integration/test-2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/tests/integration/test-2/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring-v1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring-v1/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/.ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/.ct.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/.lintconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/.lintconf.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/CHANGELOG.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/alloy-operator-0.3.14.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/alloy-operator-0.3.14.tgz -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-annotation-autodiscovery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-annotation-autodiscovery/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-auto-instrumentation/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-auto-instrumentation/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-auto-instrumentation/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-auto-instrumentation/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-auto-instrumentation/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-auto-instrumentation/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-auto-instrumentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-auto-instrumentation/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-auto-instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-auto-instrumentation/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-auto-instrumentation/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-auto-instrumentation/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-events/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-events/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/.ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/.ct.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-cluster-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-cluster-metrics/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/.helmignore: -------------------------------------------------------------------------------- 1 | docs 2 | schema-mods 3 | tests 4 | Makefile 5 | README.md 6 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/templates/_notes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/templates/_notes.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/tests/etcd_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/tests/etcd_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-integrations/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-integrations/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/templates/_notes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/templates/_notes.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/tests/default_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/tests/default_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/tests/labels_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/tests/labels_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-node-logs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-node-logs/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/templates/_api.alloy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/templates/_api.alloy.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/templates/_notes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/templates/_notes.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/tests/default_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/tests/default_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/tests/filelog_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/tests/filelog_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-pod-logs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-pod-logs/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiles-receiver/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiles-receiver/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiles-receiver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiles-receiver/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiles-receiver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiles-receiver/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiles-receiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiles-receiver/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiles-receiver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiles-receiver/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/.helmignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/Chart.lock -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/Chart.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/README.md.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/templates/_ebpf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/templates/_ebpf.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/templates/_java.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/templates/_java.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/templates/_notes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/templates/_notes.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/templates/_pprof.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/templates/_pprof.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/tests/ebpf_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/tests/ebpf_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/tests/java_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/tests/java_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/tests/pprof_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/tests/pprof_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/charts/feature-profiling/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/charts/feature-profiling/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/alloy-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/collectors/alloy-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/named-defaults/alloy-logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/collectors/named-defaults/alloy-logs.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/named-defaults/alloy-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/collectors/named-defaults/alloy-metrics.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/named-defaults/alloy-profiles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/collectors/named-defaults/alloy-profiles.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/named-defaults/alloy-receiver.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/named-defaults/alloy-singleton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/collectors/named-defaults/alloy-singleton.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/collectors/upstream/alloy-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/collectors/upstream/alloy-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/default-remove-lists/resource-attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/default-remove-lists/resource-attributes.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/destinations/custom-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/destinations/custom-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/destinations/loki-stdout-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/destinations/loki-stdout-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/destinations/loki-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/destinations/loki-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/destinations/otlp-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/destinations/otlp-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/destinations/prometheus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/destinations/prometheus-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/destinations/pyroscope-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/destinations/pyroscope-values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/Collectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/Collectors.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/Features.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/Images.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/Migration.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/ScrapeApplicationMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/ScrapeApplicationMetrics.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/Structure.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/TargetingDataCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/TargetingDataCollection.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/Troubleshooting.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/UsingExtraConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/UsingExtraConfig.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/collectors/.doc_templates/alloy.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/collectors/.doc_templates/alloy.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/collectors/alloy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/collectors/alloy.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/create-a-new-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/create-a-new-feature/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/create-a-new-feature/new-feature-templates/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/.doc_templates/custom.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/.doc_templates/custom.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/.doc_templates/loki.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/.doc_templates/loki.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/.doc_templates/otlp.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/.doc_templates/otlp.gotmpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/.images/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/.images/example1.png -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/.images/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/.images/example2.png -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/.images/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/.images/example3.png -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/custom.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/loki-stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/loki-stdout.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/loki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/loki.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/otlp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/otlp.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/prometheus.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/destinations/pyroscope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/destinations/pyroscope.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/bearer-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/bearer-token/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/bearer-token/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/bearer-token/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/bearer-token/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/bearer-token/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/bearer-token/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/bearer-token/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/bearer-token/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/bearer-token/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/embedded-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/embedded-secrets/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/embedded-secrets/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/embedded-secrets/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/embedded-secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/embedded-secrets/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/external-secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/external-secrets/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/external-secrets/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/external-secrets/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/external-secrets/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/external-secrets/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/alloy-singleton.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/alloy-singleton.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/oauth2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/oauth2/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/sigv4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/sigv4/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/sigv4/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/sigv4/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/sigv4/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/sigv4/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/sigv4/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/sigv4/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/auth/sigv4/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/auth/sigv4/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/collector-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/collector-storage/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/collector-storage/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/collector-storage/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/collector-storage/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/collector-storage/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/collector-storage/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/collector-storage/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/collector-storage/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/collector-storage/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/deployment-alternatives/argocd/.no-render: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/destinations/loki-stdout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/destinations/loki-stdout/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/exclude-by-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/exclude-by-namespace/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/exclude-by-namespace/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/exclude-by-namespace/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/exclude-by-namespace/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/exclude-by-namespace/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-configuration/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-configuration/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-configuration/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-configuration/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-configuration/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/alloy-singleton.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/alloy-singleton.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/extra-rules/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/extra-rules/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/features/profiling/default/alloy-receiver.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/images/images-by-digest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/images/images-by-digest/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/include-by-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/include-by-namespace/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/include-by-namespace/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/include-by-namespace/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/include-by-namespace/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/include-by-namespace/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/istio-service-mesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/istio-service-mesh/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/istio-service-mesh/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/istio-service-mesh/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/istio-service-mesh/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/istio-service-mesh/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/istio-service-mesh/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/istio-service-mesh/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/log-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/log-metrics/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/log-metrics/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/log-metrics/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/log-metrics/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/log-metrics/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/log-metrics/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/log-metrics/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/log-metrics/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/log-metrics/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/log-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/log-metrics/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/meta-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/meta-monitoring/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/meta-monitoring/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/meta-monitoring/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/meta-monitoring/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/meta-monitoring/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/metrics-tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/metrics-tuning/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/metrics-tuning/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/metrics-tuning/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/metrics-tuning/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/metrics-tuning/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/metrics-tuning/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/metrics-tuning/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/metrics-tuning/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/metrics-tuning/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/name-overrides/fullname-overrides/alloy-metrics.alloy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/node-labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/node-labels/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/node-labels/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/node-labels/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/node-labels/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/node-labels/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/node-labels/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/node-labels/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/node-labels/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/node-labels/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/node-labels/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/node-labels/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/azure-aks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/azure-aks/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/azure-aks/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/azure-aks/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/azure-aks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/azure-aks/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/eks-fargate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/eks-fargate/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/eks-fargate/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/eks-fargate/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/eks-fargate/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/eks-fargate/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/gke-autopilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/gke-autopilot/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/openshift/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/openshift/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/openshift/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/platforms/openshift/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/platforms/openshift/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/private-image-registries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/private-image-registries/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/alloy-profiles.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/alloy-profiles.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/alloy-receiver.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/alloy-receiver.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/alloy-singleton.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/alloy-singleton.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/proxies/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/proxies/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/remote-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/remote-config/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/remote-config/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/remote-config/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/remote-config/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/remote-config/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/remote-config/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/remote-config/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/remote-config/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/remote-config/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/remote-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/remote-config/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/scalability/autoscaling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/scalability/autoscaling/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/alloy-receiver.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/alloy-receiver.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tail-sampling/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tail-sampling/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tolerations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tolerations/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tolerations/alloy-logs.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tolerations/alloy-logs.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tolerations/alloy-metrics.alloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tolerations/alloy-metrics.alloy -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tolerations/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tolerations/description.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tolerations/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tolerations/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/docs/examples/tolerations/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/docs/examples/tolerations/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/schema-mods/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/schema-mods/destination.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/schema-mods/types-and-enums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/schema-mods/types-and-enums.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/schema-mods/unset-defined-types.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/schema-mods/unset-defined-types.jq -------------------------------------------------------------------------------- /charts/k8s-monitoring/schema-mods/unset-generic-object.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/schema-mods/unset-generic-object.jq -------------------------------------------------------------------------------- /charts/k8s-monitoring/scripts/generate-profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/scripts/generate-profiles.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/scripts/images-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/scripts/images-doc.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/scripts/set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/scripts/set-version.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/_crd-validation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/_crd-validation.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/_platform_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/_platform_validations.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/_validations.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/alloy-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/alloy-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/alloy-sampler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/alloy-sampler.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/alloy-servicegraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/alloy-servicegraph.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/alloy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/alloy.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/beyla-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/beyla-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/collectors/_collector_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/collectors/_collector_common.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/collectors/_collector_extraConfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/collectors/_collector_extraConfig.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/collectors/_collector_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/collectors/_collector_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/collectors/_collector_notes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/collectors/_collector_notes.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/collectors/_collector_remoteConfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/collectors/_collector_remoteConfig.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/collectors/_collector_validations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/collectors/_collector_validations.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destination_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destination_secret.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destinations/_config.alloy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destinations/_config.alloy.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destinations/_destination_custom.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destinations/_destination_custom.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destinations/_destination_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destinations/_destination_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destinations/_destination_loki.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destinations/_destination_loki.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destinations/_destination_otlp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destinations/_destination_otlp.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/destinations/_destination_types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/destinations/_destination_types.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/extra-objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/extra-objects.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_cluster_events.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_cluster_events.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_cluster_metrics.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_cluster_metrics.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_integrations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_integrations.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_node_logs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_node_logs.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_pod_logs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_pod_logs.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_profiling.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_profiling.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/features/_feature_self_reporting.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/features/_feature_self_reporting.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/hooks/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/hooks/post-install_add-finalizer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/hooks/post-install_add-finalizer.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/otlp/_receiver_otlp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/otlp/_receiver_otlp.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/otlp/sampler/policies/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/otlp/sampler/policies/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/otlp/sampler/policies/_policy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/otlp/sampler/policies/_policy.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/receiver-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/receiver-service.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/remote_config_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/remote_config_secret.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/secrets/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/secrets/_helpers.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/secrets/_secret.alloy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/secrets/_secret.alloy.tpl -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/secrets/test/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/secrets/test/secrets.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/test/helpers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/test/helpers.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/validations.yaml: -------------------------------------------------------------------------------- 1 | {{- include "validations" . }} 2 | --- -------------------------------------------------------------------------------- /charts/k8s-monitoring/templates/zzz-destinations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/templates/zzz-destinations.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/__snapshot__/feature_notes_test.yaml.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/__snapshot__/feature_notes_test.yaml.snap -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/crd_upgrade_no_validation_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/crd_upgrade_no_validation_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/crd_upgrade_yes_validation_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/crd_upgrade_yes_validation_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/destination_otlp_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/destination_otlp_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/destination_prometheus_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/destination_prometheus_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/destination_validations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/destination_validations_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/example-checks/.shellspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/example-checks/.shellspec -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/example-checks/spec/spec_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/example-checks/spec/spec_helper.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/extra_objects_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/extra_objects_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_annotation_autodiscovery_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_annotation_autodiscovery_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_beyla_config_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_beyla_config_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_cluster_events_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_cluster_events_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_integrations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_integrations_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_notes_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_notes_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_pod_logs_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_pod_logs_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_receiver-service_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_receiver-service_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_remoteConfig_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_remoteConfig_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_servicegraph_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_servicegraph_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/feature_tail_sampling_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/feature_tail_sampling_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/hook_post-install_add-finalizer_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/hook_post-install_add-finalizer_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/alternative-deployments/helmfile/.envrc: -------------------------------------------------------------------------------- 1 | export KUBECONFIG=$(pwd)/kubeconfig.yaml 2 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/alternative-deployments/helmfile/.gitignore: -------------------------------------------------------------------------------- 1 | kubeconfig.yaml 2 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/alternative-deployments/helmfile/.no-render: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/alternative-deployments/terraform/.envrc: -------------------------------------------------------------------------------- 1 | export KUBECONFIG=$(pwd)/kubeconfig.yaml 2 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/alternative-deployments/terraform/.no-render: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/alternative-deployments/terraform/.rendered/output.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/auth/.rendered/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/auth/.rendered/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/auth/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/auth/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/auth/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/auth/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/auth/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/auto-instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/auto-instrumentation/README.md -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/profiling/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/profiling/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/profiling/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/profiling/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/proxies/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/proxies/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/proxies/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/proxies/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/statsd/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/statsd/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/statsd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/statsd/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/tail-sampling/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/tail-sampling/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/uninstall/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/uninstall/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/uninstall/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/uninstall/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/upgrade/major/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/upgrade/major/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/upgrade/minor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/upgrade/minor/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/integration/upgrade/patch/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/integration/upgrade/patch/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/misc-checks/.shellspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/misc-checks/.shellspec -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/misc-checks/spec/crd-link_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/misc-checks/spec/crd-link_spec.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/misc-checks/spec/spec_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/misc-checks/spec/spec_helper.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/.manual-only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/.manual-only -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/.rendered/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/.rendered/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/aks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/aks/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon-with-terraform/.manual-only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon-with-terraform/.no-render: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon-with-terraform/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | cluster: 3 | name: eks-addon-with-terraform 4 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-addon/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-addon/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/.manual-only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/.no-render: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-addon/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-addon/deploy.sh -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-addon/values.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-addon/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-addon/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-fargate/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-fargate/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-fargate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-fargate/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-fargate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-fargate/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-fargate/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-fargate/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-fargate/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-fargate/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-with-windows/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-with-windows/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-with-windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-with-windows/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-with-windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-with-windows/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/eks-with-windows/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/eks-with-windows/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke-autopilot/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke-autopilot/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke-autopilot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke-autopilot/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke-autopilot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke-autopilot/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke-autopilot/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke-autopilot/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke-autopilot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke-autopilot/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke/.rendered/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke/.rendered/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gke/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gke/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/.rendered/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/.rendered/output.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/eks-cluster-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/eks-cluster-config.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/gpu-stress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/gpu-stress.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/nvidia-gpu-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/nvidia-gpu-operator.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/gpu/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/gpu/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/grafana-cloud/app-observability/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/grafana-cloud/app-observability/dependencies/otel-demo-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: otel-demo 6 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/grafana-cloud/database-observability/.random: -------------------------------------------------------------------------------- 1 | 803497 2 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/grafana-cloud/database-observability/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/openshift/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/openshift/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/openshift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/openshift/.gitignore -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/openshift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/openshift/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/openshift/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/openshift/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/openshift/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/openshift/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/otlp-gateway/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/otlp-gateway/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/otlp-gateway/.gitignore: -------------------------------------------------------------------------------- 1 | .random 2 | grafana-cloud-credentials.yaml 3 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/otlp-gateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/otlp-gateway/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/otlp-gateway/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/otlp-gateway/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/otlp-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/otlp-gateway/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/remote-config/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/remote-config/.envrc -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/remote-config/.gitignore: -------------------------------------------------------------------------------- 1 | .random 2 | grafana-cloud-credentials.yaml 3 | -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/remote-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/remote-config/Makefile -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/remote-config/test-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/remote-config/test-plan.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform/remote-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform/remote-config/values.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/platform_validations_aks_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/platform_validations_aks_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/unittest_helpers_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/unittest_helpers_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/unittest_secrets_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/unittest_secrets_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/validations_collectors_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/validations_collectors_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/tests/validations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/tests/validations_test.yaml -------------------------------------------------------------------------------- /charts/k8s-monitoring/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/values.schema.json -------------------------------------------------------------------------------- /charts/k8s-monitoring/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/charts/k8s-monitoring/values.yaml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/examples/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/package.json -------------------------------------------------------------------------------- /scripts/helm-with-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/scripts/helm-with-version -------------------------------------------------------------------------------- /scripts/lint-alloy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/scripts/lint-alloy.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/k8s-monitoring-helm/HEAD/yarn.lock --------------------------------------------------------------------------------