Skip to content

Instantly share code, notes, and snippets.

@haampie
Last active July 18, 2023 21:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haampie/cb2c363003821e0176372a5be35abf2a to your computer and use it in GitHub Desktop.
Save haampie/cb2c363003821e0176372a5be35abf2a to your computer and use it in GitHub Desktop.
waterfall-gitlab.sh
#!/bin/sh
pipeline="$1"
[ -z "$pipeline" ] && echo "Usage: $0 <pipeline-id>" && exit 1
project=2
url="https://gitlab.spack.io/api/v4/projects/$project"
# Get the bridges, shouldn't be paginated
bridges_url="$url/pipelines/$pipeline/bridges"
print_cmd() {
echo "$@"
"$@"
}
# Obtain the child pipeline ids
child_pipelines=$(curl -LfsS "$bridges_url" | jq -r '.[].downstream_pipeline.id')
fetch_pipeline() {
jobs_url="$url/pipelines/$1/jobs"
per_page=100
page=1
while true; do
file="jobs-$project-$1-$page.json"
# Fetch if the file doesn't exist
[ -f "$file" ] || print_cmd curl -LfsS "$jobs_url?include_retried=true&per_page=$per_page&page=$page" -o "$file" || break
jq -e "length < $per_page" "$file" > /dev/null && break
page=$((page + 1))
done
}
echo "Fetching main pipeline"
fetch_pipeline "$pipeline"
for child_pipeline in $child_pipelines; do
echo "Fetching pipeline $child_pipeline"
fetch_pipeline "$child_pipeline"
done
# Finally output as trace.json
jq \
'map(['\
'select(.started_at and .finished_at) | '\
'{name: (.name), cat: "PERF", ph: "B", pid: .pipeline.id, tid: .id, ts: (.started_at | sub("\\.[0-9]+Z$"; "Z") | fromdate * 10e5)},'\
'{name: (.name), cat: "PERF", ph: "E", pid: .pipeline.id, tid: .id, ts: (.finished_at | sub("\\.[0-9]+Z$"; "Z") | fromdate * 10e5)}'\
']) | flatten(1) | .[]' jobs-$project-*.json | jq -s > trace.json
@haampie
Copy link
Author

haampie commented Jul 6, 2023

Usage:

./waterfall-gitlab.sh <pipeline id>

Outputs a trace.json file, which can be uploaded to https://ui.perfetto.dev/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment