Skip to content

Commit 3de4df0

Browse files
updating FER for Network Load Balancer (SumoLogic#5923)
1 parent 2468c7c commit 3de4df0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/integrations/amazon-aws/application-load-balancer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ json "eventSource", "awsRegion", "recipientAccountId", "requestParameters.name",
144144
|"" as namespace
145145
| where event_source = "elasticloadbalancing.amazonaws.com" and api_version matches "2015-12-01"
146146
| parse field=loadbalancerarn ":loadbalancer/*/*/*" as balancertype, loadbalancer, f1 nodrop
147-
| if(loadbalancertype matches "network", "aws/nlb", if(balancertype matches "net", "aws/nlb", namespace)) as namespace
147+
| if(loadbalancertype matches "network", "aws/networkelb", if(balancertype matches "net", "aws/networkelb", namespace)) as namespace
148148
| if(loadbalancertype matches "application", "aws/applicationelb", if(balancertype matches "app", "aws/applicationelb", namespace)) as namespace
149149
| where namespace="aws/applicationelb" or isEmpty(namespace)
150150
| toLowerCase(loadbalancer) as loadbalancer

docs/integrations/amazon-aws/network-load-balancer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ json "eventSource", "awsRegion", "recipientAccountId", "requestParameters.name",
7272
|"" as namespace
7373
| where event_source = "elasticloadbalancing.amazonaws.com" and api_version matches "2015-12-01"
7474
| parse field=loadbalancerarn ":loadbalancer/*/*/*" as balancertype, networkloadbalancer, f1 nodrop
75-
| if(loadbalancertype matches "network", "aws/nlb", if(balancertype matches "net", "aws/nlb", namespace)) as namespace
75+
| if(loadbalancertype matches "network", "aws/networkelb", if(balancertype matches "net", "aws/networkelb", namespace)) as namespace
7676
| if(loadbalancertype matches "application", "aws/applicationelb", if(balancertype matches "app", "aws/applicationelb", namespace)) as namespace
77-
| where namespace="aws/nlb" or isEmpty(namespace)
77+
| where namespace="aws/networkelb" or isEmpty(namespace)
7878
| toLowerCase(networkloadbalancer) as networkloadbalancer
7979
| fields region, namespace, networkloadbalancer, accountid
8080
```

0 commit comments

Comments
 (0)