Welcome to mirror list, hosted at ThFree Co, Russian Federation.

charts.html.haml « pipelines « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7496ca97d56bf9e5eafdcec4ec9c13d7ec8031e6 (plain)
1
2
3
4
5
6
7
- page_title _('CI / CD Charts')

#js-project-pipelines-charts-app{ data: { counts: @counts, success_ratio: success_ratio(@counts),
  times_chart: { labels: @charts[:pipeline_times].labels, values: @charts[:pipeline_times].pipeline_times },
  last_week_chart: { labels: @charts[:week].labels, totals: @charts[:week].total, success: @charts[:week].success },
  last_month_chart: { labels: @charts[:month].labels, totals: @charts[:month].total, success: @charts[:month].success },
  last_year_chart: { labels: @charts[:year].labels, totals: @charts[:year].total, success: @charts[:year].success } } }