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

pod_dashboard_service.rb « dashboard « metrics « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16b87d2d587d81b88e5fa9be81d729b3c6a394c0 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Metrics
  module Dashboard
    class PodDashboardService < ::Metrics::Dashboard::PredefinedDashboardService
      DASHBOARD_PATH = 'config/prometheus/pod_metrics.yml'
      DASHBOARD_NAME = 'Pod Health'
    end
  end
end