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 'app/assets/javascripts/monitoring/queries')
-rw-r--r--app/assets/javascripts/monitoring/queries/get_annotations.query.graphql27
-rw-r--r--app/assets/javascripts/monitoring/queries/get_dashboard_validation_warnings.query.graphql19
-rw-r--r--app/assets/javascripts/monitoring/queries/get_environments.query.graphql11
3 files changed, 0 insertions, 57 deletions
diff --git a/app/assets/javascripts/monitoring/queries/get_annotations.query.graphql b/app/assets/javascripts/monitoring/queries/get_annotations.query.graphql
deleted file mode 100644
index 32b982ff195..00000000000
--- a/app/assets/javascripts/monitoring/queries/get_annotations.query.graphql
+++ /dev/null
@@ -1,27 +0,0 @@
-query getAnnotations(
- $projectPath: ID!
- $environmentName: String
- $dashboardPath: String!
- $startingFrom: Time!
-) {
- project(fullPath: $projectPath) {
- id
- environments(name: $environmentName) {
- nodes {
- id
- name
- metricsDashboard(path: $dashboardPath) {
- annotations(from: $startingFrom) {
- nodes {
- id
- description
- startingAt
- endingAt
- panelId
- }
- }
- }
- }
- }
- }
-}
diff --git a/app/assets/javascripts/monitoring/queries/get_dashboard_validation_warnings.query.graphql b/app/assets/javascripts/monitoring/queries/get_dashboard_validation_warnings.query.graphql
deleted file mode 100644
index a61d601cd34..00000000000
--- a/app/assets/javascripts/monitoring/queries/get_dashboard_validation_warnings.query.graphql
+++ /dev/null
@@ -1,19 +0,0 @@
-query getDashboardValidationWarnings(
- $projectPath: ID!
- $environmentName: String
- $dashboardPath: String!
-) {
- project(fullPath: $projectPath) {
- id
- environments(name: $environmentName) {
- nodes {
- id
- name
- metricsDashboard(path: $dashboardPath) {
- path
- schemaValidationWarnings
- }
- }
- }
- }
-}
diff --git a/app/assets/javascripts/monitoring/queries/get_environments.query.graphql b/app/assets/javascripts/monitoring/queries/get_environments.query.graphql
deleted file mode 100644
index 48d0a780fc7..00000000000
--- a/app/assets/javascripts/monitoring/queries/get_environments.query.graphql
+++ /dev/null
@@ -1,11 +0,0 @@
-query getEnvironments($projectPath: ID!, $search: String, $states: [String!]) {
- project(fullPath: $projectPath) {
- id
- data: environments(search: $search, states: $states) {
- environments: nodes {
- name
- id
- }
- }
- }
-}