@leverege/build-tools 2.124.0 → 2.124.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/dashboard/json/system/cloudnative-pg-v5-lev.json +9986 -0
- package/src/dashboard/json/system/stackdriver.json +406 -51
- package/src/helm-charts/prom-operator/README-GPU.md +42 -0
- package/src/helm-charts/prom-operator/helmup.plugin +2 -2
- package/src/helm-charts/prom-operator/stackdriver-exporter.yaml.ovh +28 -24
- package/src/helmdn.sh +1 -1
|
@@ -5,31 +5,35 @@
|
|
|
5
5
|
fullnameOverride: "prometheus-stack-stackdriver-metrics"
|
|
6
6
|
|
|
7
7
|
stackdriver:
|
|
8
|
-
|
|
8
|
+
projectIds:
|
|
9
|
+
- "${PROJECT_ID}"
|
|
10
|
+
ingestDelay: true
|
|
9
11
|
metrics:
|
|
10
|
-
|
|
11
|
-
agent.googleapis.com/cpu/utilization
|
|
12
|
-
agent.googleapis.com/memory/bytes_used
|
|
13
|
-
container.googleapis.com/accelerator/duty_cycle
|
|
14
|
-
container.googleapis.com/accelerator/memory_usage
|
|
15
|
-
container.googleapis.com/accelerator/request_count
|
|
16
|
-
firebasedatabase.googleapis.com/io/database_load
|
|
17
|
-
firebasedatabase.googleapis.com/network/active_connections
|
|
18
|
-
firebasedatabase.googleapis.com/network/sent_bytes_count
|
|
19
|
-
kubernetes.io/container/accelerator/duty_cycle
|
|
20
|
-
kubernetes.io/container/accelerator/memory_total
|
|
21
|
-
kubernetes.io/container/accelerator/memory_used
|
|
22
|
-
pubsub.googleapis.com/subscription/backlog_bytes
|
|
23
|
-
pubsub.googleapis.com/subscription/dead_letter_message_count
|
|
24
|
-
pubsub.googleapis.com/subscription/num_undelivered_messages
|
|
25
|
-
pubsub.googleapis.com/subscription/oldest_unacked_message_age
|
|
26
|
-
pubsub.googleapis.com/subscription/pull_ack_request_count
|
|
27
|
-
pubsub.googleapis.com/subscription/streaming_pull_ack_request_count
|
|
28
|
-
pubsub.googleapis.com/topic/message_sizes
|
|
29
|
-
pubsub.googleapis.com/topic/send_request_count
|
|
30
|
-
quota.googleapis.com/allocation/usage
|
|
31
|
-
storage.googleapis.com/network/received_bytes_count
|
|
32
|
-
storage.googleapis.com/network/sent_bytes_count
|
|
12
|
+
prefixes:
|
|
13
|
+
- agent.googleapis.com/cpu/utilization
|
|
14
|
+
- agent.googleapis.com/memory/bytes_used
|
|
15
|
+
- container.googleapis.com/accelerator/duty_cycle
|
|
16
|
+
- container.googleapis.com/accelerator/memory_usage
|
|
17
|
+
- container.googleapis.com/accelerator/request_count
|
|
18
|
+
- firebasedatabase.googleapis.com/io/database_load
|
|
19
|
+
- firebasedatabase.googleapis.com/network/active_connections
|
|
20
|
+
- firebasedatabase.googleapis.com/network/sent_bytes_count
|
|
21
|
+
- kubernetes.io/container/accelerator/duty_cycle
|
|
22
|
+
- kubernetes.io/container/accelerator/memory_total
|
|
23
|
+
- kubernetes.io/container/accelerator/memory_used
|
|
24
|
+
- pubsub.googleapis.com/subscription/backlog_bytes
|
|
25
|
+
- pubsub.googleapis.com/subscription/dead_letter_message_count
|
|
26
|
+
- pubsub.googleapis.com/subscription/num_undelivered_messages
|
|
27
|
+
- pubsub.googleapis.com/subscription/oldest_unacked_message_age
|
|
28
|
+
- pubsub.googleapis.com/subscription/pull_ack_request_count
|
|
29
|
+
- pubsub.googleapis.com/subscription/streaming_pull_ack_request_count
|
|
30
|
+
- pubsub.googleapis.com/topic/message_sizes
|
|
31
|
+
- pubsub.googleapis.com/topic/send_request_count
|
|
32
|
+
- quota.googleapis.com/allocation/usage
|
|
33
|
+
- storage.googleapis.com/network/received_bytes_count
|
|
34
|
+
- storage.googleapis.com/network/sent_bytes_count
|
|
35
|
+
- storage.googleapis.com/storage/total_bytes
|
|
36
|
+
- storage.googleapis.com/storage/object_count
|
|
33
37
|
|
|
34
38
|
# https://artifacthub.io/packages/helm/prometheus-community/prometheus-stackdriver-exporter?modal=values&path=serviceMonitor
|
|
35
39
|
serviceMonitor:
|
package/src/helmdn.sh
CHANGED
|
@@ -54,7 +54,7 @@ GITTOP=`git rev-parse --show-toplevel`
|
|
|
54
54
|
cd $GITTOP
|
|
55
55
|
|
|
56
56
|
overwhelm
|
|
57
|
-
[ $? -ne 0 ] && printf "\n\n***Aborting
|
|
57
|
+
[ $? -ne 0 ] && printf "\n\n***Aborting helmdn...\n\n" && exit 1
|
|
58
58
|
|
|
59
59
|
GCP_PROJECT_ID="$(getProjectIdFromK8sContext)"
|
|
60
60
|
|