├── .bumpversion.cfg ├── .drone.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── COMPATIBILITY_MATRIX.md ├── CONTRIBUTING.md └── releases │ ├── v1.1.0.md │ ├── v1.10.0.md │ ├── v1.10.1.md │ ├── v1.10.2.md │ ├── v1.10.3.md │ ├── v1.11.0.md │ ├── v1.11.1.md │ ├── v1.12.0.md │ ├── v1.12.1.md │ ├── v1.12.2.md │ ├── v1.12.3.md │ ├── v1.13.0.md │ ├── v1.14.0.md │ ├── v1.14.1.md │ ├── v1.14.2.md │ ├── v1.2.0.md │ ├── v1.3.0.md │ ├── v1.4.0.md │ ├── v1.4.1.md │ ├── v1.5.0.md │ ├── v1.6.0.md │ ├── v1.6.1.md │ ├── v1.7.0.md │ ├── v1.7.1.md │ ├── v1.8.0.md │ ├── v1.9.0.md │ ├── v1.9.1.md │ ├── v2.0.0.md │ ├── v2.0.1.md │ ├── v2.1.0.md │ ├── v2.2.0.md │ ├── v3.0.0.md │ ├── v3.0.1.md │ ├── v3.0.2.md │ ├── v3.1.0.md │ ├── v3.2.0.md │ ├── v3.3.0.md │ ├── v3.3.1.md │ ├── v3.4.0.md │ ├── v3.5.0.md │ ├── v4.0.0.md │ └── v4.0.1.md ├── examples ├── alertmanager-configuration │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── alertmanager.yaml │ └── kustomization.yaml ├── alertmanager-operated-deployment │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── alertmanager-operated-deployment.yml │ └── kustomization.yaml ├── blackbox-exporter-probe │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── kustomization.yaml │ └── probe.yml ├── grafana-add-dashboard │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── add-dashboard.yml │ ├── kustomization.yaml │ └── sighup-sample-dashboard.json ├── grafana-configuration │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── env-variables.yml │ └── kustomization.yaml ├── prometheus-additionalScrapes │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── kustomization.yaml │ └── prometheus-additionalScrapes.yml ├── prometheus-alertmanager-externalUrl │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── kustomization.yaml │ └── prometheus-alertmanager-externalUrl.yml ├── prometheus-externalLabels │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── kustomization.yaml │ └── prometheus-externalLabels.yml ├── prometheus-operated-deployment │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── kustomization.yaml │ └── prometheus-operated-deployment.yml ├── prometheus-operated-nodeSelector │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── kustomization.yaml │ └── prometheus-operated-nodeSelector.yml ├── prometheus-rules │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── add-alert.yml │ └── kustomization.yaml ├── registry-override │ ├── README.md │ ├── alertmanager-operated │ │ ├── image.yml │ │ └── kustomization.yaml │ ├── grafana │ │ └── kustomization.yaml │ ├── kube-proxy-metrics │ │ └── kustomization.yaml │ ├── kube-state-metrics │ │ └── kustomization.yaml │ ├── metrics-server │ │ └── kustomization.yaml │ ├── node-exporter │ │ └── kustomization.yaml │ ├── prometheus-operated │ │ ├── image.yml │ │ └── kustomization.yaml │ └── prometheus-operator │ │ ├── deploy.yml │ │ └── kustomization.yaml ├── serviceMonitor │ ├── Furyfile.yml │ ├── Makefile │ ├── README.md │ ├── example-app.yml │ ├── kustomization.yaml │ └── sm.yml └── tests.sh ├── katalog ├── aks-sm │ ├── MAINTENANCE.md │ ├── README.md │ └── kustomization.yaml ├── alertmanager-operated │ ├── MAINTENANCE.md │ ├── README.md │ ├── alertmanager.yaml │ ├── alertmanagerconfig.yml │ ├── config │ │ ├── alertmanager.tmpl │ │ └── alertmanager.yaml │ ├── dashboards │ │ ├── alertmanager-overview.json │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── prometheusRule.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── blackbox-exporter │ ├── MAINTENANCE.md │ ├── README.md │ ├── clusterRole.yaml │ ├── clusterRoleBinding.yaml │ ├── configuration.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── prometheusRule.yml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── configs │ ├── aks │ │ ├── README.md │ │ ├── dashboards │ │ │ └── .keep │ │ ├── kustomization.yaml │ │ └── service-monitors │ │ │ └── .keep │ ├── bases │ │ ├── coredns │ │ │ ├── dashboards │ │ │ │ └── coredns.json │ │ │ ├── kustomization.yaml │ │ │ └── service-monitors │ │ │ │ └── coredns.yml │ │ └── default │ │ │ ├── dashboards │ │ │ ├── apiserver.json │ │ │ ├── cluster-total.json │ │ │ ├── kubelet.json │ │ │ ├── namespace-by-pod.json │ │ │ ├── namespace-by-workload.json │ │ │ ├── persistent-volumes-usage.json │ │ │ ├── pod-total.json │ │ │ └── workload-total.json │ │ │ ├── kustomization.yaml │ │ │ └── service-monitors │ │ │ ├── apiserver.yml │ │ │ └── kubelet.yml │ ├── eks │ │ ├── README.md │ │ ├── dashboards │ │ │ └── .keep │ │ ├── kustomization.yaml │ │ └── service-monitors │ │ │ └── .keep │ ├── gke │ │ ├── README.md │ │ ├── dashboards │ │ │ └── .keep │ │ ├── kustomization.yaml │ │ └── service-monitors │ │ │ └── .keep │ ├── kubeadm │ │ ├── README.md │ │ ├── dashboards │ │ │ ├── controller-manager.json │ │ │ ├── etcd.json │ │ │ └── scheduler.json │ │ ├── kustomization.yaml │ │ ├── rules.yml │ │ ├── service-monitors │ │ │ ├── controller-manager.yml │ │ │ ├── etcd.yml │ │ │ └── scheduler.yml │ │ └── services │ │ │ ├── controller-manager.yml │ │ │ ├── etcd.yml │ │ │ └── scheduler.yml │ └── kustomization.yaml ├── eks-sm │ ├── MAINTENANCE.md │ ├── README.md │ └── kustomization.yaml ├── gke-sm │ ├── MAINTENANCE.md │ ├── README.md │ └── kustomization.yaml ├── grafana │ ├── MAINTENANCE.md │ ├── README.md │ ├── clusterRole.yaml │ ├── clusterRoleBinding.yaml │ ├── config.yaml │ ├── dashboardSources.yaml │ ├── dashboards │ │ ├── fury-cluster-overview.json │ │ ├── grafana-overview.json │ │ ├── k8s-resources-multicluster.json │ │ ├── kustomization.yaml │ │ └── nodes-darwin.json │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── patches │ │ ├── grafana-dashboard-sidecar.yml │ │ ├── grafana-dashboard-sources.yml │ │ ├── grafana-datasource-sidecar.yml │ │ ├── grafana-env.yaml │ │ ├── grafana-probes.yaml │ │ ├── grafana-security-context.yml │ │ └── grafana-volumes.yaml │ ├── prometheusRule.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── haproxy │ ├── MAINTENANCE.md │ ├── README.md │ ├── dashboards │ │ ├── 12693_rev8.json │ │ └── kustomization.yaml │ ├── kustomization.yaml │ └── rules │ │ ├── haproxy-rules.yaml │ │ └── kustomization.yaml ├── kube-proxy-metrics │ ├── README.md │ ├── dashboards │ │ ├── kustomization.yaml │ │ └── proxy.json │ ├── deploy.yml │ ├── kustomization.yaml │ ├── rbac.yml │ └── sm.yml ├── kube-state-metrics │ ├── MAINTENANCE.md │ ├── README.md │ ├── clusterRole.yaml │ ├── clusterRoleBinding.yaml │ ├── dashboards │ │ ├── k8s-resources-cluster.json │ │ ├── k8s-resources-namespace.json │ │ ├── k8s-resources-node.json │ │ ├── k8s-resources-pod.json │ │ ├── k8s-resources-workload.json │ │ ├── k8s-resources-workloads-namespace.json │ │ ├── kustomization.yaml │ │ ├── pods.json │ │ └── statefulset.json │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── prometheusRule.yaml │ ├── role.yaml │ ├── roleBinding.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── kubeadm-sm │ ├── MAINTENANCE.md │ ├── README.md │ └── kustomization.yaml ├── mimir │ ├── MAINTENANCE.md │ ├── MAINTENANCE.values.yaml │ ├── README.md │ ├── config │ │ └── mimir.yaml │ ├── dashboards │ │ ├── kustomization.yaml │ │ ├── mimir-alertmanager-resources.json │ │ ├── mimir-compactor-resources.json │ │ ├── mimir-compactor.json │ │ ├── mimir-config.json │ │ ├── mimir-object-store.json │ │ ├── mimir-overrides.json │ │ ├── mimir-overview-networking.json │ │ ├── mimir-overview-resources.json │ │ ├── mimir-overview.json │ │ ├── mimir-queries.json │ │ ├── mimir-reads-networking.json │ │ ├── mimir-reads-resources.json │ │ ├── mimir-reads.json │ │ ├── mimir-remote-ruler-reads-networking.json │ │ ├── mimir-remote-ruler-reads-resources.json │ │ ├── mimir-ruler.json │ │ ├── mimir-scaling.json │ │ ├── mimir-slow-queries.json │ │ ├── mimir-tenants.json │ │ ├── mimir-top-tenants.json │ │ ├── mimir-writes-networking.json │ │ ├── mimir-writes-resources.json │ │ └── mimir-writes.json │ ├── datasources │ │ ├── kustomization.yaml │ │ └── mimir.yaml │ ├── deploy.yaml │ ├── kustomization.yaml │ └── prometheusRules.yaml ├── minio-ha │ ├── MAINTENANCE.md │ ├── MAINTENANCE.values.yaml │ ├── README.md │ ├── deploy.yaml │ ├── initialize-minio-buckets.yaml │ ├── kustomization.yaml │ └── prometheusrules.yaml ├── node-exporter │ ├── MAINTENANCE.md │ ├── README.md │ ├── clusterRole.yaml │ ├── clusterRoleBinding.yaml │ ├── daemonset.yaml │ ├── dashboards │ │ ├── kustomization.yaml │ │ ├── node-cluster-rsrc-use.json │ │ ├── node-rsrc-use.json │ │ └── nodes.json │ ├── kustomization.yaml │ ├── prometheusRule.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── prometheus-adapter │ ├── MAINTENANCE.md │ ├── README.md │ ├── apiService-EnhancedHPAMetrics.yaml │ ├── apiService.yaml │ ├── clusterRole.yaml │ ├── clusterRoleAggregatedMetricsReader.yaml │ ├── clusterRoleBinding.yaml │ ├── clusterRoleBindingDelegator.yaml │ ├── clusterRoleBindingHpaController.yaml │ ├── clusterRoleServerResources.yaml │ ├── config.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── roleBindingAuthReader.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── prometheus-operated │ ├── MAINTENANCE.md │ ├── README.md │ ├── clusterRole.yaml │ ├── clusterRoleBinding.yaml │ ├── dashboards │ │ ├── kustomization.yaml │ │ ├── prometheus-remote-write.json │ │ └── prometheus.json │ ├── datasources │ │ ├── kustomization.yaml │ │ └── prometheus.yaml │ ├── kube-prometheus-rules.yml │ ├── kubernetes-monitoring-rules.yml │ ├── kustomization.yaml │ ├── prometheus.yaml │ ├── prometheusRule.yaml │ ├── roleBindingConfig.yaml │ ├── roleConfig.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── prometheus-operator │ ├── MAINTENANCE.md │ ├── README.md │ ├── clusterRole.yaml │ ├── clusterRoleBinding.yaml │ ├── crds │ │ ├── 0alertmanagerConfigCustomResourceDefinition.yaml │ │ ├── 0alertmanagerCustomResourceDefinition.yaml │ │ ├── 0podmonitorCustomResourceDefinition.yaml │ │ ├── 0probeCustomResourceDefinition.yaml │ │ ├── 0prometheusCustomResourceDefinition.yaml │ │ ├── 0prometheusagentCustomResourceDefinition.yaml │ │ ├── 0prometheusruleCustomResourceDefinition.yaml │ │ ├── 0scrapeconfigCustomResourceDefinition.yaml │ │ ├── 0servicemonitorCustomResourceDefinition.yaml │ │ └── 0thanosrulerCustomResourceDefinition.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── prometheusRule.yaml │ ├── service.yaml │ ├── serviceAccount.yaml │ └── serviceMonitor.yaml ├── tests │ ├── grafana-ldap-auth │ │ ├── kustomize-project │ │ │ ├── kustomization.yaml │ │ │ ├── ldap-config │ │ │ │ └── ldap.toml │ │ │ └── patches │ │ │ │ └── grafana-ldap.yaml │ │ └── ldap-server │ │ │ ├── ldap-server.yaml │ │ │ └── sighup.io-groups.ldif │ ├── grafana-ldap.sh │ ├── helper.bash │ ├── kind │ │ └── config.yml │ ├── promtool.sh │ ├── tests.sh │ ├── vap-registry.yaml │ └── x509-exporter │ │ ├── kustomization.yaml │ │ └── volume-patch.yml └── x509-exporter │ ├── MAINTENANCE.md │ ├── MAINTENANCE.values.yaml │ ├── README.md │ ├── common │ ├── dashboards │ │ ├── kustomization.yaml │ │ └── x509.json │ ├── kustomization.yaml │ ├── rules.yml │ ├── sm.yml │ └── svc.yml │ ├── daemonset │ ├── base │ │ ├── daemonset.yml │ │ ├── kustomization.yaml │ │ └── sa.yml │ ├── kustomization.yaml │ ├── x509-certificate-exporter-control-plane │ │ └── kustomization.yaml │ └── x509-certificate-exporter-data-plane │ │ └── kustomization.yaml │ ├── deployment │ ├── deployment.yml │ ├── kustomization.yaml │ ├── rbac.yml │ └── sa.yml │ └── kustomization.yaml ├── mise.toml ├── scripts ├── cleanup-e2e-cluster.sh ├── create-e2e-cluster.sh └── run-monitoring-tests.sh ├── utils └── pull-upstream.sh └── values └── prometheus-adapter.yml /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/.drone.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/README.md -------------------------------------------------------------------------------- /docs/COMPATIBILITY_MATRIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/COMPATIBILITY_MATRIX.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/releases/v1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.1.0.md -------------------------------------------------------------------------------- /docs/releases/v1.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.10.0.md -------------------------------------------------------------------------------- /docs/releases/v1.10.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.10.1.md -------------------------------------------------------------------------------- /docs/releases/v1.10.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.10.2.md -------------------------------------------------------------------------------- /docs/releases/v1.10.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.10.3.md -------------------------------------------------------------------------------- /docs/releases/v1.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.11.0.md -------------------------------------------------------------------------------- /docs/releases/v1.11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.11.1.md -------------------------------------------------------------------------------- /docs/releases/v1.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.12.0.md -------------------------------------------------------------------------------- /docs/releases/v1.12.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.12.1.md -------------------------------------------------------------------------------- /docs/releases/v1.12.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.12.2.md -------------------------------------------------------------------------------- /docs/releases/v1.12.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.12.3.md -------------------------------------------------------------------------------- /docs/releases/v1.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.13.0.md -------------------------------------------------------------------------------- /docs/releases/v1.14.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.14.0.md -------------------------------------------------------------------------------- /docs/releases/v1.14.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.14.1.md -------------------------------------------------------------------------------- /docs/releases/v1.14.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.14.2.md -------------------------------------------------------------------------------- /docs/releases/v1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.2.0.md -------------------------------------------------------------------------------- /docs/releases/v1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.3.0.md -------------------------------------------------------------------------------- /docs/releases/v1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.4.0.md -------------------------------------------------------------------------------- /docs/releases/v1.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.4.1.md -------------------------------------------------------------------------------- /docs/releases/v1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.5.0.md -------------------------------------------------------------------------------- /docs/releases/v1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.6.0.md -------------------------------------------------------------------------------- /docs/releases/v1.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.6.1.md -------------------------------------------------------------------------------- /docs/releases/v1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.7.0.md -------------------------------------------------------------------------------- /docs/releases/v1.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.7.1.md -------------------------------------------------------------------------------- /docs/releases/v1.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.8.0.md -------------------------------------------------------------------------------- /docs/releases/v1.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.9.0.md -------------------------------------------------------------------------------- /docs/releases/v1.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v1.9.1.md -------------------------------------------------------------------------------- /docs/releases/v2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v2.0.0.md -------------------------------------------------------------------------------- /docs/releases/v2.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v2.0.1.md -------------------------------------------------------------------------------- /docs/releases/v2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v2.1.0.md -------------------------------------------------------------------------------- /docs/releases/v2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v2.2.0.md -------------------------------------------------------------------------------- /docs/releases/v3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.0.0.md -------------------------------------------------------------------------------- /docs/releases/v3.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.0.1.md -------------------------------------------------------------------------------- /docs/releases/v3.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.0.2.md -------------------------------------------------------------------------------- /docs/releases/v3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.1.0.md -------------------------------------------------------------------------------- /docs/releases/v3.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.2.0.md -------------------------------------------------------------------------------- /docs/releases/v3.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.3.0.md -------------------------------------------------------------------------------- /docs/releases/v3.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.3.1.md -------------------------------------------------------------------------------- /docs/releases/v3.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.4.0.md -------------------------------------------------------------------------------- /docs/releases/v3.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v3.5.0.md -------------------------------------------------------------------------------- /docs/releases/v4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v4.0.0.md -------------------------------------------------------------------------------- /docs/releases/v4.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/docs/releases/v4.0.1.md -------------------------------------------------------------------------------- /examples/alertmanager-configuration/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-configuration/Furyfile.yml -------------------------------------------------------------------------------- /examples/alertmanager-configuration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-configuration/Makefile -------------------------------------------------------------------------------- /examples/alertmanager-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-configuration/README.md -------------------------------------------------------------------------------- /examples/alertmanager-configuration/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-configuration/alertmanager.yaml -------------------------------------------------------------------------------- /examples/alertmanager-configuration/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-configuration/kustomization.yaml -------------------------------------------------------------------------------- /examples/alertmanager-operated-deployment/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-operated-deployment/Furyfile.yml -------------------------------------------------------------------------------- /examples/alertmanager-operated-deployment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-operated-deployment/Makefile -------------------------------------------------------------------------------- /examples/alertmanager-operated-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-operated-deployment/README.md -------------------------------------------------------------------------------- /examples/alertmanager-operated-deployment/alertmanager-operated-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-operated-deployment/alertmanager-operated-deployment.yml -------------------------------------------------------------------------------- /examples/alertmanager-operated-deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/alertmanager-operated-deployment/kustomization.yaml -------------------------------------------------------------------------------- /examples/blackbox-exporter-probe/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/blackbox-exporter-probe/Furyfile.yml -------------------------------------------------------------------------------- /examples/blackbox-exporter-probe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/blackbox-exporter-probe/Makefile -------------------------------------------------------------------------------- /examples/blackbox-exporter-probe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/blackbox-exporter-probe/README.md -------------------------------------------------------------------------------- /examples/blackbox-exporter-probe/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/blackbox-exporter-probe/kustomization.yaml -------------------------------------------------------------------------------- /examples/blackbox-exporter-probe/probe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/blackbox-exporter-probe/probe.yml -------------------------------------------------------------------------------- /examples/grafana-add-dashboard/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-add-dashboard/Furyfile.yml -------------------------------------------------------------------------------- /examples/grafana-add-dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-add-dashboard/Makefile -------------------------------------------------------------------------------- /examples/grafana-add-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-add-dashboard/README.md -------------------------------------------------------------------------------- /examples/grafana-add-dashboard/add-dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-add-dashboard/add-dashboard.yml -------------------------------------------------------------------------------- /examples/grafana-add-dashboard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-add-dashboard/kustomization.yaml -------------------------------------------------------------------------------- /examples/grafana-add-dashboard/sighup-sample-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-add-dashboard/sighup-sample-dashboard.json -------------------------------------------------------------------------------- /examples/grafana-configuration/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-configuration/Furyfile.yml -------------------------------------------------------------------------------- /examples/grafana-configuration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-configuration/Makefile -------------------------------------------------------------------------------- /examples/grafana-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-configuration/README.md -------------------------------------------------------------------------------- /examples/grafana-configuration/env-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-configuration/env-variables.yml -------------------------------------------------------------------------------- /examples/grafana-configuration/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/grafana-configuration/kustomization.yaml -------------------------------------------------------------------------------- /examples/prometheus-additionalScrapes/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-additionalScrapes/Furyfile.yml -------------------------------------------------------------------------------- /examples/prometheus-additionalScrapes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-additionalScrapes/Makefile -------------------------------------------------------------------------------- /examples/prometheus-additionalScrapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-additionalScrapes/README.md -------------------------------------------------------------------------------- /examples/prometheus-additionalScrapes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-additionalScrapes/kustomization.yaml -------------------------------------------------------------------------------- /examples/prometheus-additionalScrapes/prometheus-additionalScrapes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-additionalScrapes/prometheus-additionalScrapes.yml -------------------------------------------------------------------------------- /examples/prometheus-alertmanager-externalUrl/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-alertmanager-externalUrl/Furyfile.yml -------------------------------------------------------------------------------- /examples/prometheus-alertmanager-externalUrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-alertmanager-externalUrl/Makefile -------------------------------------------------------------------------------- /examples/prometheus-alertmanager-externalUrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-alertmanager-externalUrl/README.md -------------------------------------------------------------------------------- /examples/prometheus-alertmanager-externalUrl/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-alertmanager-externalUrl/kustomization.yaml -------------------------------------------------------------------------------- /examples/prometheus-alertmanager-externalUrl/prometheus-alertmanager-externalUrl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-alertmanager-externalUrl/prometheus-alertmanager-externalUrl.yml -------------------------------------------------------------------------------- /examples/prometheus-externalLabels/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-externalLabels/Furyfile.yml -------------------------------------------------------------------------------- /examples/prometheus-externalLabels/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-externalLabels/Makefile -------------------------------------------------------------------------------- /examples/prometheus-externalLabels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-externalLabels/README.md -------------------------------------------------------------------------------- /examples/prometheus-externalLabels/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-externalLabels/kustomization.yaml -------------------------------------------------------------------------------- /examples/prometheus-externalLabels/prometheus-externalLabels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-externalLabels/prometheus-externalLabels.yml -------------------------------------------------------------------------------- /examples/prometheus-operated-deployment/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-deployment/Furyfile.yml -------------------------------------------------------------------------------- /examples/prometheus-operated-deployment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-deployment/Makefile -------------------------------------------------------------------------------- /examples/prometheus-operated-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-deployment/README.md -------------------------------------------------------------------------------- /examples/prometheus-operated-deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-deployment/kustomization.yaml -------------------------------------------------------------------------------- /examples/prometheus-operated-deployment/prometheus-operated-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-deployment/prometheus-operated-deployment.yml -------------------------------------------------------------------------------- /examples/prometheus-operated-nodeSelector/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-nodeSelector/Furyfile.yml -------------------------------------------------------------------------------- /examples/prometheus-operated-nodeSelector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-nodeSelector/Makefile -------------------------------------------------------------------------------- /examples/prometheus-operated-nodeSelector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-nodeSelector/README.md -------------------------------------------------------------------------------- /examples/prometheus-operated-nodeSelector/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-nodeSelector/kustomization.yaml -------------------------------------------------------------------------------- /examples/prometheus-operated-nodeSelector/prometheus-operated-nodeSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-operated-nodeSelector/prometheus-operated-nodeSelector.yml -------------------------------------------------------------------------------- /examples/prometheus-rules/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-rules/Furyfile.yml -------------------------------------------------------------------------------- /examples/prometheus-rules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-rules/Makefile -------------------------------------------------------------------------------- /examples/prometheus-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-rules/README.md -------------------------------------------------------------------------------- /examples/prometheus-rules/add-alert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-rules/add-alert.yml -------------------------------------------------------------------------------- /examples/prometheus-rules/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/prometheus-rules/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/README.md -------------------------------------------------------------------------------- /examples/registry-override/alertmanager-operated/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/alertmanager-operated/image.yml -------------------------------------------------------------------------------- /examples/registry-override/alertmanager-operated/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/alertmanager-operated/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/grafana/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/grafana/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/kube-proxy-metrics/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/kube-proxy-metrics/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/kube-state-metrics/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/kube-state-metrics/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/metrics-server/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/metrics-server/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/node-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/node-exporter/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/prometheus-operated/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/prometheus-operated/image.yml -------------------------------------------------------------------------------- /examples/registry-override/prometheus-operated/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/prometheus-operated/kustomization.yaml -------------------------------------------------------------------------------- /examples/registry-override/prometheus-operator/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/prometheus-operator/deploy.yml -------------------------------------------------------------------------------- /examples/registry-override/prometheus-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/registry-override/prometheus-operator/kustomization.yaml -------------------------------------------------------------------------------- /examples/serviceMonitor/Furyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/serviceMonitor/Furyfile.yml -------------------------------------------------------------------------------- /examples/serviceMonitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/serviceMonitor/Makefile -------------------------------------------------------------------------------- /examples/serviceMonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/serviceMonitor/README.md -------------------------------------------------------------------------------- /examples/serviceMonitor/example-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/serviceMonitor/example-app.yml -------------------------------------------------------------------------------- /examples/serviceMonitor/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/serviceMonitor/kustomization.yaml -------------------------------------------------------------------------------- /examples/serviceMonitor/sm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/serviceMonitor/sm.yml -------------------------------------------------------------------------------- /examples/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/examples/tests.sh -------------------------------------------------------------------------------- /katalog/aks-sm/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/aks-sm/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/aks-sm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/aks-sm/README.md -------------------------------------------------------------------------------- /katalog/aks-sm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/aks-sm/kustomization.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/alertmanager-operated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/README.md -------------------------------------------------------------------------------- /katalog/alertmanager-operated/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/alertmanager.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/alertmanagerconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/alertmanagerconfig.yml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/config/alertmanager.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/config/alertmanager.tmpl -------------------------------------------------------------------------------- /katalog/alertmanager-operated/config/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/config/alertmanager.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/dashboards/alertmanager-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/dashboards/alertmanager-overview.json -------------------------------------------------------------------------------- /katalog/alertmanager-operated/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/kustomization.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/prometheusRule.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/service.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/alertmanager-operated/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/alertmanager-operated/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/blackbox-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/README.md -------------------------------------------------------------------------------- /katalog/blackbox-exporter/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/configuration.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/deployment.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/kustomization.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/prometheusRule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/prometheusRule.yml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/service.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/blackbox-exporter/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/blackbox-exporter/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/configs/aks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/aks/README.md -------------------------------------------------------------------------------- /katalog/configs/aks/dashboards/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /katalog/configs/aks/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/aks/kustomization.yaml -------------------------------------------------------------------------------- /katalog/configs/aks/service-monitors/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /katalog/configs/bases/coredns/dashboards/coredns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/coredns/dashboards/coredns.json -------------------------------------------------------------------------------- /katalog/configs/bases/coredns/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/coredns/kustomization.yaml -------------------------------------------------------------------------------- /katalog/configs/bases/coredns/service-monitors/coredns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/coredns/service-monitors/coredns.yml -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/apiserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/apiserver.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/cluster-total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/cluster-total.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/kubelet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/kubelet.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/namespace-by-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/namespace-by-pod.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/namespace-by-workload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/namespace-by-workload.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/persistent-volumes-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/persistent-volumes-usage.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/pod-total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/pod-total.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/dashboards/workload-total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/dashboards/workload-total.json -------------------------------------------------------------------------------- /katalog/configs/bases/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/kustomization.yaml -------------------------------------------------------------------------------- /katalog/configs/bases/default/service-monitors/apiserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/service-monitors/apiserver.yml -------------------------------------------------------------------------------- /katalog/configs/bases/default/service-monitors/kubelet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/bases/default/service-monitors/kubelet.yml -------------------------------------------------------------------------------- /katalog/configs/eks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/eks/README.md -------------------------------------------------------------------------------- /katalog/configs/eks/dashboards/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /katalog/configs/eks/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/eks/kustomization.yaml -------------------------------------------------------------------------------- /katalog/configs/eks/service-monitors/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /katalog/configs/gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/gke/README.md -------------------------------------------------------------------------------- /katalog/configs/gke/dashboards/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /katalog/configs/gke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/gke/kustomization.yaml -------------------------------------------------------------------------------- /katalog/configs/gke/service-monitors/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /katalog/configs/kubeadm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/README.md -------------------------------------------------------------------------------- /katalog/configs/kubeadm/dashboards/controller-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/dashboards/controller-manager.json -------------------------------------------------------------------------------- /katalog/configs/kubeadm/dashboards/etcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/dashboards/etcd.json -------------------------------------------------------------------------------- /katalog/configs/kubeadm/dashboards/scheduler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/dashboards/scheduler.json -------------------------------------------------------------------------------- /katalog/configs/kubeadm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/kustomization.yaml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/rules.yml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/service-monitors/controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/service-monitors/controller-manager.yml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/service-monitors/etcd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/service-monitors/etcd.yml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/service-monitors/scheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/service-monitors/scheduler.yml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/services/controller-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/services/controller-manager.yml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/services/etcd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/services/etcd.yml -------------------------------------------------------------------------------- /katalog/configs/kubeadm/services/scheduler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kubeadm/services/scheduler.yml -------------------------------------------------------------------------------- /katalog/configs/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/configs/kustomization.yaml -------------------------------------------------------------------------------- /katalog/eks-sm/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/eks-sm/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/eks-sm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/eks-sm/README.md -------------------------------------------------------------------------------- /katalog/eks-sm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/eks-sm/kustomization.yaml -------------------------------------------------------------------------------- /katalog/gke-sm/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/gke-sm/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/gke-sm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/gke-sm/README.md -------------------------------------------------------------------------------- /katalog/gke-sm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/gke-sm/kustomization.yaml -------------------------------------------------------------------------------- /katalog/grafana/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/README.md -------------------------------------------------------------------------------- /katalog/grafana/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/grafana/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/grafana/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/config.yaml -------------------------------------------------------------------------------- /katalog/grafana/dashboardSources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/dashboardSources.yaml -------------------------------------------------------------------------------- /katalog/grafana/dashboards/fury-cluster-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/dashboards/fury-cluster-overview.json -------------------------------------------------------------------------------- /katalog/grafana/dashboards/grafana-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/dashboards/grafana-overview.json -------------------------------------------------------------------------------- /katalog/grafana/dashboards/k8s-resources-multicluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/dashboards/k8s-resources-multicluster.json -------------------------------------------------------------------------------- /katalog/grafana/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/grafana/dashboards/nodes-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/dashboards/nodes-darwin.json -------------------------------------------------------------------------------- /katalog/grafana/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/deployment.yaml -------------------------------------------------------------------------------- /katalog/grafana/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/kustomization.yaml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-dashboard-sidecar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-dashboard-sidecar.yml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-dashboard-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-dashboard-sources.yml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-datasource-sidecar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-datasource-sidecar.yml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-env.yaml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-probes.yaml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-security-context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-security-context.yml -------------------------------------------------------------------------------- /katalog/grafana/patches/grafana-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/patches/grafana-volumes.yaml -------------------------------------------------------------------------------- /katalog/grafana/prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/prometheusRule.yaml -------------------------------------------------------------------------------- /katalog/grafana/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/service.yaml -------------------------------------------------------------------------------- /katalog/grafana/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/grafana/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/grafana/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/haproxy/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/README.md -------------------------------------------------------------------------------- /katalog/haproxy/dashboards/12693_rev8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/dashboards/12693_rev8.json -------------------------------------------------------------------------------- /katalog/haproxy/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/haproxy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/kustomization.yaml -------------------------------------------------------------------------------- /katalog/haproxy/rules/haproxy-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/rules/haproxy-rules.yaml -------------------------------------------------------------------------------- /katalog/haproxy/rules/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/haproxy/rules/kustomization.yaml -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/README.md -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/dashboards/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/dashboards/proxy.json -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/deploy.yml -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/kustomization.yaml -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/rbac.yml -------------------------------------------------------------------------------- /katalog/kube-proxy-metrics/sm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-proxy-metrics/sm.yml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/README.md -------------------------------------------------------------------------------- /katalog/kube-state-metrics/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/k8s-resources-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/k8s-resources-cluster.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/k8s-resources-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/k8s-resources-namespace.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/k8s-resources-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/k8s-resources-node.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/k8s-resources-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/k8s-resources-pod.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/k8s-resources-workload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/k8s-resources-workload.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/k8s-resources-workloads-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/k8s-resources-workloads-namespace.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/pods.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/dashboards/statefulset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/dashboards/statefulset.json -------------------------------------------------------------------------------- /katalog/kube-state-metrics/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/deployment.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/kustomization.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/prometheusRule.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/role.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/roleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/roleBinding.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/service.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/kube-state-metrics/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kube-state-metrics/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/kubeadm-sm/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kubeadm-sm/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/kubeadm-sm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kubeadm-sm/README.md -------------------------------------------------------------------------------- /katalog/kubeadm-sm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/kubeadm-sm/kustomization.yaml -------------------------------------------------------------------------------- /katalog/mimir/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/mimir/MAINTENANCE.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/MAINTENANCE.values.yaml -------------------------------------------------------------------------------- /katalog/mimir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/README.md -------------------------------------------------------------------------------- /katalog/mimir/config/mimir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/config/mimir.yaml -------------------------------------------------------------------------------- /katalog/mimir/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-alertmanager-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-alertmanager-resources.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-compactor-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-compactor-resources.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-compactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-compactor.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-config.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-object-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-object-store.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-overrides.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-overview-networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-overview-networking.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-overview-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-overview-resources.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-overview.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-queries.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-reads-networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-reads-networking.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-reads-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-reads-resources.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-reads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-reads.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-remote-ruler-reads-networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-remote-ruler-reads-networking.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-remote-ruler-reads-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-remote-ruler-reads-resources.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-ruler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-ruler.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-scaling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-scaling.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-slow-queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-slow-queries.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-tenants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-tenants.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-top-tenants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-top-tenants.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-writes-networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-writes-networking.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-writes-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-writes-resources.json -------------------------------------------------------------------------------- /katalog/mimir/dashboards/mimir-writes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/dashboards/mimir-writes.json -------------------------------------------------------------------------------- /katalog/mimir/datasources/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/datasources/kustomization.yaml -------------------------------------------------------------------------------- /katalog/mimir/datasources/mimir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/datasources/mimir.yaml -------------------------------------------------------------------------------- /katalog/mimir/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/deploy.yaml -------------------------------------------------------------------------------- /katalog/mimir/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/kustomization.yaml -------------------------------------------------------------------------------- /katalog/mimir/prometheusRules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/mimir/prometheusRules.yaml -------------------------------------------------------------------------------- /katalog/minio-ha/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/minio-ha/MAINTENANCE.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/MAINTENANCE.values.yaml -------------------------------------------------------------------------------- /katalog/minio-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/README.md -------------------------------------------------------------------------------- /katalog/minio-ha/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/deploy.yaml -------------------------------------------------------------------------------- /katalog/minio-ha/initialize-minio-buckets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/initialize-minio-buckets.yaml -------------------------------------------------------------------------------- /katalog/minio-ha/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/kustomization.yaml -------------------------------------------------------------------------------- /katalog/minio-ha/prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/minio-ha/prometheusrules.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/node-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/README.md -------------------------------------------------------------------------------- /katalog/node-exporter/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/daemonset.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/dashboards/node-cluster-rsrc-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/dashboards/node-cluster-rsrc-use.json -------------------------------------------------------------------------------- /katalog/node-exporter/dashboards/node-rsrc-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/dashboards/node-rsrc-use.json -------------------------------------------------------------------------------- /katalog/node-exporter/dashboards/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/dashboards/nodes.json -------------------------------------------------------------------------------- /katalog/node-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/kustomization.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/prometheusRule.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/service.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/node-exporter/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/node-exporter/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/prometheus-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/README.md -------------------------------------------------------------------------------- /katalog/prometheus-adapter/apiService-EnhancedHPAMetrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/apiService-EnhancedHPAMetrics.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/apiService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/apiService.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/clusterRoleAggregatedMetricsReader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/clusterRoleAggregatedMetricsReader.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/clusterRoleBindingDelegator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/clusterRoleBindingDelegator.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/clusterRoleBindingHpaController.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/clusterRoleBindingHpaController.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/clusterRoleServerResources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/clusterRoleServerResources.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/config.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/deployment.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/kustomization.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/roleBindingAuthReader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/roleBindingAuthReader.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/service.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/prometheus-adapter/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-adapter/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/prometheus-operated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/README.md -------------------------------------------------------------------------------- /katalog/prometheus-operated/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/dashboards/prometheus-remote-write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/dashboards/prometheus-remote-write.json -------------------------------------------------------------------------------- /katalog/prometheus-operated/dashboards/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/dashboards/prometheus.json -------------------------------------------------------------------------------- /katalog/prometheus-operated/datasources/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/datasources/kustomization.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/datasources/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/datasources/prometheus.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/kube-prometheus-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/kube-prometheus-rules.yml -------------------------------------------------------------------------------- /katalog/prometheus-operated/kubernetes-monitoring-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/kubernetes-monitoring-rules.yml -------------------------------------------------------------------------------- /katalog/prometheus-operated/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/kustomization.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/prometheus.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/prometheusRule.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/roleBindingConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/roleBindingConfig.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/roleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/roleConfig.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/service.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operated/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operated/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/prometheus-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/README.md -------------------------------------------------------------------------------- /katalog/prometheus-operator/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/clusterRole.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0alertmanagerConfigCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0alertmanagerConfigCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0alertmanagerCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0alertmanagerCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0podmonitorCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0podmonitorCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0probeCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0probeCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0prometheusCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0prometheusCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0prometheusagentCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0prometheusagentCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0prometheusruleCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0prometheusruleCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0scrapeconfigCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0scrapeconfigCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0servicemonitorCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0servicemonitorCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/crds/0thanosrulerCustomResourceDefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/crds/0thanosrulerCustomResourceDefinition.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/deployment.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/kustomization.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/namespace.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/prometheusRule.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/service.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/serviceAccount.yaml -------------------------------------------------------------------------------- /katalog/prometheus-operator/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/prometheus-operator/serviceMonitor.yaml -------------------------------------------------------------------------------- /katalog/tests/grafana-ldap-auth/kustomize-project/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/grafana-ldap-auth/kustomize-project/kustomization.yaml -------------------------------------------------------------------------------- /katalog/tests/grafana-ldap-auth/kustomize-project/ldap-config/ldap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/grafana-ldap-auth/kustomize-project/ldap-config/ldap.toml -------------------------------------------------------------------------------- /katalog/tests/grafana-ldap-auth/kustomize-project/patches/grafana-ldap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/grafana-ldap-auth/kustomize-project/patches/grafana-ldap.yaml -------------------------------------------------------------------------------- /katalog/tests/grafana-ldap-auth/ldap-server/ldap-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/grafana-ldap-auth/ldap-server/ldap-server.yaml -------------------------------------------------------------------------------- /katalog/tests/grafana-ldap-auth/ldap-server/sighup.io-groups.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/grafana-ldap-auth/ldap-server/sighup.io-groups.ldif -------------------------------------------------------------------------------- /katalog/tests/grafana-ldap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/grafana-ldap.sh -------------------------------------------------------------------------------- /katalog/tests/helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/helper.bash -------------------------------------------------------------------------------- /katalog/tests/kind/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/kind/config.yml -------------------------------------------------------------------------------- /katalog/tests/promtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/promtool.sh -------------------------------------------------------------------------------- /katalog/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/tests.sh -------------------------------------------------------------------------------- /katalog/tests/vap-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/vap-registry.yaml -------------------------------------------------------------------------------- /katalog/tests/x509-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/x509-exporter/kustomization.yaml -------------------------------------------------------------------------------- /katalog/tests/x509-exporter/volume-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/tests/x509-exporter/volume-patch.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/MAINTENANCE.md -------------------------------------------------------------------------------- /katalog/x509-exporter/MAINTENANCE.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/MAINTENANCE.values.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/README.md -------------------------------------------------------------------------------- /katalog/x509-exporter/common/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/common/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/common/dashboards/x509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/common/dashboards/x509.json -------------------------------------------------------------------------------- /katalog/x509-exporter/common/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/common/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/common/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/common/rules.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/common/sm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/common/sm.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/common/svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/common/svc.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/daemonset/base/daemonset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/daemonset/base/daemonset.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/daemonset/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/daemonset/base/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/daemonset/base/sa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/daemonset/base/sa.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/daemonset/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/daemonset/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/daemonset/x509-certificate-exporter-control-plane/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/daemonset/x509-certificate-exporter-control-plane/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/daemonset/x509-certificate-exporter-data-plane/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/daemonset/x509-certificate-exporter-data-plane/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/deployment/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/deployment/deployment.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/deployment/kustomization.yaml -------------------------------------------------------------------------------- /katalog/x509-exporter/deployment/rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/deployment/rbac.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/deployment/sa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/deployment/sa.yml -------------------------------------------------------------------------------- /katalog/x509-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/katalog/x509-exporter/kustomization.yaml -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/mise.toml -------------------------------------------------------------------------------- /scripts/cleanup-e2e-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/scripts/cleanup-e2e-cluster.sh -------------------------------------------------------------------------------- /scripts/create-e2e-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/scripts/create-e2e-cluster.sh -------------------------------------------------------------------------------- /scripts/run-monitoring-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/scripts/run-monitoring-tests.sh -------------------------------------------------------------------------------- /utils/pull-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/utils/pull-upstream.sh -------------------------------------------------------------------------------- /values/prometheus-adapter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighupio/module-monitoring/HEAD/values/prometheus-adapter.yml --------------------------------------------------------------------------------