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

redis_hll.json « schema « metrics « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35d520a5833e28321bccc50a670e069102bcaa37 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
  "if": {
    "properties": {
      "data_source": {
        "const": "redis_hll"
      }
    }
  },
  "then": {
    "oneOf": [
      {
        "properties": {
          "instrumentation_class": {
            "const": "RedisHLLMetric"
          },
          "options": {
            "type": "object",
            "properties": {
              "events": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "required": [
              "events"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "instrumentation_class",
          "options"
        ]
      },
      {
        "properties": {
          "instrumentation_class": {
            "const": "AggregatedMetric"
          },
          "options": {
            "type": "object",
            "properties": {
              "aggregate": {
                "type": "object",
                "properties": {
                  "operator": {
                    "enum": [
                      "OR",
                      "AND"
                    ]
                  },
                  "attribute": {
                    "type": "string"
                  }
                },
                "required": [
                  "operator",
                  "attribute"
                ],
                "additionalProperties": false
              },
              "events": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "required": [
              "aggregate",
              "events"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "instrumentation_class",
          "options"
        ]
      },
      {
        "properties": {
          "key_path": {
            "description": "Legacy metrics that do not match with the schema",
            "enum": [
              "usage_activity_by_stage_monthly.create.merge_requests_users",
              "usage_activity_by_stage_monthly.create.action_monthly_active_users_web_ide_edit",
              "usage_activity_by_stage_monthly.create.action_monthly_active_users_sfe_edit",
              "usage_activity_by_stage_monthly.create.action_monthly_active_users_snippet_editor_edit",
              "usage_activity_by_stage_monthly.create.action_monthly_active_users_sse_edit",
              "counts_monthly.aggregated_metrics.product_analytics_test_metrics_union",
              "counts_weekly.aggregated_metrics.product_analytics_test_metrics_union",
              "counts_monthly.aggregated_metrics.product_analytics_test_metrics_intersection",
              "counts_weekly.aggregated_metrics.product_analytics_test_metrics_intersection"
            ]
          }
        }
      }
    ]
  }
}