Skip to content

Commit

Permalink
Merge pull request #11819 from illumio-shield/fix-log-filtering
Browse files Browse the repository at this point in the history
Illumio: Fix log filtering
  • Loading branch information
v-prasadboke authored Feb 18, 2025
2 parents c7ea692 + 4a75118 commit 40b7ad3
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions Solutions/IllumioSaaS/Data Connectors/CommonCode/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
MAX_WORKLOADS = os.environ.get("MAX_WORKLOADS", 100000)
LOGS_TO_CONSUME = os.environ.get("logTypes", "all").lower()
NETWORK_TRAFFIC_TO_CONSUME = os.environ.get("networkTrafficLogTypes", "All").lower()
FLOW_EVENTS = "Flow Summaries"
AUDIT_EVENTS = "Auditable Events"
FLOW_EVENTS = "flow"
AUDIT_EVENTS = "audit"
ALLOWED_TRAFFIC = "allowed"
POTENTIALLY_BLOCKED_TRAFFIC = "potentially_blocked"
BLOCKED_TRAFFIC = "blocked"
Expand Down
Binary file modified Solutions/IllumioSaaS/Data Connectors/IllumioEventsConn.zip
Binary file not shown.
Binary file modified Solutions/IllumioSaaS/Data Connectors/IllumioQueueTrigger.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,12 @@
{
"label": "Flow Summaries",
"description": "Ingest only flow Summaries logs",
"value": "Flow Summaries"
"value": "flow"
},
{
"label": "Auditable Events",
"description": "Ingest only auditable events",
"value": "Auditable Events"
"value": "audit"
},
{
"label": "All",
Expand Down
4 changes: 2 additions & 2 deletions Solutions/IllumioSaaS/Data Connectors/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,12 @@
{
"label": "Flow Summaries",
"description": "Ingest only flow Summaries logs",
"value": "Flow Summaries"
"value": "flow"
},
{
"label": "Auditable Events",
"description": "Ingest only auditable events",
"value": "Auditable Events"
"value": "audit"
},
{
"label": "All",
Expand Down
Binary file modified Solutions/IllumioSaaS/Package/3.4.0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Solutions/IllumioSaaS/Package/createUiDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
}
},
{
"name": "dataconnectors-link2",
"name": "dataconnectors-link1",
"type": "Microsoft.Common.TextBlock",
"options": {
"link": {
Expand Down
52 changes: 26 additions & 26 deletions Solutions/IllumioSaaS/Package/mainTemplate.json

Large diffs are not rendered by default.

0 comments on commit 40b7ad3

Please sign in to comment.