-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathnew_metric.sh
executable file
·50 lines (42 loc) · 1.09 KB
/
new_metric.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
#
# Initializes reports for a newly added metric.
#
# Example usage:
#
# sql/new_metric.sh histograms bootupJs lighthouse
#
# Where the first argument is the chart type,
# the second argument is the metric name,
# and the third argument is the BQ dataset.
set -eo pipefail
VIZ=$1
METRIC=$2
DATASET=$3
if [ -z "$VIZ" ]; then
echo "Chart type argument required." >&2
echo "Example usage: sql/new_metric.sh histograms bootupJs lighthouse" >&2
exit 1
fi
if [ -z "$METRIC" ]; then
echo "Metric argument required." >&2
echo "Example usage: sql/new_metric.sh histograms bootupJs lighthouse" >&2
exit 1
fi
if [ -z "$DATASET" ]; then
echo "Dataset argument required." >&2
echo "Example usage: sql/new_metric.sh histograms bootupJs lighthouse" >&2
exit 1
fi
if [ "$VIZ" == "histograms" ]; then
cmd='sql/get_bigquery_dates.sh "$DATASET" "" | xargs -I date sql/generate_report.sh -d date/"$METRIC".json'
fi
if [ "$VIZ" == "timeseries" ]; then
cmd='sql/generate_report.sh -d "$METRIC".json'
fi
eval $cmd
lenses=$(ls -1 sql/lens)
for lens in $lenses; do
cmd+=" -l $lens"
eval $cmd
done