Updated code stats collection

This commit is contained in:
Torkel Ödegaard
2019-03-12 15:08:46 +01:00
parent 94677ba874
commit 9f4bca503a
2 changed files with 18 additions and 6 deletions

View File

@@ -1,16 +1,23 @@
#!/bin/bash
echo "Collecting code stats (typescript errors & more)"
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --noImplicitAny true | grep -oP 'Found \K(\d+)')"
DIRECTIVES="$(grep -r -o directive public/app/**/* | wc -l)"
CONTROLLERS="${grep -r -oP \"class .*Ctrl\" public/app/**/* | wc -l}"
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/**/* | wc -l)"
echo "Typescript errors: $ERROR_COUNT"
echo "Directives: $DIRECTIVES"
echo "Controllers: $CONTROLLERS"
curl \
-d "{\"metrics\":{\"noImplicitAny\": $ERROR_COUNT}}" \
-H "Content-Type: application/json" \
-u ci:$CIRCLE_STATS \
-X POST https://stats.grafana.org/metric-receiver
-d "{\"metrics\": {
\"ci.code.noImplicitAny\": $ERROR_COUNT,
\"ci.code.directives\": $DIRECTIVES,
\"ci.code.controllers\": $CONTROLLERS
}
}" \
-H "Content-Type: application/json" \
-u ci:$CIRCLE_STATS_PWD \
-X POST https://stats.grafana.org/metric-receiver