Explorar o código

devenv: fix uid for bulk alert dashboards

Marcus Efraimsson %!s(int64=7) %!d(string=hai) anos
pai
achega
30fe407e8e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      devenv/setup.sh

+ 1 - 1
devenv/setup.sh

@@ -21,7 +21,7 @@ bulkAlertingDashboard() {
 		COUNTER=0
 		MAX=100
 		while [  $COUNTER -lt $MAX ]; do
-				jsonnet -o "bulk_alerting_dashboards/alerting_dashboard${COUNTER}.json" -e "local bulkDash = import 'bulk_alerting_dashboards/bulkdash_alerting.jsonnet'; bulkDash + {  uid: 'uid-${COUNTER}',  title: 'alerting-title-${COUNTER}' }"
+				jsonnet -o "bulk_alerting_dashboards/alerting_dashboard${COUNTER}.json" -e "local bulkDash = import 'bulk_alerting_dashboards/bulkdash_alerting.jsonnet'; bulkDash + {  uid: 'bd-${COUNTER}',  title: 'alerting-title-${COUNTER}' }"
 				let COUNTER=COUNTER+1
 		done