├── .github ├── review-assignment-config.yaml └── workflows │ ├── review-assignment.yaml │ ├── validate_alerts_format.yml │ └── validate_dashboards_format.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── alerts ├── active-directory │ ├── README.md │ ├── ldap-connections.v1.json │ ├── long-replication.v1.json │ └── metadata.yaml ├── activemq │ ├── README.md │ ├── activemq-dropped-connection.v1.json │ ├── activemq-high-disk-storage.v1.json │ ├── activemq-high-temp-storage.v1.json │ └── metadata.yaml ├── aerospike │ ├── README.md │ ├── aerospike-high-memory-utilization.v1.json │ ├── aerospike-high-namespace-disk-utilization.v1.json │ ├── aerospike-high-namespace-memory-utilization.v1.json │ └── metadata.yaml ├── airflow-gke │ ├── README.md │ ├── dag-import-errors.v1.json │ └── metadata.yaml ├── apache │ ├── README.md │ ├── high-request-rate.v1.json │ ├── high-server-error-rate.v1.json │ ├── low-request-rate.v1.json │ └── metadata.yaml ├── argo-server-gke │ ├── README.md │ ├── metadata.yaml │ └── workflow-errors.v1.json ├── cassandra │ ├── README.md │ ├── high-error-rate.v1.json │ ├── high-read-latency.v1.json │ ├── high-throughput.v1.json │ └── metadata.yaml ├── couchbase │ ├── README.md │ ├── high-memory-usage.v1.json │ ├── metadata.yaml │ ├── spiking-evictions.v1.json │ └── unrecoverable-oom-errors.v1.json ├── couchdb │ ├── README.md │ ├── couchdb-high-request-rate.v1.json │ ├── couchdb-high-server-error-rate.v1.json │ ├── couchdb-low-request-rate.v1.json │ └── metadata.yaml ├── elasticsearch-gke │ ├── README.md │ ├── high-jvm-memory-usage.v1.json │ ├── metadata.yaml │ ├── red-cluster-status.v1.json │ └── yellow-cluster-status.v1.json ├── elasticsearch │ ├── README.md │ ├── elasticsearch-high-jvm-memory-usage.v1.json │ ├── elasticsearch-red-cluster-status.v1.json │ ├── elasticsearch-yellow-cluster-status.v1.json │ └── metadata.yaml ├── etcd-gke │ ├── README.md │ ├── long-fsync-duration.v1.json │ ├── metadata.yaml │ └── rapid-leader-changes.v1.json ├── flink │ ├── README.md │ ├── flink-high job-restarts.v1.json │ ├── flink-high-failed-checkpoints.v1.json │ ├── flink-high-jvm-memory-non-heap-usage.v1.json │ ├── flink-high-jvm-memory-usage.v1.json │ └── metadata.yaml ├── google-application-integration │ ├── README.md │ ├── high-data-usage.v1.json │ ├── high-integration-execution-latency.v1.json │ ├── integration-execution-failure.v1.json │ ├── integration-execution-retry.v1.json │ ├── metadata.yaml │ └── multiple-task-suspension.v1.json ├── google-bigquery │ ├── background-metadata-cache-slot-usage.v1.json │ ├── background-metadata-cache-slot-usage.v2.json │ ├── column-metadata-index-percent-change.v1.json │ ├── metadata.yaml │ └── single-reservation-slot-usage.v1.json ├── google-cloud-agent-for-sap │ ├── location-constraint-detected.v1.json │ ├── metadata.yaml │ ├── pacemaker-resource-stopped.v1.json │ └── replication-not-in-sync.v1.json ├── google-cloud-alerting │ ├── README.md │ ├── entries-exceeds.v1.json │ ├── log-match-condition.v1.json │ ├── metadata.yaml │ ├── promql-policy.v1.json │ └── utilization-too-high.v1.json ├── google-cloud-chronicle │ ├── README.md │ ├── all-silent-forwarder-logtype-combinations-except-few-logtypes.v1.json │ ├── all-silent-forwarder-logtype-combinations.v1.json │ ├── forwarder-buffer-usage-more-than-threshold-with-filters.v1.json │ ├── ingestion-quota-limit-approaching.v1.json │ ├── ingestion-quota-limit-approaching.v2.json │ ├── ingestion-quota-rejects.v1.json │ ├── ingestion-quota-rejects.v2.json │ ├── metadata.yaml │ └── silent-forwarder.v1.json ├── google-cloud-deploy │ ├── README.md │ ├── metadata.yaml │ ├── release-render-failure-within-pipeline.v1.json │ ├── rollout-approval-required-within-pipeline.v1.json │ ├── rollout-canary-advance-required-within-pipeline.v1.json │ └── rollout-failure-within-pipeline.v1.json ├── google-cloud-redis │ ├── README.md │ ├── integrations-redis-engine-cpu-utilization-high.v1.json │ ├── integrations-standard-instance-failover.v1.json │ ├── integrations-system-memory-usage-ratio-high.v1.json │ ├── metadata.yaml │ ├── redis-engine-cpu-utilization-high.v1.json │ ├── standard-instance-failover.v1.json │ └── system-memory-usage-ratio-high.v1.json ├── google-cloud-retail │ ├── README.md │ ├── metadata.yaml │ └── unjoined-user-event-last-hour.v1.json ├── google-cloudsql │ ├── 1p-cloudsql-instance-in-failed-state.v1.json │ ├── 1p-postgresql-slow-transactions.v1.json │ ├── 1p-replication-in-error-state.v1.json │ ├── README.md │ └── metadata.yaml ├── google-dataproc │ ├── README.md │ ├── create-cluster-latency-too-high.v1.json │ ├── failed-job.v1.json │ ├── hdfs-capacity.v1.json │ ├── hdfs-running-datanodes-too-low.v1.json │ ├── long-running-job.v1.json │ ├── metadata.yaml │ ├── stale-cluster.v1.json │ ├── stale-job.v1.json │ └── yarn-pending-memory.v1.json ├── google-gce │ ├── README.md │ ├── cpu-utilization-too-high-within-vm.v1.json │ ├── cpu-utilization-too-high.v1.json │ ├── disk-utilization-too-high-within-vm.v1.json │ ├── disk-utilization-too-high.v1.json │ ├── host-error-log-detected-within-vm.v1.json │ ├── host-error-log-detected.v1.json │ ├── memory-utilization-too-high-within-vm.v1.json │ ├── memory-utilization-too-high.v1.json │ ├── metadata.yaml │ ├── reservation-utilization-too-high.v1.json │ └── reservation-utilization-too-low.v1.json ├── google-gke │ ├── README.md │ ├── cpu-limit-utilization-all-containers.v1.json │ ├── cpu-limit-utilization-containers-within-cluster.v1.json │ ├── cpu-limit-utilization-entire-workload.v1.json │ ├── cpu-limit-utilization-for-jobset.v1.json │ ├── cpu-request-utilization-entire-workload.v1.json │ ├── failedscheduling-log-event-within-cluster.v1.json │ ├── gke-ingress-latency-entire-workload.v1.json │ ├── gke-ingress-server-errors-entire-workload.v1.json │ ├── gpu-processing-utilization-for-jobset.v1.json │ ├── grpc-latency-entire-workload.v1.json │ ├── grpc-server-errors-entire-workload.v1.json │ ├── http-gmp-latency-entire-workload.v1.json │ ├── http-gmp-server-errors-entire-workload.v1.json │ ├── istio-gmp-latency-entire-workload.v1.json │ ├── istio-gmp-server-errors-entire-workload.v1.json │ ├── istio-latency-entire-workload.v1.json │ ├── istio-server-errors-entire-workload.v1.json │ ├── jobs-failure-for-jobset.v1.json │ ├── memory-limit-utilization-all-containers.v1.json │ ├── memory-limit-utilization-containers-within-cluster.v1.json │ ├── memory-limit-utilization-entire-workload.v1.json │ ├── memory-limit-utilization-for-jobset.v1.json │ ├── memory-request-utilization-entire-workload.v1.json │ ├── memory-request-utilization-for-jobset.v1.json │ ├── metadata.yaml │ ├── nginx-ingress-latency-entire-workload.v1.json │ ├── nginx-ingress-server-errors-entire-workload.v1.json │ ├── restarts-all-containers.v1.json │ ├── restarts-containers-within-cluster.v1.json │ ├── restarts-containers-within-workload.v1.json │ ├── tpu-tensorcore-utilization-for-jobset.v1.json │ ├── upgrade-notification-gke-security-bulletin-event.v1.json │ ├── upgrade-notification-upgrade-available-event.v1.json │ ├── upgrade-notification-upgrade-event.v1.json │ ├── upgrade-notification-upgrade-info-event-end-of-support.v1.json │ ├── upgrade-notification-upgrade-info-event-upgrade-lifecycle.v1.json │ ├── utilization-container-cpu-within-workload.v1.json │ └── utilization-container-memory-within-workload.v1.json ├── google-network-intelligence-center │ ├── README.md │ ├── interconnect-egress.v1.json │ ├── interconnect-ingress.v1.json │ ├── metadata.yaml │ ├── network-incident.v1.json │ ├── packet-loss-high.v1.json │ ├── packet-loss-high.v2.json │ ├── vpn-tunnel-bps.v1.json │ ├── vpn-tunnel-bps.v2.json │ ├── vpn-tunnel-pps.v1.json │ └── vpn-tunnel-pps.v2.json ├── google-quotas │ ├── README.md │ ├── all-adjustments-by-quota-adjuster.v1.json │ ├── exceeded-quota.v1.json │ ├── metadata.yaml │ ├── qa-scoped-limit-all-adjustments.v1.json │ ├── qa-scoped-limit-all-failures.v1.json │ ├── qa-scoped-limit-location-all-adjustments.v1.json │ ├── qa-scoped-limit-location-all-failures.v1.json │ ├── quota-adjuster-errors-and-failures.v1.json │ ├── quota-usage-mql.v1.json │ ├── quota-usage-promql.v1.json │ ├── single-allocation-quota.v1.json │ ├── single-daily-rate-quota.v1.json │ ├── single-per-minute-rate-quota.v1.json │ └── single-per-second-rate-quota.v1.json ├── google-vertex-ai │ ├── 429-out-of-capacity.v1.json │ ├── metadata.yaml │ ├── pt-utilization-100.v1.json │ ├── pt-utilization-80.v1.json │ └── pt-utilization-90.v1.json ├── google-workload-manager │ ├── README.md │ ├── metadata.yaml │ ├── run-evaluation.v1.json │ ├── sap-hana-availability-low.v1.json │ └── sap-hana-high-availability-low.v1.json ├── hadoop │ ├── README.md │ ├── hadoop-dead-data-nodes.v1.json │ ├── hadoop-low-available-capacity.v1.json │ ├── hadoop-volume-failure.v1.json │ └── metadata.yaml ├── haproxy-gke │ ├── README.md │ ├── frontend-sessions-near-limit.v1.json │ ├── metadata.yaml │ └── server-down.v1.json ├── hbase │ ├── README.md │ ├── authentication-errors.v1.json │ ├── metadata.yaml │ ├── server-down.v1.json │ └── slow-operations.v1.json ├── iis │ ├── README.md │ ├── high-connections.v1.json │ ├── long-request-queue.v1.json │ ├── metadata.yaml │ └── site-down.v1.json ├── istio-proxy-gke │ ├── README.md │ ├── degraded-endpoint.v1.json │ ├── high-request-duration.v1.json │ └── metadata.yaml ├── jenkins-gke │ ├── README.md │ ├── health-score-below-1.v1.json │ ├── metadata.yaml │ └── plugin-failure.v1.json ├── jetty │ ├── README.md │ ├── access_log_failures.v1.json │ ├── failed_config_parsing.v1.json │ ├── long_thread_queue.v1.json │ ├── metadata.yaml │ └── no_threads_available.v1.json ├── jvm │ ├── README.md │ ├── heap-memory-usage.v1.json │ ├── metadata.yaml │ └── thread-count.v1.json ├── kafka-gke │ ├── README.md │ ├── kafka-change-in-number-of-isrs.v1.json │ ├── kafka-under-replicated-partitions.v1.json │ └── metadata.yaml ├── kafka │ ├── README.md │ ├── kafka-high-failed-broker-request-rate.v1.json │ ├── kafka-offline-partition-alert.v1.json │ ├── kafka-under-replicated-partitions-alerts.v1.json │ └── metadata.yaml ├── kibana-gke │ ├── README.md │ ├── high-cpu-usage.v1.json │ ├── high-memory-usage.v1.json │ └── metadata.yaml ├── kube-state-gke │ ├── README.md │ ├── job-failure.v1.json │ ├── metadata.yaml │ ├── pod-disruption-budget-exceeded.v1.json │ └── volume-reaching-capacity.v1.json ├── memcached-gke │ ├── README.md │ ├── high-evictions.v1.json │ ├── metadata.yaml │ └── no-connections.v1.json ├── memcached │ ├── README.md │ ├── high-cpu-usage.v1.json │ ├── high-evictions.v1.json │ ├── metadata.yaml │ └── no-connections.v1.json ├── mongodb-gke │ ├── README.md │ ├── connection-near-max.v1.json │ └── metadata.yaml ├── mongodb │ ├── README.md │ ├── connection-near-max.v1.json │ ├── high-cpu-utilization.v1.json │ ├── high-disk-utilization.v1.json │ └── metadata.yaml ├── mssql-server │ ├── README.md │ ├── connections-near-limit.v1.json │ ├── high-lock-wait-rates.v1.json │ ├── high-page-split-rate.v1.json │ └── metadata.yaml ├── mysql-gke │ ├── README.md │ ├── connection-errors.v1.json │ └── metadata.yaml ├── nginx-gke │ ├── README.md │ ├── connections-dropped.v1.json │ ├── high-request-rate.v1.json │ ├── low-request-rate.v1.json │ └── metadata.yaml ├── nginx-ingress-gke │ ├── README.md │ ├── connections-dropped.v1.json │ ├── high-request-rate.v1.json │ ├── low-request-rate.v1.json │ └── metadata.yaml ├── nginx │ ├── README.md │ ├── connections-dropped.v1.json │ ├── high-request-rate.v1.json │ ├── high-server-error-rate.v1.json │ ├── low-request-rate.v1.json │ └── metadata.yaml ├── node-exporter-gke │ ├── README.md │ ├── high-cpu-usage.v1.json │ ├── low-available-memory.v1.json │ ├── low-filesystem-space.v1.json │ └── metadata.yaml ├── oracledb │ ├── README.md │ ├── high-process-utilization.v1.json │ ├── high-session-utilization.v1.json │ ├── high-tablespace-utilization.v1.json │ └── metadata.yaml ├── postgres-gke │ ├── README.md │ ├── database-size-too-large.v1.json │ └── metadata.yaml ├── postgresql │ ├── README.md │ ├── high-connection-utilization.v1.json │ ├── high-cpu-utilization.v1.json │ ├── high-db-size.v1.json │ ├── max-writes.v1.json │ └── metadata.yaml ├── rabbitmq-gke │ ├── README.md │ ├── metadata.yaml │ ├── rabbitmq-high-unacknowledged-messages.v1.json │ ├── rabbitmq-high-unroutable-messages.v1.json │ └── rabbitmq-low-deliverable-messages.v1.json ├── rabbitmq │ ├── README.md │ ├── metadata.yaml │ ├── rabbitmq-high-unacknowledged-messages.v1.json │ ├── rabbitmq-high-unroutable-messages.v1.json │ └── rabbitmq-low-deliverable-messages alert.v1.json ├── redis-gke │ ├── README.md │ ├── evicted-keys.v1.json │ ├── fragmentation-ratio.v1.json │ └── metadata.yaml ├── redis │ ├── README.md │ ├── evicted-keys.v1.json │ ├── fragmentation-ratio.v1.json │ └── metadata.yaml ├── saphana │ ├── README.md │ ├── metadata.yaml │ ├── saphana-high-priority-alert.v1.json │ ├── saphana-old-backups-alert.v1.json │ └── saphana-server-down.v1.json ├── scylla-gke │ ├── README.md │ ├── high-compaction-load.v1.json │ ├── high-prepared-statement-eviction-rate.v1.json │ └── metadata.yaml ├── solr │ ├── README.md │ ├── high-cache-evictions.v1.json │ ├── high-request-count.v1.json │ ├── high-request-errors.v1.json │ └── metadata.yaml ├── tomcat │ ├── README.md │ ├── metadata.yaml │ ├── tomcat-high-request-rate.v1.json │ ├── tomcat-high-server-error-rate.v1.json │ └── tomcat-low-request-rate.v1.json ├── varnish │ ├── README.md │ ├── backend-connection-failure.v1.json │ ├── high-cache-evictions.v1.json │ ├── high-server-limit.v1.json │ ├── metadata.yaml │ └── sessions-dropped.v1.json ├── vault │ ├── README.md │ ├── metadata.yaml │ ├── vault-audit-failure-alert.v1.json │ ├── vault-token-creation-alert.v1.json │ └── vault-token-renew-revoke-alert.v1.json ├── velero-gke │ ├── README.md │ ├── backup-failure.v1.json │ ├── metadata.yaml │ ├── partial-backup-failure.v1.json │ └── restore-failure.v1.json ├── wildfly │ ├── README.md │ ├── jdbc-connections-maximum.v1.json │ ├── metadata.yaml │ ├── server-errors.v1.json │ └── waiting-requests.v1.json ├── zookeeper-gke │ ├── README.md │ ├── high-average-latency.v1.json │ ├── high-fsync-duration.v1.json │ ├── low-free-file-descriptors.v1.json │ └── metadata.yaml └── zookeeper │ ├── README.md │ ├── high-average-latency.v1.json │ ├── high-fsync-duration.v1.json │ ├── low-open-file-descriptors.v1.json │ └── metadata.yaml ├── dashboards ├── active-directory-ds │ ├── README.md │ ├── active-directory-domain-services-gce-overview.01.png │ ├── active-directory-domain-services-gce-overview.02.png │ ├── active-directory-domain-services-gce-overview.json │ ├── active-directory-replication-agent-gce-overview.01.png │ ├── active-directory-replication-agent-gce-overview.02.png │ ├── active-directory-replication-agent-gce-overview.03.png │ ├── active-directory-replication-agent-gce-overview.json │ └── metadata.yaml ├── activemq │ ├── README.md │ ├── activemq-gce-overview.01.png │ ├── activemq-gce-overview.02.png │ ├── activemq-gce-overview.json │ ├── activemq-prometheus-overview.01.png │ ├── activemq-prometheus-overview.02.png │ ├── activemq-prometheus-overview.json │ └── metadata.yaml ├── aerospike │ ├── README.md │ ├── aerospike-gce-overview.json │ ├── aerospike-gce-overview.png │ ├── aerospike-prometheus-overview.json │ ├── aerospike-prometheus-overview.png │ └── metadata.yaml ├── anthos-config-management │ ├── ACM-ConfigSync.json │ ├── ACM-ConfigSync.png │ ├── ACM-PolicyController.json │ ├── ACM-PolicyController.png │ ├── README.md │ └── metadata.yaml ├── apache-airflow │ ├── README.md │ ├── apache-airflow-prometheus.json │ ├── apache-airflow-prometheus.png │ └── metadata.yaml ├── apache │ ├── README.md │ ├── apache-gce-overview.json │ ├── apache-gce-overview.png │ ├── apache-prometheus-overview.01.png │ ├── apache-prometheus-overview.02.png │ ├── apache-prometheus-overview.json │ └── metadata.yaml ├── apigee │ ├── README.md │ ├── hybrid-cassandra-monitoring.json │ ├── hybrid-cassandra-monitoring.png │ ├── hybrid-infrastructure-monitoring.json │ ├── hybrid-infrastructure-monitoring.png │ └── metadata.yaml ├── argo-workflows │ ├── README.md │ ├── argo-workflows-prometheus.json │ ├── argo-workflows-prometheus.png │ └── metadata.yaml ├── bigdata │ ├── README.md │ ├── bigquery-monitoring.json │ ├── dataproc-job-monitoring.json │ ├── dataproc-job-monitoring.png │ ├── dataprocessing-monitoring.json │ └── metadata.yaml ├── bindplane │ ├── README.md │ ├── host-monitoring.json │ └── metadata.yaml ├── cassandra │ ├── README.md │ ├── cassandra-gce-overview.json │ ├── cassandra-gce-overview.png │ └── metadata.yaml ├── consul │ ├── README.md │ ├── consul-prometheus.json │ ├── consul-prometheus.png │ └── metadata.yaml ├── couchbase │ ├── README.md │ ├── gce-overview.json │ ├── gce-overview.png │ └── metadata.yaml ├── couchdb │ ├── README.md │ ├── couchdb-gce-overview.01.png │ ├── couchdb-gce-overview.02.png │ ├── couchdb-gce-overview.json │ ├── couchdb-prometheus-overview.json │ ├── couchdb-prometheus-overview.png │ └── metadata.yaml ├── dataflow │ ├── README.md │ ├── dataflow-job.01.png │ ├── dataflow-job.02.png │ ├── dataflow-job.03.png │ ├── dataflow-job.json │ ├── find-dataflow-job-metrics.png │ └── metadata.yaml ├── elasticsearch │ ├── README.md │ ├── elasticsearch-cluster-gce-overview.json │ ├── elasticsearch-cluster-gce-overview.png │ ├── elasticsearch-node-gce-advance-overview.01.png │ ├── elasticsearch-node-gce-advance-overview.02.png │ ├── elasticsearch-node-gce-advance-overview.03.png │ ├── elasticsearch-node-gce-advance-overview.json │ ├── elasticsearch-node-gce-overview.01.png │ ├── elasticsearch-node-gce-overview.02.png │ ├── elasticsearch-node-gce-overview.03.png │ ├── elasticsearch-node-gce-overview.json │ ├── elasticsearch-prometheus.json │ ├── elasticsearch-prometheus.png │ └── metadata.yaml ├── etcd │ ├── README.md │ ├── etcd-prometheus.01.png │ ├── etcd-prometheus.02.png │ ├── etcd-prometheus.json │ └── metadata.yaml ├── flink │ ├── README.md │ ├── flink-gce-jobs-overview.json │ ├── flink-gce-jobs-overview.png │ ├── flink-gce-overview.01.png │ ├── flink-gce-overview.02.png │ ├── flink-gce-overview.03.png │ ├── flink-gce-overview.json │ ├── flink-job-manager-prometheus.01.png │ ├── flink-job-manager-prometheus.02.png │ ├── flink-job-manager-prometheus.03.png │ ├── flink-job-manager-prometheus.json │ ├── flink-task-manager-prometheus.01.png │ ├── flink-task-manager-prometheus.02.png │ ├── flink-task-manager-prometheus.03.png │ ├── flink-task-manager-prometheus.json │ └── metadata.yaml ├── gateway-api-inference-extension │ ├── README.md │ ├── inference-extension-prometheus-2.json │ ├── inference-extension-prometheus.01.png │ ├── inference-extension-prometheus.02.png │ ├── inference-extension-prometheus.03.png │ ├── inference-extension-prometheus.04.png │ ├── inference-extension-prometheus.05.png │ ├── inference-extension-prometheus.06.png │ ├── inference-extension-prometheus.07.png │ ├── inference-extension-prometheus.json │ └── metadata.yaml ├── gemini-cli │ ├── README.md │ ├── gemini-cli-monitoring.json │ ├── gemini-cli-monitoring.png │ └── metadata.yaml ├── golang │ ├── README.md │ ├── go-runtime-view-prometheus.01.png │ ├── go-runtime-view-prometheus.02.png │ ├── go-runtime-view-prometheus.json │ └── metadata.yaml ├── google-anthos │ ├── README.md │ ├── anthos-cluster-control-plane-uptime.01.png │ ├── anthos-cluster-control-plane-uptime.02.png │ ├── anthos-cluster-control-plane-uptime.json │ ├── anthos-cluster-kubevirt-vm-status.01.png │ ├── anthos-cluster-kubevirt-vm-status.02.png │ ├── anthos-cluster-kubevirt-vm-status.03.png │ ├── anthos-cluster-kubevirt-vm-status.04.png │ ├── anthos-cluster-kubevirt-vm-status.json │ ├── anthos-cluster-node-status.01.png │ ├── anthos-cluster-node-status.02.png │ ├── anthos-cluster-node-status.json │ ├── anthos-cluster-on-vmware-vm-status.json │ ├── anthos-cluster-on-vmware-vm-status.png │ ├── anthos-cluster-pod-status.01.png │ ├── anthos-cluster-pod-status.02.png │ ├── anthos-cluster-pod-status.03.png │ ├── anthos-cluster-pod-status.json │ ├── anthos-cluster-utilization-metering.json │ ├── anthos-cluster-utilization-metering.png │ ├── deprecated │ │ ├── Anthos-cluster-control-plane-uptime.json │ │ ├── Anthos-cluster-control-plane-uptime.png │ │ ├── Anthos-cluster-node-status.01.png │ │ ├── Anthos-cluster-node-status.02.png │ │ ├── Anthos-cluster-node-status.json │ │ ├── Anthos-cluster-pod-status.01.png │ │ ├── Anthos-cluster-pod-status.02.png │ │ ├── Anthos-cluster-pod-status.03.png │ │ ├── Anthos-cluster-pod-status.json │ │ ├── Anthos-utilization-metering.json │ │ ├── Anthos-utilization-metering.png │ │ ├── GKE-on-prem-control-plane-uptime.json │ │ ├── GKE-on-prem-control-plane-uptime.png │ │ ├── GKE-on-prem-node-status.json │ │ ├── GKE-on-prem-node-status.png │ │ ├── GKE-on-prem-pod-status.json │ │ ├── GKE-on-prem-pod-status.png │ │ ├── GKE-on-prem-vSphere-vm-health.json │ │ ├── GKE-on-prem-vSphere-vm-health.png │ │ ├── README.md │ │ └── metadata.yaml │ └── metadata.yaml ├── google-app-engine │ ├── README.md │ ├── gae-app.01.png │ ├── gae-app.02.png │ ├── gae-app.03.png │ ├── gae-app.04.png │ ├── gae-app.json │ └── metadata.yaml ├── google-application-integration │ ├── README.md │ ├── data-processed.json │ ├── data-processed.png │ ├── integration-executions.01.png │ ├── integration-executions.02.png │ ├── integration-executions.json │ ├── integration-task-duration.01.png │ ├── integration-task-duration.02.png │ ├── integration-task-duration.json │ ├── metadata.yaml │ ├── step-executions.01.png │ ├── step-executions.02.png │ ├── step-executions.03.png │ └── step-executions.json ├── google-backupdr │ ├── README.md │ ├── backupdr-monitoring.json │ ├── backupdr-monitoring.png │ └── metadata.yaml ├── google-bigquery │ ├── bigquery-continuous-query.01.png │ ├── bigquery-continuous-query.02.png │ ├── bigquery-continuous-query.json │ ├── bigquery.01.png │ ├── bigquery.02.png │ ├── bigquery.json │ ├── bigquery.png │ └── metadata.yaml ├── google-blockchain-node-engine │ ├── README.md │ ├── blockchain_node_engine_dashboard.json │ ├── blockchain_node_engine_dashboard.png │ └── metadata.yaml ├── google-cloud-agent-for-sap │ ├── README.md │ ├── agent-for-sap-hana-availability-monitoring.01.png │ ├── agent-for-sap-hana-availability-monitoring.json │ ├── agent-for-sap-hana-detailed-overview.01.png │ ├── agent-for-sap-hana-detailed-overview.02.png │ ├── agent-for-sap-hana-detailed-overview.03.png │ ├── agent-for-sap-hana-detailed-overview.json │ ├── agent-for-sap-hana-overview.01.png │ ├── agent-for-sap-hana-overview.json │ ├── agent-for-sap-hana-performance.01.png │ ├── agent-for-sap-hana-performance.02.png │ ├── agent-for-sap-hana-performance.03.png │ ├── agent-for-sap-hana-performance.json │ ├── agent-for-sap-hana-raw-metrics.01.png │ ├── agent-for-sap-hana-raw-metrics.json │ ├── agent-for-sap-netweaver-availability-monitoring.01.png │ ├── agent-for-sap-netweaver-availability-monitoring.json │ └── metadata.yaml ├── google-cloud-armor │ ├── README.md │ ├── cloud-armor-policies-overview.01.png │ ├── cloud-armor-policies-overview.02.png │ ├── cloud-armor-policies-overview.03.png │ ├── cloud-armor-policies-overview.json │ └── metadata.yaml ├── google-cloud-composer │ ├── README.md │ ├── cloud-composer-monitoring.json │ ├── cloud-composer-monitoring.png │ └── metadata.yaml ├── google-cloud-data-fusion │ ├── README.md │ ├── cloud-data-fusion-logging.json │ ├── cloud-data-fusion-logging.png │ ├── cloud-data-fusion-monitoring.01.png │ ├── cloud-data-fusion-monitoring.02.png │ ├── cloud-data-fusion-monitoring.03.png │ ├── cloud-data-fusion-monitoring.04.png │ ├── cloud-data-fusion-monitoring.05.png │ ├── cloud-data-fusion-monitoring.json │ └── metadata.yaml ├── google-cloud-functions │ ├── README.md │ ├── cloudfunctions-monitoring.01.png │ ├── cloudfunctions-monitoring.02.png │ ├── cloudfunctions-monitoring.json │ └── metadata.yaml ├── google-cloud-run │ ├── README.md │ ├── cloudrun-monitoring.01.png │ ├── cloudrun-monitoring.02.png │ ├── cloudrun-monitoring.03.png │ ├── cloudrun-monitoring.json │ └── metadata.yaml ├── google-cloud-storage │ ├── README.md │ ├── cloud-storage.01.png │ ├── cloud-storage.02.png │ ├── cloud-storage.03.png │ ├── cloud-storage.json │ └── metadata.yaml ├── google-cloud-tasks │ ├── cloud-tasks.json │ ├── cloud-tasks.png │ └── metadata.yaml ├── google-cloud-vpn │ ├── README.md │ ├── metadata.yaml │ ├── vpn.01.png │ ├── vpn.02.png │ └── vpn.json ├── google-cloudsql │ ├── README.md │ ├── cloudsql-general.01.png │ ├── cloudsql-general.02.png │ ├── cloudsql-general.json │ ├── cloudsql-replica.01.png │ ├── cloudsql-replica.02.png │ ├── cloudsql-replica.json │ ├── cloudsql-transactions.01.png │ ├── cloudsql-transactions.02.png │ ├── cloudsql-transactions.json │ └── metadata.yaml ├── google-compute-disk │ ├── compute-disk.json │ ├── compute-disk.png │ └── metadata.yaml ├── google-compute-engine │ ├── README.md │ ├── autoscaler-monitoring.json │ ├── autoscaler-monitoring.png │ ├── gce-vm-instance-monitoring.01.png │ ├── gce-vm-instance-monitoring.02.png │ ├── gce-vm-instance-monitoring.03.png │ ├── gce-vm-instance-monitoring.json │ ├── metadata.yaml │ ├── reservations-monitoring.01.png │ ├── reservations-monitoring.02.png │ ├── reservations-monitoring.json │ ├── vm-lifecycle-dashboard.json │ └── vm-lifecycle-dashboard.png ├── google-dataflow │ ├── README.md │ ├── dataflow-job.01.png │ ├── dataflow-job.02.png │ ├── dataflow-job.json │ └── metadata.yaml ├── google-dns-query │ ├── dns-query.json │ ├── dns-query.png │ └── metadata.yaml ├── google-filestore │ ├── README.md │ ├── filestore_dashboard.json │ ├── filestore_dashboard.png │ └── metadata.yaml ├── google-gemini-code-assist │ ├── README.md │ ├── gemini-code-assist-overview-from-metadata-logs-01.png │ ├── gemini-code-assist-overview-from-metadata-logs-02.png │ ├── gemini-code-assist-overview-from-metadata-logs.json │ ├── gemini-code-assist-overview-from-metadata-logs.png │ └── metadata.yaml ├── google-home-analytics │ ├── README.md │ ├── google-home-analytics.01.png │ ├── google-home-analytics.json │ ├── google-home-camera-analytics.01.png │ ├── google-home-camera-analytics.json │ ├── google-home-cloud-analytics.01.png │ ├── google-home-cloud-analytics.02.png │ ├── google-home-cloud-analytics.json │ ├── google-home-local-analytics.01.png │ ├── google-home-local-analytics.json │ ├── google-home-matter-analytics.01.png │ ├── google-home-matter-analytics.json │ └── metadata.yaml ├── google-immersive-stream │ ├── README.md │ ├── immersive-stream.01.png │ ├── immersive-stream.02.png │ ├── immersive-stream.json │ └── metadata.yaml ├── google-infrastructure-summary │ ├── infrastructure-summary.01.png │ ├── infrastructure-summary.02.png │ ├── infrastructure-summary.json │ └── metadata.yaml ├── google-internal-tcp-lb-rule │ ├── internal-tcp-lb-rule.01.png │ ├── internal-tcp-lb-rule.02.png │ ├── internal-tcp-lb-rule.json │ └── metadata.yaml ├── google-kubernetes-engine-enterprise │ ├── README.md │ ├── gke-enterprise-cluster-observability-cpu.01.png │ ├── gke-enterprise-cluster-observability-cpu.02.png │ ├── gke-enterprise-cluster-observability-cpu.json │ ├── gke-enterprise-cluster-observability-kubernetes-events.json │ ├── gke-enterprise-cluster-observability-kubernetes-events.png │ ├── gke-enterprise-cluster-observability-memory.01.png │ ├── gke-enterprise-cluster-observability-memory.02.png │ ├── gke-enterprise-cluster-observability-memory.json │ ├── gke-enterprise-cluster-observability-overview.json │ ├── gke-enterprise-cluster-observability-overview.png │ ├── gke-enterprise-namespace-observability-cpu.json │ ├── gke-enterprise-namespace-observability-cpu.png │ ├── gke-enterprise-namespace-observability-kubernetes-events.json │ ├── gke-enterprise-namespace-observability-kubernetes-events.png │ ├── gke-enterprise-namespace-observability-memory.json │ ├── gke-enterprise-namespace-observability-memory.png │ ├── gke-enterprise-namespace-observability-overview.json │ ├── gke-enterprise-namespace-observability-overview.png │ ├── gke-enterprise-project-observability-cpu.01.png │ ├── gke-enterprise-project-observability-cpu.02.png │ ├── gke-enterprise-project-observability-cpu.json │ ├── gke-enterprise-project-observability-kubernetes-events.json │ ├── gke-enterprise-project-observability-kubernetes-events.png │ ├── gke-enterprise-project-observability-memory.01.png │ ├── gke-enterprise-project-observability-memory.02.png │ ├── gke-enterprise-project-observability-memory.json │ ├── gke-enterprise-project-observability-overview.json │ ├── gke-enterprise-project-observability-overview.png │ └── metadata.yaml ├── google-kubernetes-engine │ ├── README.md │ ├── gke-active-idle-clusters.json │ ├── gke-active-idle-clusters.png │ ├── gke-cluster-monitoring.01.png │ ├── gke-cluster-monitoring.02.png │ ├── gke-cluster-monitoring.03.png │ ├── gke-cluster-monitoring.04.png │ ├── gke-cluster-monitoring.05.png │ ├── gke-cluster-monitoring.json │ ├── gke-compute-resources-cluster-view.01.png │ ├── gke-compute-resources-cluster-view.02.png │ ├── gke-compute-resources-cluster-view.03.png │ ├── gke-compute-resources-cluster-view.json │ ├── gke-compute-resources-node-view.01.png │ ├── gke-compute-resources-node-view.02.png │ ├── gke-compute-resources-node-view.03.png │ ├── gke-compute-resources-node-view.json │ ├── gke-compute-resources-workload-view.01.png │ ├── gke-compute-resources-workload-view.02.png │ ├── gke-compute-resources-workload-view.03.png │ ├── gke-compute-resources-workload-view.json │ ├── gke-dpv2-observability-cluster-flows-overview.json │ ├── gke-dpv2-observability-cluster-flows-overview.png │ ├── gke-dpv2-observability-drilldown-view.json │ ├── gke-dpv2-observability-drilldown-view.png │ ├── gke-nodes-pods-cluster-view.01.png │ ├── gke-nodes-pods-cluster-view.02.png │ ├── gke-nodes-pods-cluster-view.json │ ├── gke-optimization-signals.json │ ├── gke-optimization-signals.png │ ├── gke-tpu-node-pool-status.json │ ├── gke-tpu-node-pool-status.png │ ├── gke-workloads-at-risk.01.png │ ├── gke-workloads-at-risk.02.png │ ├── gke-workloads-at-risk.json │ └── metadata.yaml ├── google-microservices │ ├── README.md │ ├── metadata.yaml │ ├── microservices-grpc-monitoring-gce.01.png │ ├── microservices-grpc-monitoring-gce.02.png │ ├── microservices-grpc-monitoring-gce.03.png │ ├── microservices-grpc-monitoring-gce.04.png │ ├── microservices-grpc-monitoring-gce.json │ ├── microservices-grpc-monitoring-gke.01.png │ ├── microservices-grpc-monitoring-gke.02.png │ ├── microservices-grpc-monitoring-gke.03.png │ ├── microservices-grpc-monitoring-gke.04.png │ └── microservices-grpc-monitoring-gke.json ├── google-network-lb-rule │ ├── metadata.yaml │ ├── network-lb-rule.01.png │ ├── network-lb-rule.02.png │ ├── network-lb-rule.03.png │ └── network-lb-rule.json ├── google-pub-sub │ ├── README.md │ ├── metadata.yaml │ ├── pub-sub-topic.01.png │ ├── pub-sub-topic.02.png │ ├── pub-sub-topic.03.png │ └── pub-sub-topic.json ├── google-recaptcha │ ├── README.md │ ├── metadata.yaml │ ├── recaptcha-key.01.png │ ├── recaptcha-key.02.png │ └── recaptcha-key.json ├── google-spanner │ ├── README.md │ ├── metadata.yaml │ ├── spanner.json │ └── spanner.png ├── google-tcp-ssl-proxy-rule │ ├── metadata.yaml │ ├── tcp-ssl-proxy-rule.01.png │ ├── tcp-ssl-proxy-rule.02.png │ └── tcp-ssl-proxy-rule.json ├── google-vertex-ai │ ├── README.md │ ├── metadata.yaml │ ├── vertex-ai-agent-engine.json │ ├── vertex-ai-agent-engine.png │ ├── vertex-ai-custom-training.01.png │ ├── vertex-ai-custom-training.02.png │ ├── vertex-ai-custom-training.03.png │ ├── vertex-ai-custom-training.json │ ├── vertex-ai-endpoints.01.png │ ├── vertex-ai-endpoints.02.png │ ├── vertex-ai-endpoints.json │ ├── vertex-ai-model-garden.01.png │ ├── vertex-ai-model-garden.02.png │ ├── vertex-ai-model-garden.03.png │ ├── vertex-ai-model-garden.json │ ├── vertex-ai-provisioned-throughput.json │ └── vertex-ai-provisioned-throughput.png ├── hadoop │ ├── README.md │ ├── hadoop-gce-overview.01.png │ ├── hadoop-gce-overview.02.png │ ├── hadoop-gce-overview.json │ ├── hadoop-prometheus-overview.01.png │ ├── hadoop-prometheus-overview.02.png │ ├── hadoop-prometheus-overview.json │ └── metadata.yaml ├── haproxy │ ├── README.md │ ├── haproxy-prometheus.01.png │ ├── haproxy-prometheus.02.png │ ├── haproxy-prometheus.json │ └── metadata.yaml ├── hbase │ ├── README.md │ ├── hbase-gce-operation-overview.01.png │ ├── hbase-gce-operation-overview.02.png │ ├── hbase-gce-operation-overview.json │ ├── hbase-gce-overview.json │ ├── hbase-gce-overview.png │ ├── hbase-prometheus-overview.01.png │ ├── hbase-prometheus-overview.02.png │ ├── hbase-prometheus-overview.json │ ├── hbase-region-server-operations-prometheus-overview.01.png │ ├── hbase-region-server-operations-prometheus-overview.02.png │ ├── hbase-region-server-operations-prometheus-overview.03.png │ ├── hbase-region-server-operations-prometheus-overview.json │ └── metadata.yaml ├── iis │ ├── README.md │ ├── iis-gce-overview.01.png │ ├── iis-gce-overview.02.png │ ├── iis-gce-overview.03.png │ ├── iis-gce-overview.json │ └── metadata.yaml ├── ingress-nginx │ ├── README.md │ ├── metadata.yaml │ ├── nginx-ingress-prometheus.json │ └── nginx-ingress-prometheus.png ├── istio │ ├── README.md │ ├── istio-envoy-prometheus.json │ ├── istio-envoy-prometheus.png │ └── metadata.yaml ├── jenkins │ ├── README.md │ ├── jenkins-prometheus.json │ ├── jenkins-prometheus.png │ └── metadata.yaml ├── jetstream │ ├── README.md │ ├── jetstream-prometheus.01.png │ ├── jetstream-prometheus.02.png │ ├── jetstream-prometheus.json │ └── metadata.yaml ├── jetty │ ├── README.md │ ├── jetty-gce-overview.01.png │ ├── jetty-gce-overview.02.png │ ├── jetty-gce-overview.json │ ├── jetty-prometheus-overview.json │ ├── jetty-prometheus-overview.png │ └── metadata.yaml ├── jvm │ ├── README.md │ ├── jvm-prometheus-overview.json │ ├── jvm-prometheus-overview.png │ ├── metadata.yaml │ ├── overview.json │ └── overview.png ├── kafka │ ├── README.md │ ├── kafka-gce-overview.01.png │ ├── kafka-gce-overview.02.png │ ├── kafka-gce-overview.json │ ├── kafka-prometheus.json │ ├── kafka-prometheus.png │ └── metadata.yaml ├── kibana │ ├── README.md │ ├── kibana-prometheus.json │ ├── kibana-prometheus.png │ └── metadata.yaml ├── kuberay │ ├── README.md │ ├── metadata.yaml │ ├── ray-overview.json │ └── ray-overview.png ├── kubernetes │ ├── README.md │ ├── k8s-cluster-prometheus.json │ ├── k8s-cluster-prometheus.png │ ├── k8s-overview-prometheus.01.png │ ├── k8s-overview-prometheus.02.png │ ├── k8s-overview-prometheus.03.png │ ├── k8s-overview-prometheus.json │ ├── k8s-pod-prometheus.json │ ├── k8s-pod-prometheus.png │ └── metadata.yaml ├── llm-d │ ├── llm-d-01.png │ ├── llm-d-02.png │ ├── llm-d-03.png │ ├── llm-d-04.png │ ├── llm-d-05.png │ ├── llm-d-06.png │ ├── llm-d-dashboard.json │ └── metadata.yaml ├── logging │ ├── README.md │ ├── cloudsql-usage.json │ ├── cloudsql-usage.png │ ├── dataflow-usage.json │ ├── dataflow-usage.png │ ├── gce-usage.json │ ├── gce-usage.png │ ├── gke-system-usage.json │ ├── gke-system-usage.png │ ├── kubernetes-usage.json │ ├── kubernetes-usage.png │ ├── management.json │ ├── management.png │ └── metadata.yaml ├── memcached │ ├── README.md │ ├── memcached-gce-overview.01.png │ ├── memcached-gce-overview.02.png │ ├── memcached-gce-overview.json │ ├── memcached-prometheus.json │ ├── memcached-prometheus.png │ └── metadata.yaml ├── microservices │ ├── README.md │ ├── cart-service-monitoring.json │ ├── metadata.yaml │ ├── micro-service-monitoring.json │ └── usecase-payment-monitoring.json ├── mongodb │ ├── README.md │ ├── deprecated │ │ ├── README.md │ │ ├── overview.json │ │ └── overview.png │ ├── metadata.yaml │ ├── mongodb-gce-overview.01.png │ ├── mongodb-gce-overview.02.png │ ├── mongodb-gce-overview.03.png │ ├── mongodb-gce-overview.json │ ├── mongodb-prometheus.01.png │ ├── mongodb-prometheus.02.png │ └── mongodb-prometheus.json ├── mssql-server │ ├── README.md │ ├── metadata.yaml │ ├── sqlserver-gce-overview.01.png │ ├── sqlserver-gce-overview.02.png │ ├── sqlserver-gce-overview.json │ ├── sqlserver-transaction-logs.01.png │ ├── sqlserver-transaction-logs.02.png │ └── sqlserver-transaction-logs.json ├── multicloud-amazon-ec2 │ ├── README.md │ ├── failed-status-checks.json │ ├── failed-status-checks.png │ ├── metadata.yaml │ ├── overview.json │ └── overview.png ├── multicloud-azure-container-service │ ├── README.md │ ├── cluster-overview.json │ ├── cluster-overview.png │ └── metadata.yaml ├── multicloud-azure-databases │ ├── README.md │ ├── databases.json │ ├── databases.png │ └── metadata.yaml ├── multicloud-azure-virtual-machine │ ├── README.md │ ├── metadata.yaml │ ├── os.json │ ├── os.png │ ├── overview.json │ └── overview.png ├── mysql │ ├── README.md │ ├── metadata.yaml │ ├── mysql-prometheus.json │ ├── mysql-prometheus.png │ ├── overview.01.png │ ├── overview.02.png │ ├── overview.03.png │ └── overview.json ├── networking │ ├── README.md │ ├── cloud-cdn-monitoring.json │ ├── cloud-cdn-monitoring.png │ ├── clouddns-monitoring.json │ ├── cloudvpn-monitoring.json │ ├── firewall-insight-monitoring.json │ ├── gce-network-monitoring.json │ ├── https-lb-backend-services-monitoring.json │ ├── https-loadbalancer-monitoring.json │ ├── metadata.yaml │ ├── network-tcp-loadbalancer-monitoring.json │ ├── network-udp-loadbalancer-monitoring.json │ ├── tcp-ssl-loadbalancer-monitoring.json │ ├── vpc-connector-access-monitoring.json │ └── vpc-flow-logs-monitoring.json ├── nginx │ ├── README.md │ ├── metadata.yaml │ ├── nginx-prometheus.json │ ├── nginx-prometheus.png │ ├── overview.json │ └── overview.png ├── nvidia-gpu │ ├── README.md │ ├── metadata.yaml │ ├── nvidia-dcgm-prometheus.01.png │ ├── nvidia-dcgm-prometheus.02.png │ ├── nvidia-dcgm-prometheus.03.png │ ├── nvidia-dcgm-prometheus.json │ ├── nvidia-dcgm.01.png │ ├── nvidia-dcgm.02.png │ ├── nvidia-dcgm.json │ ├── nvidia-overview.01.png │ ├── nvidia-overview.02.png │ ├── nvidia-overview.03.png │ ├── nvidia-overview.04.png │ ├── nvidia-overview.json │ ├── nvidia-triton-prometheus.01.png │ ├── nvidia-triton-prometheus.02.png │ └── nvidia-triton-prometheus.json ├── opentelemetry-collector │ ├── README.md │ ├── metadata.yaml │ ├── opentelemetry-collector.json │ └── opentelemetry-collector.png ├── oracledb │ ├── README.md │ ├── metadata.yaml │ ├── oracledb-gce-overview.01.png │ ├── oracledb-gce-overview.02.png │ └── oracledb-gce-overview.json ├── postgresql │ ├── README.md │ ├── metadata.yaml │ ├── postgresql-gce-overview.01.png │ ├── postgresql-gce-overview.02.png │ ├── postgresql-gce-overview.json │ ├── postgresql-prometheus.01.png │ ├── postgresql-prometheus.02.png │ └── postgresql-prometheus.json ├── rabbitmq │ ├── README.md │ ├── metadata.yaml │ ├── rabbitmq-gce-overview.01.png │ ├── rabbitmq-gce-overview.02.png │ ├── rabbitmq-gce-overview.json │ ├── rabbitmq-prometheus.01.png │ ├── rabbitmq-prometheus.02.png │ └── rabbitmq-prometheus.json ├── redis │ ├── README.md │ ├── metadata.yaml │ ├── redis-gce-overview.01.png │ ├── redis-gce-overview.02.png │ ├── redis-gce-overview.json │ ├── redis-prometheus.json │ ├── redis-prometheus.png │ ├── redis-usage.json │ └── redis-usage.png ├── sap-hana │ ├── README.md │ ├── metadata.yaml │ ├── performance.json │ ├── performance.png │ ├── sap-hana-gce-overview.01.png │ ├── sap-hana-gce-overview.02.png │ └── sap-hana-gce-overview.json ├── scylladb │ ├── README.md │ ├── metadata.yaml │ ├── scylladb-prometheus-v2.json │ ├── scylladb-prometheus-v2.png │ ├── scylladb-prometheus.01.png │ ├── scylladb-prometheus.02.png │ ├── scylladb-prometheus.03.png │ ├── scylladb-prometheus.04.png │ ├── scylladb-prometheus.05.png │ └── scylladb-prometheus.json ├── servicemesh │ ├── README.md │ ├── anthos-service-mesh-control-plane-monitoring.json │ ├── client.json │ ├── client.png │ ├── metadata.yaml │ ├── overview.json │ ├── overview.png │ ├── service.json │ └── service.png ├── solr │ ├── README.md │ ├── metadata.yaml │ ├── solr-gce-overview.01.png │ ├── solr-gce-overview.02.png │ ├── solr-gce-overview.json │ ├── solr-prometheus-overview.01.png │ ├── solr-prometheus-overview.02.png │ └── solr-prometheus-overview.json ├── spanner │ ├── README.md │ ├── metadata.yaml │ ├── spanner.01.png │ ├── spanner.02.png │ └── spanner.json ├── storage │ ├── README.md │ ├── bigtable-monitoring.json │ ├── cloud-storage-monitoring.json │ ├── cloudsql-monitoring.json │ ├── cloudsql-mysql-monitoring.json │ ├── cloudsql-postgre-monitoring.json │ ├── datastore-monitoring.json │ ├── firestore-monitoring.json │ ├── memcache-monitoring.json │ ├── metadata.yaml │ ├── redis-ops-monitoring.json │ ├── redis-stats-monitoring.json │ └── spanner-monitoring.json ├── tensorflow-serving │ ├── README.md │ ├── metadata.yaml │ └── tensorflow-serving-prometheus.json ├── tgi │ ├── README.md │ ├── metadata.yaml │ ├── tgi-prometheus.01.png │ ├── tgi-prometheus.02.png │ └── tgi-prometheus.json ├── tomcat │ ├── README.md │ ├── metadata.yaml │ ├── tomcat-gce-overview.01.png │ ├── tomcat-gce-overview.02.png │ ├── tomcat-gce-overview.json │ ├── tomcat-prometheus-overview.json │ └── tomcat-prometheus-overview.png ├── tools │ ├── README.md │ ├── cloudtasks-monitoring.json │ └── metadata.yaml ├── torchserve │ ├── README.md │ ├── metadata.yaml │ ├── torchserve-prometheus.01.png │ ├── torchserve-prometheus.02.png │ ├── torchserve-prometheus.03.png │ ├── torchserve-prometheus.04.png │ └── torchserve-prometheus.json ├── varnish │ ├── README.md │ ├── metadata.yaml │ ├── varnish-gce-overview.01.png │ ├── varnish-gce-overview.02.png │ ├── varnish-gce-overview.json │ ├── varnish-prometheus-overview.01.png │ ├── varnish-prometheus-overview.02.png │ └── varnish-prometheus-overview.json ├── vault │ ├── README.md │ ├── metadata.yaml │ ├── vault-gce-overview.01.png │ ├── vault-gce-overview.02.png │ └── vault-gce-overview.json ├── velero │ ├── README.md │ ├── metadata.yaml │ ├── velero-prometheus.json │ └── velero-prometheus.png ├── vllm │ ├── README.md │ ├── metadata.yaml │ ├── vllm-prometheus-2.01.png │ ├── vllm-prometheus-2.02.png │ ├── vllm-prometheus-2.json │ ├── vllm-prometheus.01.png │ ├── vllm-prometheus.02.png │ └── vllm-prometheus.json ├── vmware │ ├── README.md │ ├── contention.json │ ├── contention.png │ ├── deprecated │ │ ├── README.md │ │ ├── contention.json │ │ ├── contention.png │ │ ├── overview.json │ │ ├── overview.png │ │ ├── virtual-machine-performance.json │ │ └── virtual-machine-performance.png │ ├── metadata.yaml │ ├── overview.json │ ├── overview.png │ ├── virtual-machine-performance.json │ └── virtual-machine-performance.png ├── wildfly │ ├── README.md │ ├── metadata.yaml │ ├── wildfly-gce-overview.01.png │ ├── wildfly-gce-overview.02.png │ └── wildfly-gce-overview.json ├── windows │ ├── README.md │ ├── active-directory-monitoring.json │ ├── metadata.yaml │ └── windows-server-monitoring.json └── zookeeper │ ├── README.md │ ├── metadata.yaml │ ├── zookeeper-gce-overview.01.png │ ├── zookeeper-gce-overview.02.png │ ├── zookeeper-gce-overview.json │ ├── zookeeper-prometheus.json │ └── zookeeper-prometheus.png ├── dev-docs └── DASHBOARD_TIPS.md ├── dm ├── README.md ├── dashboard.yaml ├── monitoring-dashboard.py └── options.yaml ├── integrations ├── active_directory_ds │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── activemq │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── aerospike │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── airflow │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── apache │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── argo-workflows │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── cassandra │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── consul │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── couchbase │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── couchdb │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── dcgm │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── elasticsearch │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── etcd │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── flink │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── gateway-api-inference-extension │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── hadoop │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── haproxy │ ├── documentation.yaml │ ├── haproxy_alerts.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── hbase │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── iis │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── ingress-nginx │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── istio │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── jenkins │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── jetstream │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── jetty │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── jvm │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── kafka │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── kibana │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── kuberay │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── llm-d │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── memcached │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── mongodb │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── mssql │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── mysql │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── nginx │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── nvidia-triton │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── oracledb │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── postgresql │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── rabbitmq │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── redis │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── saphana │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── scylladb │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── solr │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── tensorflow-serving │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── tgi │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── tomcat │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── torchserve │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── varnish │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── vault │ ├── metadata.yaml │ └── ops_agent_metadata.yaml ├── velero │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── vllm │ ├── documentation.yaml │ ├── metadata.yaml │ └── prometheus_metadata.yaml ├── wildfly │ ├── metadata.yaml │ └── ops_agent_metadata.yaml └── zookeeper │ ├── documentation.yaml │ ├── metadata.yaml │ ├── ops_agent_metadata.yaml │ └── prometheus_metadata.yaml ├── scripts ├── alerts │ └── validate_alerts_format.py ├── dashboard-importer │ ├── .gitignore │ ├── README.md │ ├── examples │ │ └── k8s_cluster_example.json │ ├── import.sh │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── common │ │ │ ├── logger.ts │ │ │ ├── report.ts │ │ │ ├── result.ts │ │ │ ├── testing │ │ │ │ └── test_utils.ts │ │ │ └── types │ │ │ │ ├── cloud_ops_types.ts │ │ │ │ └── grafana_types.ts │ │ ├── convert.ts │ │ ├── dashboards │ │ │ ├── cli.ts │ │ │ └── converter │ │ │ │ ├── converter.ts │ │ │ │ ├── converter_test.ts │ │ │ │ ├── expression.ts │ │ │ │ ├── layout │ │ │ │ ├── constants.ts │ │ │ │ ├── layout_utils.ts │ │ │ │ └── legacy_rows.ts │ │ │ │ ├── legend.ts │ │ │ │ ├── template_variables │ │ │ │ ├── constants.ts │ │ │ │ ├── interval.ts │ │ │ │ ├── label_values.ts │ │ │ │ ├── query.ts │ │ │ │ ├── scoped_vars.ts │ │ │ │ ├── templating.ts │ │ │ │ └── templating_test.ts │ │ │ │ ├── testing │ │ │ │ ├── overlap_test_utils.ts │ │ │ │ ├── test_dashboard.ts │ │ │ │ ├── test_legacy_row_dashboard.ts │ │ │ │ ├── test_overlap_dashboard.ts │ │ │ │ └── tile_test_utils.ts │ │ │ │ └── widgets │ │ │ │ ├── chart.ts │ │ │ │ ├── gauge.ts │ │ │ │ ├── pie_chart.ts │ │ │ │ ├── scorecard.ts │ │ │ │ ├── table.ts │ │ │ │ ├── text.ts │ │ │ │ └── widget.ts │ │ └── test_suite.ts │ ├── test.sh │ ├── tsconfig.json │ └── upload.sh └── dashboard │ ├── Makefile │ ├── README.md │ ├── dashboard.sh │ └── validate_dashboards_format.py └── terraform ├── README.md ├── agents ├── README.md ├── bindplane │ ├── README.md │ ├── linux.tf │ ├── scripts │ │ ├── install.ps1 │ │ └── install.sh │ ├── variables.tf │ └── windows.tf └── cloud-opts │ ├── README.md │ ├── linux.tf │ ├── scripts │ ├── install.ps1 │ └── install.sh │ ├── variables.tf │ └── windows.tf └── main.tf /.github/review-assignment-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/.github/review-assignment-config.yaml -------------------------------------------------------------------------------- /.github/workflows/review-assignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/.github/workflows/review-assignment.yaml -------------------------------------------------------------------------------- /.github/workflows/validate_alerts_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/.github/workflows/validate_alerts_format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/README.md -------------------------------------------------------------------------------- /alerts/active-directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/active-directory/README.md -------------------------------------------------------------------------------- /alerts/active-directory/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/active-directory/metadata.yaml -------------------------------------------------------------------------------- /alerts/activemq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/activemq/README.md -------------------------------------------------------------------------------- /alerts/activemq/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/activemq/metadata.yaml -------------------------------------------------------------------------------- /alerts/aerospike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/aerospike/README.md -------------------------------------------------------------------------------- /alerts/aerospike/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/aerospike/metadata.yaml -------------------------------------------------------------------------------- /alerts/airflow-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/airflow-gke/README.md -------------------------------------------------------------------------------- /alerts/airflow-gke/dag-import-errors.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/airflow-gke/dag-import-errors.v1.json -------------------------------------------------------------------------------- /alerts/airflow-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/airflow-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/apache/README.md -------------------------------------------------------------------------------- /alerts/apache/high-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/apache/high-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/apache/high-server-error-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/apache/high-server-error-rate.v1.json -------------------------------------------------------------------------------- /alerts/apache/low-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/apache/low-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/apache/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/apache/metadata.yaml -------------------------------------------------------------------------------- /alerts/argo-server-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/argo-server-gke/README.md -------------------------------------------------------------------------------- /alerts/argo-server-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/argo-server-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/argo-server-gke/workflow-errors.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/argo-server-gke/workflow-errors.v1.json -------------------------------------------------------------------------------- /alerts/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/cassandra/README.md -------------------------------------------------------------------------------- /alerts/cassandra/high-error-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/cassandra/high-error-rate.v1.json -------------------------------------------------------------------------------- /alerts/cassandra/high-read-latency.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/cassandra/high-read-latency.v1.json -------------------------------------------------------------------------------- /alerts/cassandra/high-throughput.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/cassandra/high-throughput.v1.json -------------------------------------------------------------------------------- /alerts/cassandra/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/cassandra/metadata.yaml -------------------------------------------------------------------------------- /alerts/couchbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchbase/README.md -------------------------------------------------------------------------------- /alerts/couchbase/high-memory-usage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchbase/high-memory-usage.v1.json -------------------------------------------------------------------------------- /alerts/couchbase/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchbase/metadata.yaml -------------------------------------------------------------------------------- /alerts/couchbase/spiking-evictions.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchbase/spiking-evictions.v1.json -------------------------------------------------------------------------------- /alerts/couchdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchdb/README.md -------------------------------------------------------------------------------- /alerts/couchdb/couchdb-low-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchdb/couchdb-low-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/couchdb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/couchdb/metadata.yaml -------------------------------------------------------------------------------- /alerts/elasticsearch-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/elasticsearch-gke/README.md -------------------------------------------------------------------------------- /alerts/elasticsearch-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/elasticsearch-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/elasticsearch/README.md -------------------------------------------------------------------------------- /alerts/elasticsearch/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/elasticsearch/metadata.yaml -------------------------------------------------------------------------------- /alerts/etcd-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/etcd-gke/README.md -------------------------------------------------------------------------------- /alerts/etcd-gke/long-fsync-duration.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/etcd-gke/long-fsync-duration.v1.json -------------------------------------------------------------------------------- /alerts/etcd-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/etcd-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/etcd-gke/rapid-leader-changes.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/etcd-gke/rapid-leader-changes.v1.json -------------------------------------------------------------------------------- /alerts/flink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/flink/README.md -------------------------------------------------------------------------------- /alerts/flink/flink-high job-restarts.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/flink/flink-high job-restarts.v1.json -------------------------------------------------------------------------------- /alerts/flink/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/flink/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-application-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-application-integration/README.md -------------------------------------------------------------------------------- /alerts/google-bigquery/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-bigquery/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloud-agent-for-sap/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-agent-for-sap/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloud-alerting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-alerting/README.md -------------------------------------------------------------------------------- /alerts/google-cloud-alerting/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-alerting/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloud-chronicle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-chronicle/README.md -------------------------------------------------------------------------------- /alerts/google-cloud-chronicle/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-chronicle/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloud-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-deploy/README.md -------------------------------------------------------------------------------- /alerts/google-cloud-deploy/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-deploy/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloud-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-redis/README.md -------------------------------------------------------------------------------- /alerts/google-cloud-redis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-redis/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloud-retail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-retail/README.md -------------------------------------------------------------------------------- /alerts/google-cloud-retail/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloud-retail/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-cloudsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloudsql/README.md -------------------------------------------------------------------------------- /alerts/google-cloudsql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-cloudsql/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-dataproc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/README.md -------------------------------------------------------------------------------- /alerts/google-dataproc/failed-job.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/failed-job.v1.json -------------------------------------------------------------------------------- /alerts/google-dataproc/hdfs-capacity.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/hdfs-capacity.v1.json -------------------------------------------------------------------------------- /alerts/google-dataproc/long-running-job.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/long-running-job.v1.json -------------------------------------------------------------------------------- /alerts/google-dataproc/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-dataproc/stale-cluster.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/stale-cluster.v1.json -------------------------------------------------------------------------------- /alerts/google-dataproc/stale-job.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-dataproc/stale-job.v1.json -------------------------------------------------------------------------------- /alerts/google-gce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-gce/README.md -------------------------------------------------------------------------------- /alerts/google-gce/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-gce/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-gke/README.md -------------------------------------------------------------------------------- /alerts/google-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-quotas/README.md: -------------------------------------------------------------------------------- 1 | # Alert policies for quotas 2 | -------------------------------------------------------------------------------- /alerts/google-quotas/exceeded-quota.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-quotas/exceeded-quota.v1.json -------------------------------------------------------------------------------- /alerts/google-quotas/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-quotas/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-quotas/quota-usage-mql.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-quotas/quota-usage-mql.v1.json -------------------------------------------------------------------------------- /alerts/google-quotas/quota-usage-promql.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-quotas/quota-usage-promql.v1.json -------------------------------------------------------------------------------- /alerts/google-vertex-ai/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-vertex-ai/metadata.yaml -------------------------------------------------------------------------------- /alerts/google-workload-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-workload-manager/README.md -------------------------------------------------------------------------------- /alerts/google-workload-manager/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/google-workload-manager/metadata.yaml -------------------------------------------------------------------------------- /alerts/hadoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hadoop/README.md -------------------------------------------------------------------------------- /alerts/hadoop/hadoop-dead-data-nodes.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hadoop/hadoop-dead-data-nodes.v1.json -------------------------------------------------------------------------------- /alerts/hadoop/hadoop-volume-failure.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hadoop/hadoop-volume-failure.v1.json -------------------------------------------------------------------------------- /alerts/hadoop/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hadoop/metadata.yaml -------------------------------------------------------------------------------- /alerts/haproxy-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/haproxy-gke/README.md -------------------------------------------------------------------------------- /alerts/haproxy-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/haproxy-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/haproxy-gke/server-down.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/haproxy-gke/server-down.v1.json -------------------------------------------------------------------------------- /alerts/hbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hbase/README.md -------------------------------------------------------------------------------- /alerts/hbase/authentication-errors.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hbase/authentication-errors.v1.json -------------------------------------------------------------------------------- /alerts/hbase/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hbase/metadata.yaml -------------------------------------------------------------------------------- /alerts/hbase/server-down.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hbase/server-down.v1.json -------------------------------------------------------------------------------- /alerts/hbase/slow-operations.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/hbase/slow-operations.v1.json -------------------------------------------------------------------------------- /alerts/iis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/iis/README.md -------------------------------------------------------------------------------- /alerts/iis/high-connections.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/iis/high-connections.v1.json -------------------------------------------------------------------------------- /alerts/iis/long-request-queue.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/iis/long-request-queue.v1.json -------------------------------------------------------------------------------- /alerts/iis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/iis/metadata.yaml -------------------------------------------------------------------------------- /alerts/iis/site-down.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/iis/site-down.v1.json -------------------------------------------------------------------------------- /alerts/istio-proxy-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/istio-proxy-gke/README.md -------------------------------------------------------------------------------- /alerts/istio-proxy-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/istio-proxy-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/jenkins-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jenkins-gke/README.md -------------------------------------------------------------------------------- /alerts/jenkins-gke/health-score-below-1.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jenkins-gke/health-score-below-1.v1.json -------------------------------------------------------------------------------- /alerts/jenkins-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jenkins-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/jenkins-gke/plugin-failure.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jenkins-gke/plugin-failure.v1.json -------------------------------------------------------------------------------- /alerts/jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jetty/README.md -------------------------------------------------------------------------------- /alerts/jetty/access_log_failures.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jetty/access_log_failures.v1.json -------------------------------------------------------------------------------- /alerts/jetty/failed_config_parsing.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jetty/failed_config_parsing.v1.json -------------------------------------------------------------------------------- /alerts/jetty/long_thread_queue.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jetty/long_thread_queue.v1.json -------------------------------------------------------------------------------- /alerts/jetty/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jetty/metadata.yaml -------------------------------------------------------------------------------- /alerts/jetty/no_threads_available.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jetty/no_threads_available.v1.json -------------------------------------------------------------------------------- /alerts/jvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jvm/README.md -------------------------------------------------------------------------------- /alerts/jvm/heap-memory-usage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jvm/heap-memory-usage.v1.json -------------------------------------------------------------------------------- /alerts/jvm/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jvm/metadata.yaml -------------------------------------------------------------------------------- /alerts/jvm/thread-count.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/jvm/thread-count.v1.json -------------------------------------------------------------------------------- /alerts/kafka-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kafka-gke/README.md -------------------------------------------------------------------------------- /alerts/kafka-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kafka-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kafka/README.md -------------------------------------------------------------------------------- /alerts/kafka/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kafka/metadata.yaml -------------------------------------------------------------------------------- /alerts/kibana-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kibana-gke/README.md -------------------------------------------------------------------------------- /alerts/kibana-gke/high-cpu-usage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kibana-gke/high-cpu-usage.v1.json -------------------------------------------------------------------------------- /alerts/kibana-gke/high-memory-usage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kibana-gke/high-memory-usage.v1.json -------------------------------------------------------------------------------- /alerts/kibana-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kibana-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/kube-state-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kube-state-gke/README.md -------------------------------------------------------------------------------- /alerts/kube-state-gke/job-failure.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kube-state-gke/job-failure.v1.json -------------------------------------------------------------------------------- /alerts/kube-state-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/kube-state-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/memcached-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached-gke/README.md -------------------------------------------------------------------------------- /alerts/memcached-gke/high-evictions.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached-gke/high-evictions.v1.json -------------------------------------------------------------------------------- /alerts/memcached-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/memcached-gke/no-connections.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached-gke/no-connections.v1.json -------------------------------------------------------------------------------- /alerts/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached/README.md -------------------------------------------------------------------------------- /alerts/memcached/high-cpu-usage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached/high-cpu-usage.v1.json -------------------------------------------------------------------------------- /alerts/memcached/high-evictions.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached/high-evictions.v1.json -------------------------------------------------------------------------------- /alerts/memcached/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached/metadata.yaml -------------------------------------------------------------------------------- /alerts/memcached/no-connections.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/memcached/no-connections.v1.json -------------------------------------------------------------------------------- /alerts/mongodb-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb-gke/README.md -------------------------------------------------------------------------------- /alerts/mongodb-gke/connection-near-max.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb-gke/connection-near-max.v1.json -------------------------------------------------------------------------------- /alerts/mongodb-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb/README.md -------------------------------------------------------------------------------- /alerts/mongodb/connection-near-max.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb/connection-near-max.v1.json -------------------------------------------------------------------------------- /alerts/mongodb/high-cpu-utilization.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb/high-cpu-utilization.v1.json -------------------------------------------------------------------------------- /alerts/mongodb/high-disk-utilization.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb/high-disk-utilization.v1.json -------------------------------------------------------------------------------- /alerts/mongodb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mongodb/metadata.yaml -------------------------------------------------------------------------------- /alerts/mssql-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mssql-server/README.md -------------------------------------------------------------------------------- /alerts/mssql-server/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mssql-server/metadata.yaml -------------------------------------------------------------------------------- /alerts/mysql-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mysql-gke/README.md -------------------------------------------------------------------------------- /alerts/mysql-gke/connection-errors.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mysql-gke/connection-errors.v1.json -------------------------------------------------------------------------------- /alerts/mysql-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/mysql-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/nginx-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-gke/README.md -------------------------------------------------------------------------------- /alerts/nginx-gke/connections-dropped.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-gke/connections-dropped.v1.json -------------------------------------------------------------------------------- /alerts/nginx-gke/high-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-gke/high-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/nginx-gke/low-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-gke/low-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/nginx-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/nginx-ingress-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-ingress-gke/README.md -------------------------------------------------------------------------------- /alerts/nginx-ingress-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx-ingress-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx/README.md -------------------------------------------------------------------------------- /alerts/nginx/connections-dropped.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx/connections-dropped.v1.json -------------------------------------------------------------------------------- /alerts/nginx/high-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx/high-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/nginx/high-server-error-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx/high-server-error-rate.v1.json -------------------------------------------------------------------------------- /alerts/nginx/low-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx/low-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/nginx/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/nginx/metadata.yaml -------------------------------------------------------------------------------- /alerts/node-exporter-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/node-exporter-gke/README.md -------------------------------------------------------------------------------- /alerts/node-exporter-gke/high-cpu-usage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/node-exporter-gke/high-cpu-usage.v1.json -------------------------------------------------------------------------------- /alerts/node-exporter-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/node-exporter-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/oracledb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/oracledb/README.md -------------------------------------------------------------------------------- /alerts/oracledb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/oracledb/metadata.yaml -------------------------------------------------------------------------------- /alerts/postgres-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgres-gke/README.md -------------------------------------------------------------------------------- /alerts/postgres-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgres-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgresql/README.md -------------------------------------------------------------------------------- /alerts/postgresql/high-cpu-utilization.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgresql/high-cpu-utilization.v1.json -------------------------------------------------------------------------------- /alerts/postgresql/high-db-size.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgresql/high-db-size.v1.json -------------------------------------------------------------------------------- /alerts/postgresql/max-writes.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgresql/max-writes.v1.json -------------------------------------------------------------------------------- /alerts/postgresql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/postgresql/metadata.yaml -------------------------------------------------------------------------------- /alerts/rabbitmq-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/rabbitmq-gke/README.md -------------------------------------------------------------------------------- /alerts/rabbitmq-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/rabbitmq-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/rabbitmq/README.md -------------------------------------------------------------------------------- /alerts/rabbitmq/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/rabbitmq/metadata.yaml -------------------------------------------------------------------------------- /alerts/redis-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis-gke/README.md -------------------------------------------------------------------------------- /alerts/redis-gke/evicted-keys.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis-gke/evicted-keys.v1.json -------------------------------------------------------------------------------- /alerts/redis-gke/fragmentation-ratio.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis-gke/fragmentation-ratio.v1.json -------------------------------------------------------------------------------- /alerts/redis-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis/README.md -------------------------------------------------------------------------------- /alerts/redis/evicted-keys.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis/evicted-keys.v1.json -------------------------------------------------------------------------------- /alerts/redis/fragmentation-ratio.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis/fragmentation-ratio.v1.json -------------------------------------------------------------------------------- /alerts/redis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/redis/metadata.yaml -------------------------------------------------------------------------------- /alerts/saphana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/saphana/README.md -------------------------------------------------------------------------------- /alerts/saphana/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/saphana/metadata.yaml -------------------------------------------------------------------------------- /alerts/saphana/saphana-server-down.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/saphana/saphana-server-down.v1.json -------------------------------------------------------------------------------- /alerts/scylla-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/scylla-gke/README.md -------------------------------------------------------------------------------- /alerts/scylla-gke/high-compaction-load.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/scylla-gke/high-compaction-load.v1.json -------------------------------------------------------------------------------- /alerts/scylla-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/scylla-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/solr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/solr/README.md -------------------------------------------------------------------------------- /alerts/solr/high-cache-evictions.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/solr/high-cache-evictions.v1.json -------------------------------------------------------------------------------- /alerts/solr/high-request-count.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/solr/high-request-count.v1.json -------------------------------------------------------------------------------- /alerts/solr/high-request-errors.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/solr/high-request-errors.v1.json -------------------------------------------------------------------------------- /alerts/solr/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/solr/metadata.yaml -------------------------------------------------------------------------------- /alerts/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/tomcat/README.md -------------------------------------------------------------------------------- /alerts/tomcat/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/tomcat/metadata.yaml -------------------------------------------------------------------------------- /alerts/tomcat/tomcat-high-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/tomcat/tomcat-high-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/tomcat/tomcat-low-request-rate.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/tomcat/tomcat-low-request-rate.v1.json -------------------------------------------------------------------------------- /alerts/varnish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/varnish/README.md -------------------------------------------------------------------------------- /alerts/varnish/high-cache-evictions.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/varnish/high-cache-evictions.v1.json -------------------------------------------------------------------------------- /alerts/varnish/high-server-limit.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/varnish/high-server-limit.v1.json -------------------------------------------------------------------------------- /alerts/varnish/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/varnish/metadata.yaml -------------------------------------------------------------------------------- /alerts/varnish/sessions-dropped.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/varnish/sessions-dropped.v1.json -------------------------------------------------------------------------------- /alerts/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/vault/README.md -------------------------------------------------------------------------------- /alerts/vault/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/vault/metadata.yaml -------------------------------------------------------------------------------- /alerts/vault/vault-audit-failure-alert.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/vault/vault-audit-failure-alert.v1.json -------------------------------------------------------------------------------- /alerts/vault/vault-token-creation-alert.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/vault/vault-token-creation-alert.v1.json -------------------------------------------------------------------------------- /alerts/velero-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/velero-gke/README.md -------------------------------------------------------------------------------- /alerts/velero-gke/backup-failure.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/velero-gke/backup-failure.v1.json -------------------------------------------------------------------------------- /alerts/velero-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/velero-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/velero-gke/restore-failure.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/velero-gke/restore-failure.v1.json -------------------------------------------------------------------------------- /alerts/wildfly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/wildfly/README.md -------------------------------------------------------------------------------- /alerts/wildfly/jdbc-connections-maximum.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/wildfly/jdbc-connections-maximum.v1.json -------------------------------------------------------------------------------- /alerts/wildfly/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/wildfly/metadata.yaml -------------------------------------------------------------------------------- /alerts/wildfly/server-errors.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/wildfly/server-errors.v1.json -------------------------------------------------------------------------------- /alerts/wildfly/waiting-requests.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/wildfly/waiting-requests.v1.json -------------------------------------------------------------------------------- /alerts/zookeeper-gke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/zookeeper-gke/README.md -------------------------------------------------------------------------------- /alerts/zookeeper-gke/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/zookeeper-gke/metadata.yaml -------------------------------------------------------------------------------- /alerts/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/zookeeper/README.md -------------------------------------------------------------------------------- /alerts/zookeeper/high-average-latency.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/zookeeper/high-average-latency.v1.json -------------------------------------------------------------------------------- /alerts/zookeeper/high-fsync-duration.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/zookeeper/high-fsync-duration.v1.json -------------------------------------------------------------------------------- /alerts/zookeeper/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/alerts/zookeeper/metadata.yaml -------------------------------------------------------------------------------- /dashboards/active-directory-ds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/active-directory-ds/README.md -------------------------------------------------------------------------------- /dashboards/active-directory-ds/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/active-directory-ds/metadata.yaml -------------------------------------------------------------------------------- /dashboards/activemq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/activemq/README.md -------------------------------------------------------------------------------- /dashboards/activemq/activemq-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/activemq/activemq-gce-overview.json -------------------------------------------------------------------------------- /dashboards/activemq/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/activemq/metadata.yaml -------------------------------------------------------------------------------- /dashboards/aerospike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/aerospike/README.md -------------------------------------------------------------------------------- /dashboards/aerospike/aerospike-gce-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/aerospike/aerospike-gce-overview.png -------------------------------------------------------------------------------- /dashboards/aerospike/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/aerospike/metadata.yaml -------------------------------------------------------------------------------- /dashboards/anthos-config-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/anthos-config-management/README.md -------------------------------------------------------------------------------- /dashboards/apache-airflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apache-airflow/README.md -------------------------------------------------------------------------------- /dashboards/apache-airflow/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apache-airflow/metadata.yaml -------------------------------------------------------------------------------- /dashboards/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apache/README.md -------------------------------------------------------------------------------- /dashboards/apache/apache-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apache/apache-gce-overview.json -------------------------------------------------------------------------------- /dashboards/apache/apache-gce-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apache/apache-gce-overview.png -------------------------------------------------------------------------------- /dashboards/apache/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apache/metadata.yaml -------------------------------------------------------------------------------- /dashboards/apigee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apigee/README.md -------------------------------------------------------------------------------- /dashboards/apigee/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/apigee/metadata.yaml -------------------------------------------------------------------------------- /dashboards/argo-workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/argo-workflows/README.md -------------------------------------------------------------------------------- /dashboards/argo-workflows/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/argo-workflows/metadata.yaml -------------------------------------------------------------------------------- /dashboards/bigdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bigdata/README.md -------------------------------------------------------------------------------- /dashboards/bigdata/bigquery-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bigdata/bigquery-monitoring.json -------------------------------------------------------------------------------- /dashboards/bigdata/dataproc-job-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bigdata/dataproc-job-monitoring.json -------------------------------------------------------------------------------- /dashboards/bigdata/dataproc-job-monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bigdata/dataproc-job-monitoring.png -------------------------------------------------------------------------------- /dashboards/bigdata/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bigdata/metadata.yaml -------------------------------------------------------------------------------- /dashboards/bindplane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bindplane/README.md -------------------------------------------------------------------------------- /dashboards/bindplane/host-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bindplane/host-monitoring.json -------------------------------------------------------------------------------- /dashboards/bindplane/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/bindplane/metadata.yaml -------------------------------------------------------------------------------- /dashboards/cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/cassandra/README.md -------------------------------------------------------------------------------- /dashboards/cassandra/cassandra-gce-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/cassandra/cassandra-gce-overview.png -------------------------------------------------------------------------------- /dashboards/cassandra/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/cassandra/metadata.yaml -------------------------------------------------------------------------------- /dashboards/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/consul/README.md -------------------------------------------------------------------------------- /dashboards/consul/consul-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/consul/consul-prometheus.json -------------------------------------------------------------------------------- /dashboards/consul/consul-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/consul/consul-prometheus.png -------------------------------------------------------------------------------- /dashboards/consul/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/consul/metadata.yaml -------------------------------------------------------------------------------- /dashboards/couchbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchbase/README.md -------------------------------------------------------------------------------- /dashboards/couchbase/gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchbase/gce-overview.json -------------------------------------------------------------------------------- /dashboards/couchbase/gce-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchbase/gce-overview.png -------------------------------------------------------------------------------- /dashboards/couchbase/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchbase/metadata.yaml -------------------------------------------------------------------------------- /dashboards/couchdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchdb/README.md -------------------------------------------------------------------------------- /dashboards/couchdb/couchdb-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchdb/couchdb-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/couchdb/couchdb-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchdb/couchdb-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/couchdb/couchdb-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchdb/couchdb-gce-overview.json -------------------------------------------------------------------------------- /dashboards/couchdb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/couchdb/metadata.yaml -------------------------------------------------------------------------------- /dashboards/dataflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/dataflow/README.md -------------------------------------------------------------------------------- /dashboards/dataflow/dataflow-job.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/dataflow/dataflow-job.01.png -------------------------------------------------------------------------------- /dashboards/dataflow/dataflow-job.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/dataflow/dataflow-job.02.png -------------------------------------------------------------------------------- /dashboards/dataflow/dataflow-job.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/dataflow/dataflow-job.03.png -------------------------------------------------------------------------------- /dashboards/dataflow/dataflow-job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/dataflow/dataflow-job.json -------------------------------------------------------------------------------- /dashboards/dataflow/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/dataflow/metadata.yaml -------------------------------------------------------------------------------- /dashboards/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/elasticsearch/README.md -------------------------------------------------------------------------------- /dashboards/elasticsearch/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/elasticsearch/metadata.yaml -------------------------------------------------------------------------------- /dashboards/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/etcd/README.md -------------------------------------------------------------------------------- /dashboards/etcd/etcd-prometheus.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/etcd/etcd-prometheus.01.png -------------------------------------------------------------------------------- /dashboards/etcd/etcd-prometheus.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/etcd/etcd-prometheus.02.png -------------------------------------------------------------------------------- /dashboards/etcd/etcd-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/etcd/etcd-prometheus.json -------------------------------------------------------------------------------- /dashboards/etcd/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/etcd/metadata.yaml -------------------------------------------------------------------------------- /dashboards/flink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/README.md -------------------------------------------------------------------------------- /dashboards/flink/flink-gce-jobs-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/flink-gce-jobs-overview.json -------------------------------------------------------------------------------- /dashboards/flink/flink-gce-jobs-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/flink-gce-jobs-overview.png -------------------------------------------------------------------------------- /dashboards/flink/flink-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/flink-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/flink/flink-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/flink-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/flink/flink-gce-overview.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/flink-gce-overview.03.png -------------------------------------------------------------------------------- /dashboards/flink/flink-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/flink-gce-overview.json -------------------------------------------------------------------------------- /dashboards/flink/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/flink/metadata.yaml -------------------------------------------------------------------------------- /dashboards/gemini-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/gemini-cli/README.md -------------------------------------------------------------------------------- /dashboards/gemini-cli/gemini-cli-monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/gemini-cli/gemini-cli-monitoring.png -------------------------------------------------------------------------------- /dashboards/gemini-cli/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/gemini-cli/metadata.yaml -------------------------------------------------------------------------------- /dashboards/golang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/golang/README.md -------------------------------------------------------------------------------- /dashboards/golang/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/golang/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-anthos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-anthos/README.md -------------------------------------------------------------------------------- /dashboards/google-anthos/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-anthos/deprecated/README.md -------------------------------------------------------------------------------- /dashboards/google-anthos/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-anthos/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-app-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/README.md -------------------------------------------------------------------------------- /dashboards/google-app-engine/gae-app.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/gae-app.01.png -------------------------------------------------------------------------------- /dashboards/google-app-engine/gae-app.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/gae-app.02.png -------------------------------------------------------------------------------- /dashboards/google-app-engine/gae-app.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/gae-app.03.png -------------------------------------------------------------------------------- /dashboards/google-app-engine/gae-app.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/gae-app.04.png -------------------------------------------------------------------------------- /dashboards/google-app-engine/gae-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/gae-app.json -------------------------------------------------------------------------------- /dashboards/google-app-engine/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-app-engine/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-backupdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-backupdr/README.md -------------------------------------------------------------------------------- /dashboards/google-backupdr/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-backupdr/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-bigquery/bigquery.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-bigquery/bigquery.01.png -------------------------------------------------------------------------------- /dashboards/google-bigquery/bigquery.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-bigquery/bigquery.02.png -------------------------------------------------------------------------------- /dashboards/google-bigquery/bigquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-bigquery/bigquery.json -------------------------------------------------------------------------------- /dashboards/google-bigquery/bigquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-bigquery/bigquery.png -------------------------------------------------------------------------------- /dashboards/google-bigquery/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-bigquery/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-agent-for-sap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-agent-for-sap/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-armor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-armor/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-armor/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-armor/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-composer/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-composer/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-composer/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-data-fusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-data-fusion/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-functions/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-functions/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-functions/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-run/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-run/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-run/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-storage/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-storage/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-storage/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-tasks/cloud-tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-tasks/cloud-tasks.json -------------------------------------------------------------------------------- /dashboards/google-cloud-tasks/cloud-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-tasks/cloud-tasks.png -------------------------------------------------------------------------------- /dashboards/google-cloud-tasks/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-tasks/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-vpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-vpn/README.md -------------------------------------------------------------------------------- /dashboards/google-cloud-vpn/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-vpn/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-cloud-vpn/vpn.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-vpn/vpn.01.png -------------------------------------------------------------------------------- /dashboards/google-cloud-vpn/vpn.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-vpn/vpn.02.png -------------------------------------------------------------------------------- /dashboards/google-cloud-vpn/vpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloud-vpn/vpn.json -------------------------------------------------------------------------------- /dashboards/google-cloudsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloudsql/README.md -------------------------------------------------------------------------------- /dashboards/google-cloudsql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-cloudsql/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-compute-disk/compute-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-compute-disk/compute-disk.png -------------------------------------------------------------------------------- /dashboards/google-compute-disk/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-compute-disk/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-compute-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-compute-engine/README.md -------------------------------------------------------------------------------- /dashboards/google-compute-engine/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-compute-engine/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-dataflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dataflow/README.md -------------------------------------------------------------------------------- /dashboards/google-dataflow/dataflow-job.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dataflow/dataflow-job.01.png -------------------------------------------------------------------------------- /dashboards/google-dataflow/dataflow-job.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dataflow/dataflow-job.02.png -------------------------------------------------------------------------------- /dashboards/google-dataflow/dataflow-job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dataflow/dataflow-job.json -------------------------------------------------------------------------------- /dashboards/google-dataflow/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dataflow/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-dns-query/dns-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dns-query/dns-query.json -------------------------------------------------------------------------------- /dashboards/google-dns-query/dns-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dns-query/dns-query.png -------------------------------------------------------------------------------- /dashboards/google-dns-query/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-dns-query/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-filestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-filestore/README.md -------------------------------------------------------------------------------- /dashboards/google-filestore/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-filestore/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-gemini-code-assist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-gemini-code-assist/README.md -------------------------------------------------------------------------------- /dashboards/google-home-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-home-analytics/README.md -------------------------------------------------------------------------------- /dashboards/google-home-analytics/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-home-analytics/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-immersive-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-immersive-stream/README.md -------------------------------------------------------------------------------- /dashboards/google-kubernetes-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-kubernetes-engine/README.md -------------------------------------------------------------------------------- /dashboards/google-microservices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-microservices/README.md -------------------------------------------------------------------------------- /dashboards/google-microservices/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-microservices/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-network-lb-rule/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-network-lb-rule/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-pub-sub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-pub-sub/README.md -------------------------------------------------------------------------------- /dashboards/google-pub-sub/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-pub-sub/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-pub-sub/pub-sub-topic.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-pub-sub/pub-sub-topic.01.png -------------------------------------------------------------------------------- /dashboards/google-pub-sub/pub-sub-topic.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-pub-sub/pub-sub-topic.02.png -------------------------------------------------------------------------------- /dashboards/google-pub-sub/pub-sub-topic.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-pub-sub/pub-sub-topic.03.png -------------------------------------------------------------------------------- /dashboards/google-pub-sub/pub-sub-topic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-pub-sub/pub-sub-topic.json -------------------------------------------------------------------------------- /dashboards/google-recaptcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-recaptcha/README.md -------------------------------------------------------------------------------- /dashboards/google-recaptcha/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-recaptcha/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-recaptcha/recaptcha-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-recaptcha/recaptcha-key.json -------------------------------------------------------------------------------- /dashboards/google-spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-spanner/README.md -------------------------------------------------------------------------------- /dashboards/google-spanner/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-spanner/metadata.yaml -------------------------------------------------------------------------------- /dashboards/google-spanner/spanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-spanner/spanner.json -------------------------------------------------------------------------------- /dashboards/google-spanner/spanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-spanner/spanner.png -------------------------------------------------------------------------------- /dashboards/google-vertex-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-vertex-ai/README.md -------------------------------------------------------------------------------- /dashboards/google-vertex-ai/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/google-vertex-ai/metadata.yaml -------------------------------------------------------------------------------- /dashboards/hadoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hadoop/README.md -------------------------------------------------------------------------------- /dashboards/hadoop/hadoop-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hadoop/hadoop-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/hadoop/hadoop-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hadoop/hadoop-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/hadoop/hadoop-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hadoop/hadoop-gce-overview.json -------------------------------------------------------------------------------- /dashboards/hadoop/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hadoop/metadata.yaml -------------------------------------------------------------------------------- /dashboards/haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/haproxy/README.md -------------------------------------------------------------------------------- /dashboards/haproxy/haproxy-prometheus.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/haproxy/haproxy-prometheus.01.png -------------------------------------------------------------------------------- /dashboards/haproxy/haproxy-prometheus.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/haproxy/haproxy-prometheus.02.png -------------------------------------------------------------------------------- /dashboards/haproxy/haproxy-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/haproxy/haproxy-prometheus.json -------------------------------------------------------------------------------- /dashboards/haproxy/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/haproxy/metadata.yaml -------------------------------------------------------------------------------- /dashboards/hbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hbase/README.md -------------------------------------------------------------------------------- /dashboards/hbase/hbase-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hbase/hbase-gce-overview.json -------------------------------------------------------------------------------- /dashboards/hbase/hbase-gce-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hbase/hbase-gce-overview.png -------------------------------------------------------------------------------- /dashboards/hbase/hbase-prometheus-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hbase/hbase-prometheus-overview.json -------------------------------------------------------------------------------- /dashboards/hbase/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/hbase/metadata.yaml -------------------------------------------------------------------------------- /dashboards/iis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/iis/README.md -------------------------------------------------------------------------------- /dashboards/iis/iis-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/iis/iis-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/iis/iis-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/iis/iis-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/iis/iis-gce-overview.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/iis/iis-gce-overview.03.png -------------------------------------------------------------------------------- /dashboards/iis/iis-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/iis/iis-gce-overview.json -------------------------------------------------------------------------------- /dashboards/iis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/iis/metadata.yaml -------------------------------------------------------------------------------- /dashboards/ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/ingress-nginx/README.md -------------------------------------------------------------------------------- /dashboards/ingress-nginx/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/ingress-nginx/metadata.yaml -------------------------------------------------------------------------------- /dashboards/istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/istio/README.md -------------------------------------------------------------------------------- /dashboards/istio/istio-envoy-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/istio/istio-envoy-prometheus.json -------------------------------------------------------------------------------- /dashboards/istio/istio-envoy-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/istio/istio-envoy-prometheus.png -------------------------------------------------------------------------------- /dashboards/istio/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/istio/metadata.yaml -------------------------------------------------------------------------------- /dashboards/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jenkins/README.md -------------------------------------------------------------------------------- /dashboards/jenkins/jenkins-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jenkins/jenkins-prometheus.json -------------------------------------------------------------------------------- /dashboards/jenkins/jenkins-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jenkins/jenkins-prometheus.png -------------------------------------------------------------------------------- /dashboards/jenkins/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jenkins/metadata.yaml -------------------------------------------------------------------------------- /dashboards/jetstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetstream/README.md -------------------------------------------------------------------------------- /dashboards/jetstream/jetstream-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetstream/jetstream-prometheus.json -------------------------------------------------------------------------------- /dashboards/jetstream/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetstream/metadata.yaml -------------------------------------------------------------------------------- /dashboards/jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetty/README.md -------------------------------------------------------------------------------- /dashboards/jetty/jetty-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetty/jetty-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/jetty/jetty-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetty/jetty-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/jetty/jetty-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetty/jetty-gce-overview.json -------------------------------------------------------------------------------- /dashboards/jetty/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jetty/metadata.yaml -------------------------------------------------------------------------------- /dashboards/jvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jvm/README.md -------------------------------------------------------------------------------- /dashboards/jvm/jvm-prometheus-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jvm/jvm-prometheus-overview.json -------------------------------------------------------------------------------- /dashboards/jvm/jvm-prometheus-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jvm/jvm-prometheus-overview.png -------------------------------------------------------------------------------- /dashboards/jvm/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jvm/metadata.yaml -------------------------------------------------------------------------------- /dashboards/jvm/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jvm/overview.json -------------------------------------------------------------------------------- /dashboards/jvm/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/jvm/overview.png -------------------------------------------------------------------------------- /dashboards/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/README.md -------------------------------------------------------------------------------- /dashboards/kafka/kafka-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/kafka-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/kafka/kafka-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/kafka-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/kafka/kafka-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/kafka-gce-overview.json -------------------------------------------------------------------------------- /dashboards/kafka/kafka-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/kafka-prometheus.json -------------------------------------------------------------------------------- /dashboards/kafka/kafka-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/kafka-prometheus.png -------------------------------------------------------------------------------- /dashboards/kafka/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kafka/metadata.yaml -------------------------------------------------------------------------------- /dashboards/kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kibana/README.md -------------------------------------------------------------------------------- /dashboards/kibana/kibana-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kibana/kibana-prometheus.json -------------------------------------------------------------------------------- /dashboards/kibana/kibana-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kibana/kibana-prometheus.png -------------------------------------------------------------------------------- /dashboards/kibana/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kibana/metadata.yaml -------------------------------------------------------------------------------- /dashboards/kuberay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kuberay/README.md -------------------------------------------------------------------------------- /dashboards/kuberay/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kuberay/metadata.yaml -------------------------------------------------------------------------------- /dashboards/kuberay/ray-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kuberay/ray-overview.json -------------------------------------------------------------------------------- /dashboards/kuberay/ray-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kuberay/ray-overview.png -------------------------------------------------------------------------------- /dashboards/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kubernetes/README.md -------------------------------------------------------------------------------- /dashboards/kubernetes/k8s-pod-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kubernetes/k8s-pod-prometheus.png -------------------------------------------------------------------------------- /dashboards/kubernetes/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/kubernetes/metadata.yaml -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-01.png -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-02.png -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-03.png -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-04.png -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-05.png -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-06.png -------------------------------------------------------------------------------- /dashboards/llm-d/llm-d-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/llm-d-dashboard.json -------------------------------------------------------------------------------- /dashboards/llm-d/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/llm-d/metadata.yaml -------------------------------------------------------------------------------- /dashboards/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/README.md -------------------------------------------------------------------------------- /dashboards/logging/cloudsql-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/cloudsql-usage.json -------------------------------------------------------------------------------- /dashboards/logging/cloudsql-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/cloudsql-usage.png -------------------------------------------------------------------------------- /dashboards/logging/dataflow-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/dataflow-usage.json -------------------------------------------------------------------------------- /dashboards/logging/dataflow-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/dataflow-usage.png -------------------------------------------------------------------------------- /dashboards/logging/gce-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/gce-usage.json -------------------------------------------------------------------------------- /dashboards/logging/gce-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/gce-usage.png -------------------------------------------------------------------------------- /dashboards/logging/gke-system-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/gke-system-usage.json -------------------------------------------------------------------------------- /dashboards/logging/gke-system-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/gke-system-usage.png -------------------------------------------------------------------------------- /dashboards/logging/kubernetes-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/kubernetes-usage.json -------------------------------------------------------------------------------- /dashboards/logging/kubernetes-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/kubernetes-usage.png -------------------------------------------------------------------------------- /dashboards/logging/management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/management.json -------------------------------------------------------------------------------- /dashboards/logging/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/management.png -------------------------------------------------------------------------------- /dashboards/logging/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/logging/metadata.yaml -------------------------------------------------------------------------------- /dashboards/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/memcached/README.md -------------------------------------------------------------------------------- /dashboards/memcached/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/memcached/metadata.yaml -------------------------------------------------------------------------------- /dashboards/microservices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/microservices/README.md -------------------------------------------------------------------------------- /dashboards/microservices/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/microservices/metadata.yaml -------------------------------------------------------------------------------- /dashboards/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/README.md -------------------------------------------------------------------------------- /dashboards/mongodb/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/deprecated/README.md -------------------------------------------------------------------------------- /dashboards/mongodb/deprecated/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/deprecated/overview.json -------------------------------------------------------------------------------- /dashboards/mongodb/deprecated/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/deprecated/overview.png -------------------------------------------------------------------------------- /dashboards/mongodb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/metadata.yaml -------------------------------------------------------------------------------- /dashboards/mongodb/mongodb-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/mongodb-gce-overview.json -------------------------------------------------------------------------------- /dashboards/mongodb/mongodb-prometheus.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/mongodb-prometheus.01.png -------------------------------------------------------------------------------- /dashboards/mongodb/mongodb-prometheus.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/mongodb-prometheus.02.png -------------------------------------------------------------------------------- /dashboards/mongodb/mongodb-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mongodb/mongodb-prometheus.json -------------------------------------------------------------------------------- /dashboards/mssql-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mssql-server/README.md -------------------------------------------------------------------------------- /dashboards/mssql-server/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mssql-server/metadata.yaml -------------------------------------------------------------------------------- /dashboards/multicloud-amazon-ec2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/multicloud-amazon-ec2/README.md -------------------------------------------------------------------------------- /dashboards/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/README.md -------------------------------------------------------------------------------- /dashboards/mysql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/metadata.yaml -------------------------------------------------------------------------------- /dashboards/mysql/mysql-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/mysql-prometheus.json -------------------------------------------------------------------------------- /dashboards/mysql/mysql-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/mysql-prometheus.png -------------------------------------------------------------------------------- /dashboards/mysql/overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/overview.01.png -------------------------------------------------------------------------------- /dashboards/mysql/overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/overview.02.png -------------------------------------------------------------------------------- /dashboards/mysql/overview.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/overview.03.png -------------------------------------------------------------------------------- /dashboards/mysql/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/mysql/overview.json -------------------------------------------------------------------------------- /dashboards/networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/networking/README.md -------------------------------------------------------------------------------- /dashboards/networking/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/networking/metadata.yaml -------------------------------------------------------------------------------- /dashboards/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nginx/README.md -------------------------------------------------------------------------------- /dashboards/nginx/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nginx/metadata.yaml -------------------------------------------------------------------------------- /dashboards/nginx/nginx-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nginx/nginx-prometheus.json -------------------------------------------------------------------------------- /dashboards/nginx/nginx-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nginx/nginx-prometheus.png -------------------------------------------------------------------------------- /dashboards/nginx/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nginx/overview.json -------------------------------------------------------------------------------- /dashboards/nginx/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nginx/overview.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/README.md -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/metadata.yaml -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-dcgm.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-dcgm.01.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-dcgm.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-dcgm.02.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-dcgm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-dcgm.json -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-overview.01.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-overview.02.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-overview.03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-overview.03.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-overview.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-overview.04.png -------------------------------------------------------------------------------- /dashboards/nvidia-gpu/nvidia-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/nvidia-gpu/nvidia-overview.json -------------------------------------------------------------------------------- /dashboards/opentelemetry-collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/opentelemetry-collector/README.md -------------------------------------------------------------------------------- /dashboards/oracledb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/oracledb/README.md -------------------------------------------------------------------------------- /dashboards/oracledb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/oracledb/metadata.yaml -------------------------------------------------------------------------------- /dashboards/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/postgresql/README.md -------------------------------------------------------------------------------- /dashboards/postgresql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/postgresql/metadata.yaml -------------------------------------------------------------------------------- /dashboards/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/rabbitmq/README.md -------------------------------------------------------------------------------- /dashboards/rabbitmq/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/rabbitmq/metadata.yaml -------------------------------------------------------------------------------- /dashboards/rabbitmq/rabbitmq-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/rabbitmq/rabbitmq-prometheus.json -------------------------------------------------------------------------------- /dashboards/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/README.md -------------------------------------------------------------------------------- /dashboards/redis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/metadata.yaml -------------------------------------------------------------------------------- /dashboards/redis/redis-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/redis/redis-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/redis/redis-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-gce-overview.json -------------------------------------------------------------------------------- /dashboards/redis/redis-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-prometheus.json -------------------------------------------------------------------------------- /dashboards/redis/redis-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-prometheus.png -------------------------------------------------------------------------------- /dashboards/redis/redis-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-usage.json -------------------------------------------------------------------------------- /dashboards/redis/redis-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/redis/redis-usage.png -------------------------------------------------------------------------------- /dashboards/sap-hana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/sap-hana/README.md -------------------------------------------------------------------------------- /dashboards/sap-hana/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/sap-hana/metadata.yaml -------------------------------------------------------------------------------- /dashboards/sap-hana/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/sap-hana/performance.json -------------------------------------------------------------------------------- /dashboards/sap-hana/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/sap-hana/performance.png -------------------------------------------------------------------------------- /dashboards/scylladb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/scylladb/README.md -------------------------------------------------------------------------------- /dashboards/scylladb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/scylladb/metadata.yaml -------------------------------------------------------------------------------- /dashboards/scylladb/scylladb-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/scylladb/scylladb-prometheus.json -------------------------------------------------------------------------------- /dashboards/servicemesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/README.md -------------------------------------------------------------------------------- /dashboards/servicemesh/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/client.json -------------------------------------------------------------------------------- /dashboards/servicemesh/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/client.png -------------------------------------------------------------------------------- /dashboards/servicemesh/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/metadata.yaml -------------------------------------------------------------------------------- /dashboards/servicemesh/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/overview.json -------------------------------------------------------------------------------- /dashboards/servicemesh/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/overview.png -------------------------------------------------------------------------------- /dashboards/servicemesh/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/service.json -------------------------------------------------------------------------------- /dashboards/servicemesh/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/servicemesh/service.png -------------------------------------------------------------------------------- /dashboards/solr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/solr/README.md -------------------------------------------------------------------------------- /dashboards/solr/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/solr/metadata.yaml -------------------------------------------------------------------------------- /dashboards/solr/solr-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/solr/solr-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/solr/solr-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/solr/solr-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/solr/solr-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/solr/solr-gce-overview.json -------------------------------------------------------------------------------- /dashboards/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/spanner/README.md -------------------------------------------------------------------------------- /dashboards/spanner/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/spanner/metadata.yaml -------------------------------------------------------------------------------- /dashboards/spanner/spanner.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/spanner/spanner.01.png -------------------------------------------------------------------------------- /dashboards/spanner/spanner.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/spanner/spanner.02.png -------------------------------------------------------------------------------- /dashboards/spanner/spanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/spanner/spanner.json -------------------------------------------------------------------------------- /dashboards/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/README.md -------------------------------------------------------------------------------- /dashboards/storage/bigtable-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/bigtable-monitoring.json -------------------------------------------------------------------------------- /dashboards/storage/cloudsql-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/cloudsql-monitoring.json -------------------------------------------------------------------------------- /dashboards/storage/datastore-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/datastore-monitoring.json -------------------------------------------------------------------------------- /dashboards/storage/firestore-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/firestore-monitoring.json -------------------------------------------------------------------------------- /dashboards/storage/memcache-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/memcache-monitoring.json -------------------------------------------------------------------------------- /dashboards/storage/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/metadata.yaml -------------------------------------------------------------------------------- /dashboards/storage/redis-ops-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/redis-ops-monitoring.json -------------------------------------------------------------------------------- /dashboards/storage/spanner-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/storage/spanner-monitoring.json -------------------------------------------------------------------------------- /dashboards/tensorflow-serving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tensorflow-serving/README.md -------------------------------------------------------------------------------- /dashboards/tensorflow-serving/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tensorflow-serving/metadata.yaml -------------------------------------------------------------------------------- /dashboards/tgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tgi/README.md -------------------------------------------------------------------------------- /dashboards/tgi/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tgi/metadata.yaml -------------------------------------------------------------------------------- /dashboards/tgi/tgi-prometheus.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tgi/tgi-prometheus.01.png -------------------------------------------------------------------------------- /dashboards/tgi/tgi-prometheus.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tgi/tgi-prometheus.02.png -------------------------------------------------------------------------------- /dashboards/tgi/tgi-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tgi/tgi-prometheus.json -------------------------------------------------------------------------------- /dashboards/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tomcat/README.md -------------------------------------------------------------------------------- /dashboards/tomcat/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tomcat/metadata.yaml -------------------------------------------------------------------------------- /dashboards/tomcat/tomcat-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tomcat/tomcat-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/tomcat/tomcat-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tomcat/tomcat-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/tomcat/tomcat-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tomcat/tomcat-gce-overview.json -------------------------------------------------------------------------------- /dashboards/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tools/README.md -------------------------------------------------------------------------------- /dashboards/tools/cloudtasks-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tools/cloudtasks-monitoring.json -------------------------------------------------------------------------------- /dashboards/tools/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/tools/metadata.yaml -------------------------------------------------------------------------------- /dashboards/torchserve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/torchserve/README.md -------------------------------------------------------------------------------- /dashboards/torchserve/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/torchserve/metadata.yaml -------------------------------------------------------------------------------- /dashboards/varnish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/varnish/README.md -------------------------------------------------------------------------------- /dashboards/varnish/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/varnish/metadata.yaml -------------------------------------------------------------------------------- /dashboards/varnish/varnish-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/varnish/varnish-gce-overview.json -------------------------------------------------------------------------------- /dashboards/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vault/README.md -------------------------------------------------------------------------------- /dashboards/vault/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vault/metadata.yaml -------------------------------------------------------------------------------- /dashboards/vault/vault-gce-overview.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vault/vault-gce-overview.01.png -------------------------------------------------------------------------------- /dashboards/vault/vault-gce-overview.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vault/vault-gce-overview.02.png -------------------------------------------------------------------------------- /dashboards/vault/vault-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vault/vault-gce-overview.json -------------------------------------------------------------------------------- /dashboards/velero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/velero/README.md -------------------------------------------------------------------------------- /dashboards/velero/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/velero/metadata.yaml -------------------------------------------------------------------------------- /dashboards/velero/velero-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/velero/velero-prometheus.json -------------------------------------------------------------------------------- /dashboards/velero/velero-prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/velero/velero-prometheus.png -------------------------------------------------------------------------------- /dashboards/vllm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/README.md -------------------------------------------------------------------------------- /dashboards/vllm/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/metadata.yaml -------------------------------------------------------------------------------- /dashboards/vllm/vllm-prometheus-2.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/vllm-prometheus-2.01.png -------------------------------------------------------------------------------- /dashboards/vllm/vllm-prometheus-2.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/vllm-prometheus-2.02.png -------------------------------------------------------------------------------- /dashboards/vllm/vllm-prometheus-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/vllm-prometheus-2.json -------------------------------------------------------------------------------- /dashboards/vllm/vllm-prometheus.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/vllm-prometheus.01.png -------------------------------------------------------------------------------- /dashboards/vllm/vllm-prometheus.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/vllm-prometheus.02.png -------------------------------------------------------------------------------- /dashboards/vllm/vllm-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vllm/vllm-prometheus.json -------------------------------------------------------------------------------- /dashboards/vmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/README.md -------------------------------------------------------------------------------- /dashboards/vmware/contention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/contention.json -------------------------------------------------------------------------------- /dashboards/vmware/contention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/contention.png -------------------------------------------------------------------------------- /dashboards/vmware/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/deprecated/README.md -------------------------------------------------------------------------------- /dashboards/vmware/deprecated/contention.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/deprecated/contention.json -------------------------------------------------------------------------------- /dashboards/vmware/deprecated/contention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/deprecated/contention.png -------------------------------------------------------------------------------- /dashboards/vmware/deprecated/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/deprecated/overview.json -------------------------------------------------------------------------------- /dashboards/vmware/deprecated/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/deprecated/overview.png -------------------------------------------------------------------------------- /dashboards/vmware/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/metadata.yaml -------------------------------------------------------------------------------- /dashboards/vmware/overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/overview.json -------------------------------------------------------------------------------- /dashboards/vmware/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/vmware/overview.png -------------------------------------------------------------------------------- /dashboards/wildfly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/wildfly/README.md -------------------------------------------------------------------------------- /dashboards/wildfly/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/wildfly/metadata.yaml -------------------------------------------------------------------------------- /dashboards/wildfly/wildfly-gce-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/wildfly/wildfly-gce-overview.json -------------------------------------------------------------------------------- /dashboards/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/windows/README.md -------------------------------------------------------------------------------- /dashboards/windows/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/windows/metadata.yaml -------------------------------------------------------------------------------- /dashboards/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/zookeeper/README.md -------------------------------------------------------------------------------- /dashboards/zookeeper/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dashboards/zookeeper/metadata.yaml -------------------------------------------------------------------------------- /dev-docs/DASHBOARD_TIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dev-docs/DASHBOARD_TIPS.md -------------------------------------------------------------------------------- /dm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dm/README.md -------------------------------------------------------------------------------- /dm/dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dm/dashboard.yaml -------------------------------------------------------------------------------- /dm/monitoring-dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dm/monitoring-dashboard.py -------------------------------------------------------------------------------- /dm/options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/dm/options.yaml -------------------------------------------------------------------------------- /integrations/activemq/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/activemq/documentation.yaml -------------------------------------------------------------------------------- /integrations/activemq/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/activemq/metadata.yaml -------------------------------------------------------------------------------- /integrations/aerospike/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/aerospike/documentation.yaml -------------------------------------------------------------------------------- /integrations/aerospike/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/aerospike/metadata.yaml -------------------------------------------------------------------------------- /integrations/airflow/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/airflow/documentation.yaml -------------------------------------------------------------------------------- /integrations/airflow/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/airflow/metadata.yaml -------------------------------------------------------------------------------- /integrations/apache/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/apache/documentation.yaml -------------------------------------------------------------------------------- /integrations/apache/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/apache/metadata.yaml -------------------------------------------------------------------------------- /integrations/apache/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/apache/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/apache/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/apache/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/argo-workflows/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/argo-workflows/metadata.yaml -------------------------------------------------------------------------------- /integrations/cassandra/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/cassandra/metadata.yaml -------------------------------------------------------------------------------- /integrations/consul/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/consul/documentation.yaml -------------------------------------------------------------------------------- /integrations/consul/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/consul/metadata.yaml -------------------------------------------------------------------------------- /integrations/consul/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/consul/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/couchbase/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/couchbase/metadata.yaml -------------------------------------------------------------------------------- /integrations/couchdb/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/couchdb/documentation.yaml -------------------------------------------------------------------------------- /integrations/couchdb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/couchdb/metadata.yaml -------------------------------------------------------------------------------- /integrations/couchdb/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/couchdb/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/dcgm/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/dcgm/metadata.yaml -------------------------------------------------------------------------------- /integrations/dcgm/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/dcgm/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/dcgm/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/dcgm/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/elasticsearch/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/elasticsearch/metadata.yaml -------------------------------------------------------------------------------- /integrations/etcd/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/etcd/documentation.yaml -------------------------------------------------------------------------------- /integrations/etcd/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/etcd/metadata.yaml -------------------------------------------------------------------------------- /integrations/etcd/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/etcd/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/flink/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/flink/documentation.yaml -------------------------------------------------------------------------------- /integrations/flink/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/flink/metadata.yaml -------------------------------------------------------------------------------- /integrations/flink/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/flink/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/flink/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/flink/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/hadoop/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hadoop/documentation.yaml -------------------------------------------------------------------------------- /integrations/hadoop/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hadoop/metadata.yaml -------------------------------------------------------------------------------- /integrations/hadoop/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hadoop/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/hadoop/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hadoop/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/haproxy/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/haproxy/documentation.yaml -------------------------------------------------------------------------------- /integrations/haproxy/haproxy_alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/haproxy/haproxy_alerts.yaml -------------------------------------------------------------------------------- /integrations/haproxy/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/haproxy/metadata.yaml -------------------------------------------------------------------------------- /integrations/hbase/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hbase/documentation.yaml -------------------------------------------------------------------------------- /integrations/hbase/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hbase/metadata.yaml -------------------------------------------------------------------------------- /integrations/hbase/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hbase/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/hbase/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/hbase/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/iis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/iis/metadata.yaml -------------------------------------------------------------------------------- /integrations/iis/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/iis/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/ingress-nginx/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/ingress-nginx/metadata.yaml -------------------------------------------------------------------------------- /integrations/istio/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/istio/documentation.yaml -------------------------------------------------------------------------------- /integrations/istio/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/istio/metadata.yaml -------------------------------------------------------------------------------- /integrations/istio/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/istio/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/jenkins/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jenkins/documentation.yaml -------------------------------------------------------------------------------- /integrations/jenkins/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jenkins/metadata.yaml -------------------------------------------------------------------------------- /integrations/jetstream/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jetstream/documentation.yaml -------------------------------------------------------------------------------- /integrations/jetstream/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jetstream/metadata.yaml -------------------------------------------------------------------------------- /integrations/jetty/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jetty/documentation.yaml -------------------------------------------------------------------------------- /integrations/jetty/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jetty/metadata.yaml -------------------------------------------------------------------------------- /integrations/jetty/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jetty/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/jetty/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jetty/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/jvm/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jvm/metadata.yaml -------------------------------------------------------------------------------- /integrations/jvm/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/jvm/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/kafka/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kafka/documentation.yaml -------------------------------------------------------------------------------- /integrations/kafka/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kafka/metadata.yaml -------------------------------------------------------------------------------- /integrations/kafka/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kafka/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/kafka/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kafka/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/kibana/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kibana/documentation.yaml -------------------------------------------------------------------------------- /integrations/kibana/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kibana/metadata.yaml -------------------------------------------------------------------------------- /integrations/kibana/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kibana/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/kuberay/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kuberay/documentation.yaml -------------------------------------------------------------------------------- /integrations/kuberay/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/kuberay/metadata.yaml -------------------------------------------------------------------------------- /integrations/llm-d/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/llm-d/documentation.yaml -------------------------------------------------------------------------------- /integrations/llm-d/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/llm-d/metadata.yaml -------------------------------------------------------------------------------- /integrations/llm-d/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/llm-d/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/memcached/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/memcached/documentation.yaml -------------------------------------------------------------------------------- /integrations/memcached/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/memcached/metadata.yaml -------------------------------------------------------------------------------- /integrations/mongodb/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mongodb/documentation.yaml -------------------------------------------------------------------------------- /integrations/mongodb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mongodb/metadata.yaml -------------------------------------------------------------------------------- /integrations/mongodb/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mongodb/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/mssql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mssql/metadata.yaml -------------------------------------------------------------------------------- /integrations/mssql/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mssql/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/mysql/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mysql/documentation.yaml -------------------------------------------------------------------------------- /integrations/mysql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mysql/metadata.yaml -------------------------------------------------------------------------------- /integrations/mysql/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mysql/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/mysql/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/mysql/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/nginx/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/nginx/documentation.yaml -------------------------------------------------------------------------------- /integrations/nginx/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/nginx/metadata.yaml -------------------------------------------------------------------------------- /integrations/nginx/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/nginx/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/nginx/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/nginx/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/nvidia-triton/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/nvidia-triton/metadata.yaml -------------------------------------------------------------------------------- /integrations/oracledb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/oracledb/metadata.yaml -------------------------------------------------------------------------------- /integrations/postgresql/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/postgresql/documentation.yaml -------------------------------------------------------------------------------- /integrations/postgresql/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/postgresql/metadata.yaml -------------------------------------------------------------------------------- /integrations/rabbitmq/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/rabbitmq/documentation.yaml -------------------------------------------------------------------------------- /integrations/rabbitmq/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/rabbitmq/metadata.yaml -------------------------------------------------------------------------------- /integrations/redis/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/redis/documentation.yaml -------------------------------------------------------------------------------- /integrations/redis/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/redis/metadata.yaml -------------------------------------------------------------------------------- /integrations/redis/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/redis/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/redis/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/redis/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/saphana/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/saphana/metadata.yaml -------------------------------------------------------------------------------- /integrations/saphana/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/saphana/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/scylladb/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/scylladb/documentation.yaml -------------------------------------------------------------------------------- /integrations/scylladb/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/scylladb/metadata.yaml -------------------------------------------------------------------------------- /integrations/solr/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/solr/documentation.yaml -------------------------------------------------------------------------------- /integrations/solr/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/solr/metadata.yaml -------------------------------------------------------------------------------- /integrations/solr/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/solr/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/solr/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/solr/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/tgi/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tgi/documentation.yaml -------------------------------------------------------------------------------- /integrations/tgi/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tgi/metadata.yaml -------------------------------------------------------------------------------- /integrations/tgi/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tgi/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/tomcat/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tomcat/documentation.yaml -------------------------------------------------------------------------------- /integrations/tomcat/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tomcat/metadata.yaml -------------------------------------------------------------------------------- /integrations/tomcat/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tomcat/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/tomcat/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/tomcat/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/torchserve/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/torchserve/documentation.yaml -------------------------------------------------------------------------------- /integrations/torchserve/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/torchserve/metadata.yaml -------------------------------------------------------------------------------- /integrations/varnish/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/varnish/documentation.yaml -------------------------------------------------------------------------------- /integrations/varnish/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/varnish/metadata.yaml -------------------------------------------------------------------------------- /integrations/varnish/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/varnish/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/vault/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/vault/metadata.yaml -------------------------------------------------------------------------------- /integrations/vault/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/vault/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/velero/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/velero/documentation.yaml -------------------------------------------------------------------------------- /integrations/velero/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/velero/metadata.yaml -------------------------------------------------------------------------------- /integrations/velero/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/velero/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/vllm/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/vllm/documentation.yaml -------------------------------------------------------------------------------- /integrations/vllm/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/vllm/metadata.yaml -------------------------------------------------------------------------------- /integrations/vllm/prometheus_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/vllm/prometheus_metadata.yaml -------------------------------------------------------------------------------- /integrations/wildfly/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/wildfly/metadata.yaml -------------------------------------------------------------------------------- /integrations/wildfly/ops_agent_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/wildfly/ops_agent_metadata.yaml -------------------------------------------------------------------------------- /integrations/zookeeper/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/zookeeper/documentation.yaml -------------------------------------------------------------------------------- /integrations/zookeeper/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/integrations/zookeeper/metadata.yaml -------------------------------------------------------------------------------- /scripts/alerts/validate_alerts_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/alerts/validate_alerts_format.py -------------------------------------------------------------------------------- /scripts/dashboard-importer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/.gitignore -------------------------------------------------------------------------------- /scripts/dashboard-importer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/README.md -------------------------------------------------------------------------------- /scripts/dashboard-importer/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/import.sh -------------------------------------------------------------------------------- /scripts/dashboard-importer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/package-lock.json -------------------------------------------------------------------------------- /scripts/dashboard-importer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/package.json -------------------------------------------------------------------------------- /scripts/dashboard-importer/src/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/src/convert.ts -------------------------------------------------------------------------------- /scripts/dashboard-importer/src/test_suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/src/test_suite.ts -------------------------------------------------------------------------------- /scripts/dashboard-importer/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/test.sh -------------------------------------------------------------------------------- /scripts/dashboard-importer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/tsconfig.json -------------------------------------------------------------------------------- /scripts/dashboard-importer/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard-importer/upload.sh -------------------------------------------------------------------------------- /scripts/dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard/Makefile -------------------------------------------------------------------------------- /scripts/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard/README.md -------------------------------------------------------------------------------- /scripts/dashboard/dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/scripts/dashboard/dashboard.sh -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/README.md -------------------------------------------------------------------------------- /terraform/agents/bindplane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/bindplane/README.md -------------------------------------------------------------------------------- /terraform/agents/bindplane/linux.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/bindplane/linux.tf -------------------------------------------------------------------------------- /terraform/agents/bindplane/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/bindplane/variables.tf -------------------------------------------------------------------------------- /terraform/agents/bindplane/windows.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/bindplane/windows.tf -------------------------------------------------------------------------------- /terraform/agents/cloud-opts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/cloud-opts/README.md -------------------------------------------------------------------------------- /terraform/agents/cloud-opts/linux.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/cloud-opts/linux.tf -------------------------------------------------------------------------------- /terraform/agents/cloud-opts/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/cloud-opts/variables.tf -------------------------------------------------------------------------------- /terraform/agents/cloud-opts/windows.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/agents/cloud-opts/windows.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/monitoring-dashboard-samples/HEAD/terraform/main.tf --------------------------------------------------------------------------------