influxdb/flags.yml

144 lines
4.3 KiB
YAML

# 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: Group Window Aggregate Transpose
description: Enables the GroupWindowAggregateTransposeRule for all enabled window aggregates
key: groupWindowAggregateTranspose
default: false
contact: Query Team
- name: New Label Package
description: Enables the refactored labels api
key: newLabels
default: false
contact: Alirie Gray
lifetime: temporary
- 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: Query Tracing
description: Turn on query tracing for queries that are sampled
key: queryTracing
default: false
contact: Query Team
lifetime: permanent
- name: Notebooks
description: Determine if the notebook feature's route and navbar icon are visible to the user
key: notebooks
default: false
contact: Monitoring Team
lifetime: temporary
expose: true
# This notebooksApi flag only controls the specific API calls that the frontend uses,
# not if the notebooks button is enabled on the sidebar. The notebooks flag (above) controls
# the display of the notebooks button on the sidebar. The notebooksAPI flag should be set to true
# to ensure the UI sends requests that the OSS backend can handle.
- name: Notebooks Service API
description: Enable the Equivalent notebooksd Service API
key: notebooksApi
default: true
contact: Edge Team
lifetime: temporary
expose: true
- name: Inject Latest Success Time
description: Inject the latest successful task run timestamp into a Task query extern when executing.
key: injectLatestSuccessTime
default: false
contact: Compute Team
- name: Enforce Organization Dashboard Limits
description: Enforces the default limit params for the dashboards api when orgs are set
key: enforceOrgDashboardLimits
default: false
contact: Compute Team
- name: Time Filter Flags
description: Filter task run list based on before and after flags
key: timeFilterFlags
contact: Compute Team
default: false
expose: true
- name: UI CSV Uploader
description: Adds the ability to upload data from a CSV file to a bucket
key: csvUploader
default: true
contact: Monitoring Team
expose: true
lifetime: temporary
- name: Editable Telegraf Configurations
description: Edit telegraf configurations from the UI
key: editTelegrafs
default: true
contact: Monitoring Team
expose: true
lifetime: temporary
- name: Default Monaco Selection to EOF
description: Positions the cursor at the end of the line(s) when using the monaco editor
key: cursorAtEOF
default: false
contact: Monitoring Team
expose: true
lifetime: temporary
- name: Refresh Single Cell
description: Refresh a single cell on the dashboard rather than the entire dashboard
key: refreshSingleCell
default: true
contact: Monitoring Team
expose: true
lifetime: temporary
- name: Range Annotations
description: Enables the creation of Range Annotations on Drag (if annotation write mode is activated)
key: rangeAnnotations
default: false
contact: Jill Pelavin/ Dumplings Team
lifetime: temporary
expose: true
- name: Annotations UI
description: Management, display, and manual addition of Annotations from the UI
key: annotations
default: false
contact: Monitoring Team
lifetime: temporary
expose: true