forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flags.yml
130 lines (113 loc) · 3.91 KB
/
flags.yml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# This file defines feature flags.
#
# It is used for code generation in the ./kit/feature package.
# If you change this file, run `make flags` to regenerate.
#
# Format details:
#
# - name: Human-readable name
# description: Human-readable description
# key: Programmatic name
# default: Used when unable to reach server and to infer flag type
# contact: Contact for information or issues regarding the flag
# lifetime: Expected lifetime of the flag; temporary or permanent, default temporary
# expose: Boolean indicating whether the flag should be exposed to callers; default false
- name: App Metrics
description: Send UI Telementry to Tools cluster - should always be false in OSS
key: appMetrics
default: false
expose: true
contact: Bucky, Monitoring Team
lifetime: permanent
- name: Backend Example
description: A permanent backend example boolean flag
key: backendExample
default: false
contact: Gavin Cabbage
lifetime: permanent
- name: Community Templates
description: Replace current template uploading functionality with community driven templates
key: communityTemplates
default: false
expose: true
contact: Bucky, Johnny Steenbergen (Berg)
lifetime: permanent
- name: Frontend Example
description: A temporary frontend example integer flag
key: frontendExample
default: 42
contact: Gavin Cabbage
expose: true
- name: Push Down Window Aggregate Count
description: Enable Count variant of PushDownWindowAggregateRule and PushDownBareAggregateRule
key: pushDownWindowAggregateCount
default: false
contact: Query Team
- name: Push Down Window Aggregate Sum
description: Enable Sum variant of PushDownWindowAggregateRule and PushDownBareAggregateRule
key: pushDownWindowAggregateSum
default: false
contact: Query Team
- name: Push Down Window Aggregate Min
description: Enable Min variant of PushDownWindowAggregateRule and PushDownBareAggregateRule
key: pushDownWindowAggregateMin
default: false
contact: Query Team
- name: Push Down Window Aggregate Max
description: Enable Max variant of PushDownWindowAggregateRule and PushDownBareAggregateRule
key: pushDownWindowAggregateMax
default: false
contact: Query Team
- name: Push Down Window Aggregate Mean
description: Enable Mean variant of PushDownWindowAggregateRule and PushDownBareAggregateRule
key: pushDownWindowAggregateMean
default: false
contact: Query Team
- name: Group Window Aggregate Transpose
description: Enables the GroupWindowAggregateTransposeRule for all enabled window aggregates
key: groupWindowAggregateTranspose
default: false
contact: Query Team
- name: New Auth Package
description: Enables the refactored authorization api
key: newAuth
default: false
contact: Alirie Gray
lifetime: temporaryc
- name: New Label Package
description: Enables the refactored labels api
key: newLabels
default: false
contact: Alirie Gray
lifetime: temporary
- name: New Hydrate Vars Functionality
description: Enables a minimalistic variable hydration
key: hydratevars
default: false
contact: Ariel Salem / Monitoring Team
lifetime: temporary
expose: true
- name: Memory Optimized Fill
description: Enable the memory optimized fill()
key: memoryOptimizedFill
default: false
contact: Query Team
lifetime: temporary
- name: Memory Optimized Schema Mutation
description: Enable the memory optimized schema mutation functions
key: memoryOptimizedSchemaMutation
default: false
contact: Query Team
lifetime: temporary
- name: Urm Free Tasks
description: allow task system to operate without creating additional urms
key: urmFreeTasks
default: false
contact: Lyon Hill
lifetime: temporary
- name: Simple Task Options Extraction
description: Simplified task options extraction to avoid undefined functions when saving tasks
key: simpleTaskOptionsExtraction
default: false
contact: Brett Buddin
lifetime: temporary