Skip to content

Commit 7fd2af6

Browse files
authored
feat(logs): Add meta attributes feature (#95029)
Refs: getsentry/relay#4804 Refs: getsentry/relay#4918
1 parent d1662dc commit 7fd2af6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/sentry/features/temporary.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,8 @@ def register_temporary_features(manager: FeatureManager):
525525
manager.add("organizations:ourlogs-ingestion", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
526526
# Enable calculated byte counts on ingested logs.
527527
manager.add("organizations:ourlogs-calculated-byte-count", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
528+
# Enable extraction of meta attributes for logs.
529+
manager.add("organizations:ourlogs-meta-attributes", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
528530
# Enable our logs stats to be displayed in the UI.
529531
manager.add("organizations:ourlogs-stats", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
530532
# Enable the visualize sidebar in the logs UI.

src/sentry/relay/config/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@
6161
"projects:span-metrics-extraction-addons",
6262
"organizations:indexed-spans-extraction",
6363
"projects:relay-otel-endpoint",
64-
"organizations:ourlogs-ingestion",
6564
"organizations:ourlogs-calculated-byte-count",
65+
"organizations:ourlogs-ingestion",
66+
"organizations:ourlogs-meta-attributes",
6667
"organizations:view-hierarchy-scrubbing",
6768
"organizations:performance-issues-spans",
6869
"organizations:relay-playstation-ingestion",

0 commit comments

Comments
 (0)