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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index e79d52d4d10..22ca25e45d3 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -1883,6 +1883,16 @@ type Environment {
id: ID!
"""
+ Metrics dashboard schema for the environment
+ """
+ metricsDashboard(
+ """
+ Path to a file which defines metrics dashboard eg: 'config/prometheus/common_metrics.yml'
+ """
+ path: String!
+ ): MetricsDashboard
+
+ """
Human-readable name of the environment
"""
name: String!
@@ -5278,6 +5288,13 @@ type Metadata {
version: String!
}
+type MetricsDashboard {
+ """
+ Path to a file with the dashboard definition
+ """
+ path: String
+}
+
"""
Represents a milestone.
"""