├── .github ├── dependabot.yml └── workflows │ ├── optimize.yml │ ├── reports.yml │ ├── sync-slack.yml │ └── sync.yml ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── _sass └── minima │ └── custom-variables.scss ├── bin ├── reports.sh └── run-trino.sh ├── catalog ├── git.properties ├── github.properties ├── slack.properties ├── trinocicd.properties └── trinoslack.properties ├── reports ├── ci-cd │ └── index.md ├── index.md ├── pr │ └── index.md └── tests │ └── index.md └── sql ├── ci-cd ├── concurrent-jobs-per-day.sql ├── health.sql ├── jobs-duration.sql ├── longest-jobs.sql ├── longest-steps-of-longest-jobs.sql ├── runs-duration-per-day-branch.sql ├── runs-duration-per-day.sql ├── runs-job-cumulative-duration-per-day-branch.sql ├── runs-job-cumulative-duration-per-day.sql ├── runs-queue-time-per-day-branch.sql ├── runs-queue-time-per-day.sql └── success-ratio-per-day.sql ├── optimize.sql ├── pr ├── abandoned-prs.sql ├── active-contributors.sql ├── author-responsiveness.sql ├── authors-per-month.sql ├── avg-time-to-first-review.sql ├── avg-time-to-merge-per-org.sql ├── avg-time-to-merge.sql ├── awaiting-review.sql ├── burndown-trailing.sql ├── burndown.sql ├── changes-per-month.sql ├── commit-modules.sql ├── idents.sql ├── inactivity-on-prs.sql ├── mergers-authors.sql ├── open-pr-age.sql ├── pr-activity.sql ├── prs-per-author.sql ├── reviewer-responsiveness.sql ├── reviewers-authors.sql ├── reviewers-per-pr.sql ├── reviewers-top-authors.sql ├── reviews-per-author-assoc.sql ├── running-prs.sql ├── sith-lords.sql ├── stale-prs.sql ├── time-to-first-review.sql ├── time-to-merge-per-size.sql ├── time-to-merge.sql ├── top-authors.sql ├── top-commented-prs.sql ├── top-mergers.sql └── top-reviewers.sql ├── tests-schema.sql └── tests ├── annotations.sql ├── jobs.sql └── tests.sql /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/optimize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/.github/workflows/optimize.yml -------------------------------------------------------------------------------- /.github/workflows/reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/.github/workflows/reports.yml -------------------------------------------------------------------------------- /.github/workflows/sync-slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/.github/workflows/sync-slack.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/_config.yml -------------------------------------------------------------------------------- /_sass/minima/custom-variables.scss: -------------------------------------------------------------------------------- 1 | $content-width: 100%; 2 | -------------------------------------------------------------------------------- /bin/reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/bin/reports.sh -------------------------------------------------------------------------------- /bin/run-trino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/bin/run-trino.sh -------------------------------------------------------------------------------- /catalog/git.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/catalog/git.properties -------------------------------------------------------------------------------- /catalog/github.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/catalog/github.properties -------------------------------------------------------------------------------- /catalog/slack.properties: -------------------------------------------------------------------------------- 1 | connector.name=slack 2 | token=${ENV:SLACK_API_TOKEN} 3 | max-requests-per-second=0.3 4 | -------------------------------------------------------------------------------- /catalog/trinocicd.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/catalog/trinocicd.properties -------------------------------------------------------------------------------- /catalog/trinoslack.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/catalog/trinoslack.properties -------------------------------------------------------------------------------- /reports/ci-cd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/reports/ci-cd/index.md -------------------------------------------------------------------------------- /reports/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/reports/index.md -------------------------------------------------------------------------------- /reports/pr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/reports/pr/index.md -------------------------------------------------------------------------------- /reports/tests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/reports/tests/index.md -------------------------------------------------------------------------------- /sql/ci-cd/concurrent-jobs-per-day.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/concurrent-jobs-per-day.sql -------------------------------------------------------------------------------- /sql/ci-cd/health.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/health.sql -------------------------------------------------------------------------------- /sql/ci-cd/jobs-duration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/jobs-duration.sql -------------------------------------------------------------------------------- /sql/ci-cd/longest-jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/longest-jobs.sql -------------------------------------------------------------------------------- /sql/ci-cd/longest-steps-of-longest-jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/longest-steps-of-longest-jobs.sql -------------------------------------------------------------------------------- /sql/ci-cd/runs-duration-per-day-branch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/runs-duration-per-day-branch.sql -------------------------------------------------------------------------------- /sql/ci-cd/runs-duration-per-day.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/runs-duration-per-day.sql -------------------------------------------------------------------------------- /sql/ci-cd/runs-job-cumulative-duration-per-day-branch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/runs-job-cumulative-duration-per-day-branch.sql -------------------------------------------------------------------------------- /sql/ci-cd/runs-job-cumulative-duration-per-day.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/runs-job-cumulative-duration-per-day.sql -------------------------------------------------------------------------------- /sql/ci-cd/runs-queue-time-per-day-branch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/runs-queue-time-per-day-branch.sql -------------------------------------------------------------------------------- /sql/ci-cd/runs-queue-time-per-day.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/runs-queue-time-per-day.sql -------------------------------------------------------------------------------- /sql/ci-cd/success-ratio-per-day.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/ci-cd/success-ratio-per-day.sql -------------------------------------------------------------------------------- /sql/optimize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/optimize.sql -------------------------------------------------------------------------------- /sql/pr/abandoned-prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/abandoned-prs.sql -------------------------------------------------------------------------------- /sql/pr/active-contributors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/active-contributors.sql -------------------------------------------------------------------------------- /sql/pr/author-responsiveness.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/author-responsiveness.sql -------------------------------------------------------------------------------- /sql/pr/authors-per-month.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/authors-per-month.sql -------------------------------------------------------------------------------- /sql/pr/avg-time-to-first-review.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/avg-time-to-first-review.sql -------------------------------------------------------------------------------- /sql/pr/avg-time-to-merge-per-org.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/avg-time-to-merge-per-org.sql -------------------------------------------------------------------------------- /sql/pr/avg-time-to-merge.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/avg-time-to-merge.sql -------------------------------------------------------------------------------- /sql/pr/awaiting-review.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/awaiting-review.sql -------------------------------------------------------------------------------- /sql/pr/burndown-trailing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/burndown-trailing.sql -------------------------------------------------------------------------------- /sql/pr/burndown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/burndown.sql -------------------------------------------------------------------------------- /sql/pr/changes-per-month.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/changes-per-month.sql -------------------------------------------------------------------------------- /sql/pr/commit-modules.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/commit-modules.sql -------------------------------------------------------------------------------- /sql/pr/idents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/idents.sql -------------------------------------------------------------------------------- /sql/pr/inactivity-on-prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/inactivity-on-prs.sql -------------------------------------------------------------------------------- /sql/pr/mergers-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/mergers-authors.sql -------------------------------------------------------------------------------- /sql/pr/open-pr-age.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/open-pr-age.sql -------------------------------------------------------------------------------- /sql/pr/pr-activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/pr-activity.sql -------------------------------------------------------------------------------- /sql/pr/prs-per-author.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/prs-per-author.sql -------------------------------------------------------------------------------- /sql/pr/reviewer-responsiveness.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/reviewer-responsiveness.sql -------------------------------------------------------------------------------- /sql/pr/reviewers-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/reviewers-authors.sql -------------------------------------------------------------------------------- /sql/pr/reviewers-per-pr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/reviewers-per-pr.sql -------------------------------------------------------------------------------- /sql/pr/reviewers-top-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/reviewers-top-authors.sql -------------------------------------------------------------------------------- /sql/pr/reviews-per-author-assoc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/reviews-per-author-assoc.sql -------------------------------------------------------------------------------- /sql/pr/running-prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/running-prs.sql -------------------------------------------------------------------------------- /sql/pr/sith-lords.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/sith-lords.sql -------------------------------------------------------------------------------- /sql/pr/stale-prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/stale-prs.sql -------------------------------------------------------------------------------- /sql/pr/time-to-first-review.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/time-to-first-review.sql -------------------------------------------------------------------------------- /sql/pr/time-to-merge-per-size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/time-to-merge-per-size.sql -------------------------------------------------------------------------------- /sql/pr/time-to-merge.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/time-to-merge.sql -------------------------------------------------------------------------------- /sql/pr/top-authors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/top-authors.sql -------------------------------------------------------------------------------- /sql/pr/top-commented-prs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/top-commented-prs.sql -------------------------------------------------------------------------------- /sql/pr/top-mergers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/top-mergers.sql -------------------------------------------------------------------------------- /sql/pr/top-reviewers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/pr/top-reviewers.sql -------------------------------------------------------------------------------- /sql/tests-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/tests-schema.sql -------------------------------------------------------------------------------- /sql/tests/annotations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/tests/annotations.sql -------------------------------------------------------------------------------- /sql/tests/jobs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/tests/jobs.sql -------------------------------------------------------------------------------- /sql/tests/tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinodb/reports/HEAD/sql/tests/tests.sql --------------------------------------------------------------------------------