8000 Add analytics for event rule engine · localstack/localstack@ebc4ed1 · GitHub
[go: up one dir, main page]

Skip to content

Commit ebc4ed1

Browse files
committed
Add analytics for event rule engine
1 parent 3a32d76 commit ebc4ed1

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

localstack-core/localstack/runtime/analytics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"ES_CUSTOM_BACKEND", # deprecated in 0.14.0, removed in 3.0.0
3232
"ES_MULTI_CLUSTER", # deprecated in 0.14.0, removed in 3.0.0
3333
"ES_ENDPOINT_STRATEGY", # deprecated in 0.14.0, removed in 3.0.0
34+
"EVENT_RULE_ENGINE",
3435
"IAM_SOFT_MODE",
3536
"KINESIS_PROVIDER", # Not functional; deprecated in 2.0.0, removed in 3.0.0
3637
"KINESIS_ERROR_PROBABILITY",
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from localstack.packages import Package, package
2+
3+
4+
@package(name="event-ruler")
5+
def event_ruler_package() -> Package:
6+
from localstack.services.events.packages import event_ruler_package
7+
8+
return event_ruler_package

tests/aws/services/events/test_events_patterns.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
COMPLEX_MULTI_KEY_EVENT = os.path.join(REQUEST_TEMPLATE_DIR, "complex_multi_key_event.json")
2323

2424
SKIP_LABELS = [
25-
# Failing exception tests:
25+
# TODO: fix failing exception tests (not yet implemented)
2626
"arrays_empty_EXC",
2727
"content_numeric_EXC",
2828
"content_numeric_operatorcasing_EXC",
@@ -31,7 +31,7 @@
3131
"int_nolist_EXC",
3232
"operator_case_sensitive_EXC",
3333
"string_nolist_EXC",
34-
# Failing tests:
34+
# TODO: fix failing tests for Python event rule engine
3535
"complex_or",
3636
"content_anything_but_ignorecase",
3737
"content_anything_but_ignorecase_list",

0 commit comments

Comments
 (0)
0