debian-mirror-gitlab/app/views/projects/services/prometheus/_configuration_banner.html.haml

27 lines
1.1 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
%h4
= s_('PrometheusService|Auto configuration')
- if service.manual_configuration?
2018-11-08 19:23:39 +05:30
.info-well
2018-03-17 18:26:18 +05:30
= s_('PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration below')
- else
.container-fluid
.row
2018-12-13 13:39:08 +05:30
- if service.prometheus_available?
2018-03-17 18:26:18 +05:30
.col-sm-2
.svg-container
= image_tag 'illustrations/monitoring/getting_started.svg'
.col-sm-10
2020-07-28 23:09:34 +05:30
%p.text-success.gl-mt-3
2018-03-17 18:26:18 +05:30
= s_('PrometheusService|Prometheus is being automatically managed on your clusters')
= link_to s_('PrometheusService|Manage clusters'), project_clusters_path(project), class: 'btn'
- else
.col-sm-2
= image_tag 'illustrations/monitoring/loading.svg'
.col-sm-10
2020-07-28 23:09:34 +05:30
%p.gl-mt-3
2018-03-17 18:26:18 +05:30
= s_('PrometheusService|Automatically deploy and configure Prometheus on your clusters to monitor your projects environments')
= link_to s_('PrometheusService|Install Prometheus on clusters'), project_clusters_path(project), class: 'btn btn-success'
%hr