mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
4b16cd6cc8
* Build: introduce shellcheck Fixes #16198
19 lines
483 B
Bash
Executable File
19 lines
483 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Publishing CI Metrics"
|
|
|
|
data=""
|
|
|
|
for ((i = 1; i <= $#; i++ )); do
|
|
remainder="${!i}"
|
|
first="${remainder%%=*}"; remainder="${remainder#*=}"
|
|
if [ -n "$data" ]; then
|
|
data="$data,"
|
|
fi
|
|
data=''$data'{"name": "'${first}'", "value": '${remainder}', "interval": 60, "mtype": "gauge", "time": '$(date +%s)'}'
|
|
done
|
|
|
|
curl "https://6371:$GRAFANA_MISC_STATS_API_KEY@graphite-us-central1.grafana.net/metrics" \
|
|
-H 'Content-type: application/json' \
|
|
-d "[$data]"
|