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

application_setting_prometheus_alert_db_indicators_settings.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccd18f3d67876d3e75ac9852c20a0cad20062c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "description": "Prometheus Alert Based Db indicators Settings",
  "type": "object",
  "properties": {
    "prometheus_api_url": {
      "type": "string"
    },
    "apdex_sli_query": {
      "type": "object",
      "properties": {
        "main": {
          "type": "string"
        },
        "ci": {
          "type": "string"
        }
      }
    },
    "apdex_slo": {
      "type": "object",
      "properties": {
        "main": {
          "type": "number",
          "format": "float"
        },
        "ci": {
          "type": "number",
          "format": "float"
        }
      }
    }
  },
  "additionalProperties": false
}