8000 Add analytics for event rule engine by joe4dev · Pull Request #11928 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content
8000

Add analytics for event rule engine #11928

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions localstack-core/localstack/runtime/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"ES_CUSTOM_BACKEND", # deprecated in 0.14.0, removed in 3.0.0
"ES_MULTI_CLUSTER", # deprecated in 0.14.0, removed in 3.0.0
"ES_ENDPOINT_STRATEGY", # deprecated in 0.14.0, removed in 3.0.0
"EVENT_RULE_ENGINE",
"IAM_SOFT_MODE",
"KINESIS_PROVIDER", # Not functional; deprecated in 2.0.0, removed in 3.0.0
"KINESIS_ERROR_PROBABILITY",
Expand Down
8 changes: 8 additions & 0 deletions localstack-core/localstack/services/events/plugins.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from localstack.packages import Package, package


@package(name="event-ruler")
def event_ruler_package() -> Package:
from localstack.services.events.packages import event_ruler_package

return event_ruler_package
4 changes: 2 additions & 2 deletions tests/aws/services/events/test_events_patterns.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
COMPLEX_MULTI_KEY_EVENT = os.path.join(REQUEST_TEMPLATE_DIR, "complex_multi_key_event.json")

SKIP_LABELS = [
# Failing exception tests:
# TODO: fix failing exception tests (not yet implemented)
"arrays_empty_EXC",
"content_numeric_EXC",
"content_numeric_operatorcasing_EXC",
Expand All @@ -31,7 +31,7 @@
"int_nolist_EXC",
"operator_case_sensitive_EXC",
"string_nolist_EXC",
# Failing tests:
# TODO: fix failing tests for Python event rule engine
"complex_or",
"content_anything_but_ignorecase",
"content_anything_but_ignorecase_list",
Expand Down
Loading
0