├── README.md ├── failure-injection.yaml ├── grafana-operator.yaml ├── grafana-operator ├── cluster_role_binding_grafana_operator.yaml ├── crds │ ├── Grafana.yaml │ ├── GrafanaDashboard.yaml │ └── GrafanaDataSource.yaml └── manifests │ ├── cluster_role_aggregate_grafana_admin_edit.yaml │ ├── cluster_role_aggregate_grafana_view.yaml │ ├── cluster_role_grafana_operator.yaml │ ├── operator.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── grafana-sre ├── .helmignore ├── Chart.yaml ├── dashboards │ ├── istio-system │ │ ├── citadel-dashboard.json │ │ ├── galley-dashboard.json │ │ ├── istio-mesh-dashboard.json │ │ ├── istio-performance-dashboard.json │ │ ├── istio-service-dashboard.json │ │ ├── istio-workload-dashboard.json │ │ ├── mixer-dashboard.json │ │ └── pilot-dashboard.json │ ├── openshift-monitoring │ │ ├── cluster-total.json │ │ ├── etcd.json │ │ ├── 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 │ │ ├── node-cluster-rsrc-use.json │ │ ├── node-rsrc-use.json │ │ └── prometheus.json │ └── sre │ │ ├── red.json │ │ ├── slo.json │ │ └── use.json ├── templates │ ├── _helpers.tpl │ ├── configmap-trusted-ca-bundle.yaml │ ├── dashboard.yaml │ ├── grafana-dashboard-cluster-total.yaml │ ├── grafana-dashboard-etcd.yaml │ ├── grafana-dashboard-k8s-resources-cluster.yaml │ ├── grafana-dashboard-k8s-resources-namespace.yaml │ ├── grafana-dashboard-k8s-resources-node.yaml │ ├── grafana-dashboard-k8s-resources-pod.yaml │ ├── grafana-dashboard-k8s-resources-workload.yaml │ ├── grafana-dashboard-k8s-resources-workloads-namespace.yaml │ ├── grafana-dashboard-node-cluster-rsrc-use.yaml │ ├── grafana-dashboard-node-prometheus.yaml │ ├── grafana-dashboard-node-rsrc-use.yaml │ ├── grafana-dashboard-sre-red.yaml │ ├── grafana-dashboard-sre-slo.yaml │ ├── grafana-dashboard-sre-use.yaml │ ├── grafana-rbac.yaml │ ├── grafana.yaml │ ├── grafanadatasource-prometheus-istio-system.yaml │ ├── grafanadatasource-prometheus-openshift-monitoring.yaml │ ├── istio-grafana-configuration-dashboards-citadel-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-galley-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-istio-mesh-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-istio-performance-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-istio-service-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-istio-workload-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-mixer-dashboard.yaml │ ├── istio-grafana-configuration-dashboards-pilot-dashboard.yaml │ └── secret.yaml └── values.yaml ├── istio-prometheus-values.yaml ├── locust ├── locustfile.py └── values.yaml ├── master-api-values.yaml ├── platform-prometheus-values.yaml ├── prometheus-operator.yaml ├── prometheus-sre ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── additional-scrape-config-secret.yaml │ ├── alert-manager-rbac.yaml │ ├── alert-manager-secret.yaml │ ├── alert-manager.yaml │ ├── alertmanager-route.yaml │ ├── alertmanager-service-account.yaml │ ├── configmap-trusted-ca-bundle.yaml │ ├── prometheus-rbac.yaml │ ├── prometheus-route.yaml │ ├── prometheus-secret.yaml │ ├── prometheus.yaml │ ├── secret-alertmanager-k8s-proxy.yaml │ ├── secret-prometheus-k8s-proxy.yaml │ ├── service-account.yaml │ ├── service-alermanager-k8s.yaml │ ├── service-prometheus-k8s.yaml │ ├── servicemeshmember-default.yaml │ └── serving-cert-ca-bundle-cm.yaml └── values.yaml ├── sre-service-monitor-istio ├── .helmignore ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ └── prometheus-rule.yaml └── values.yaml └── sre-service-monitor ├── .helmignore ├── Chart.yaml ├── templates ├── _helpers.tpl └── prometheus-rule.yaml └── values.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/README.md -------------------------------------------------------------------------------- /failure-injection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/failure-injection.yaml -------------------------------------------------------------------------------- /grafana-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator.yaml -------------------------------------------------------------------------------- /grafana-operator/cluster_role_binding_grafana_operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/cluster_role_binding_grafana_operator.yaml -------------------------------------------------------------------------------- /grafana-operator/crds/Grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/crds/Grafana.yaml -------------------------------------------------------------------------------- /grafana-operator/crds/GrafanaDashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/crds/GrafanaDashboard.yaml -------------------------------------------------------------------------------- /grafana-operator/crds/GrafanaDataSource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/crds/GrafanaDataSource.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/cluster_role_aggregate_grafana_admin_edit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/cluster_role_aggregate_grafana_admin_edit.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/cluster_role_aggregate_grafana_view.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/cluster_role_aggregate_grafana_view.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/cluster_role_grafana_operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/cluster_role_grafana_operator.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/operator.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/role.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/role_binding.yaml -------------------------------------------------------------------------------- /grafana-operator/manifests/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-operator/manifests/service_account.yaml -------------------------------------------------------------------------------- /grafana-sre/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/.helmignore -------------------------------------------------------------------------------- /grafana-sre/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/Chart.yaml -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/citadel-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/citadel-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/galley-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/galley-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/istio-mesh-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/istio-mesh-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/istio-performance-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/istio-performance-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/istio-service-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/istio-service-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/istio-workload-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/istio-workload-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/mixer-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/mixer-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/istio-system/pilot-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/istio-system/pilot-dashboard.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/cluster-total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/cluster-total.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/etcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/etcd.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/k8s-resources-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/k8s-resources-cluster.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/k8s-resources-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/k8s-resources-namespace.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/k8s-resources-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/k8s-resources-node.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/k8s-resources-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/k8s-resources-pod.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/k8s-resources-workload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/k8s-resources-workload.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/k8s-resources-workloads-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/k8s-resources-workloads-namespace.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/node-cluster-rsrc-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/node-cluster-rsrc-use.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/node-rsrc-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/node-rsrc-use.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/openshift-monitoring/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/openshift-monitoring/prometheus.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/sre/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/sre/red.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/sre/slo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/sre/slo.json -------------------------------------------------------------------------------- /grafana-sre/dashboards/sre/use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/dashboards/sre/use.json -------------------------------------------------------------------------------- /grafana-sre/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/_helpers.tpl -------------------------------------------------------------------------------- /grafana-sre/templates/configmap-trusted-ca-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/configmap-trusted-ca-bundle.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-cluster-total.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-cluster-total.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-etcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-etcd.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-k8s-resources-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-k8s-resources-cluster.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-k8s-resources-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-k8s-resources-namespace.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-k8s-resources-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-k8s-resources-node.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-k8s-resources-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-k8s-resources-pod.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-k8s-resources-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-k8s-resources-workload.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-k8s-resources-workloads-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-k8s-resources-workloads-namespace.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-node-cluster-rsrc-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-node-cluster-rsrc-use.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-node-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-node-prometheus.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-node-rsrc-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-node-rsrc-use.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-sre-red.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-sre-red.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-sre-slo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-sre-slo.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-dashboard-sre-use.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-dashboard-sre-use.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana-rbac.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafana.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafanadatasource-prometheus-istio-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafanadatasource-prometheus-istio-system.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/grafanadatasource-prometheus-openshift-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/grafanadatasource-prometheus-openshift-monitoring.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-citadel-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-citadel-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-galley-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-galley-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-istio-mesh-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-istio-mesh-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-istio-performance-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-istio-performance-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-istio-service-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-istio-service-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-istio-workload-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-istio-workload-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-mixer-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-mixer-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/istio-grafana-configuration-dashboards-pilot-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/istio-grafana-configuration-dashboards-pilot-dashboard.yaml -------------------------------------------------------------------------------- /grafana-sre/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/templates/secret.yaml -------------------------------------------------------------------------------- /grafana-sre/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/grafana-sre/values.yaml -------------------------------------------------------------------------------- /istio-prometheus-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/istio-prometheus-values.yaml -------------------------------------------------------------------------------- /locust/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/locust/locustfile.py -------------------------------------------------------------------------------- /locust/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/locust/values.yaml -------------------------------------------------------------------------------- /master-api-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/master-api-values.yaml -------------------------------------------------------------------------------- /platform-prometheus-values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prometheus-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-operator.yaml -------------------------------------------------------------------------------- /prometheus-sre/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/.helmignore -------------------------------------------------------------------------------- /prometheus-sre/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/Chart.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/_helpers.tpl -------------------------------------------------------------------------------- /prometheus-sre/templates/additional-scrape-config-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/additional-scrape-config-secret.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/alert-manager-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/alert-manager-rbac.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/alert-manager-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/alert-manager-secret.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/alert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/alert-manager.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/alertmanager-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/alertmanager-route.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/alertmanager-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/alertmanager-service-account.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/configmap-trusted-ca-bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/configmap-trusted-ca-bundle.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/prometheus-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/prometheus-rbac.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/prometheus-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/prometheus-route.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/prometheus-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/prometheus-secret.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/prometheus.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/secret-alertmanager-k8s-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/secret-alertmanager-k8s-proxy.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/secret-prometheus-k8s-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/secret-prometheus-k8s-proxy.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/service-account.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/service-alermanager-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/service-alermanager-k8s.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/service-prometheus-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/service-prometheus-k8s.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/servicemeshmember-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/servicemeshmember-default.yaml -------------------------------------------------------------------------------- /prometheus-sre/templates/serving-cert-ca-bundle-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/templates/serving-cert-ca-bundle-cm.yaml -------------------------------------------------------------------------------- /prometheus-sre/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/prometheus-sre/values.yaml -------------------------------------------------------------------------------- /sre-service-monitor-istio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor-istio/.helmignore -------------------------------------------------------------------------------- /sre-service-monitor-istio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor-istio/Chart.yaml -------------------------------------------------------------------------------- /sre-service-monitor-istio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor-istio/templates/_helpers.tpl -------------------------------------------------------------------------------- /sre-service-monitor-istio/templates/prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor-istio/templates/prometheus-rule.yaml -------------------------------------------------------------------------------- /sre-service-monitor-istio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor-istio/values.yaml -------------------------------------------------------------------------------- /sre-service-monitor/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor/.helmignore -------------------------------------------------------------------------------- /sre-service-monitor/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor/Chart.yaml -------------------------------------------------------------------------------- /sre-service-monitor/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor/templates/_helpers.tpl -------------------------------------------------------------------------------- /sre-service-monitor/templates/prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor/templates/prometheus-rule.yaml -------------------------------------------------------------------------------- /sre-service-monitor/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raffaelespazzoli/sre-monitoring-openshift/HEAD/sre-service-monitor/values.yaml --------------------------------------------------------------------------------