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: 9b7e34ed5ea0a89188a0ac57f40960ff9ff0e64e (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  "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"
        },
        "ci": {
          "type": "number"
        }
      }
    },
    "wal_rate_sli_query": {
      "type": "object",
      "properties": {
        "main": {
          "type": "string"
        },
        "ci": {
          "type": "string"
        }
      }
    },
    "wal_rate_slo": {
      "type": "object",
      "properties": {
        "main": {
          "type": "integer"
        },
        "ci": {
          "type": "integer"
        }
      }
    }
  },
  "additionalProperties": true
}