Skip to content
Open
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
28 changes: 28 additions & 0 deletions _data-prepper/pipelines/cidrcontains.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,31 @@ cidrContains('/client.ip', '192.168.0.0/16', '10.0.0.0/8')
{% include copy.html %}

This function returns `true` if the IP address matches any of the specified CIDR blocks or `false` if it does not.

## Example

The following pipeline drops any documents that are not part of the specified CIDR blocks:

```yaml
cidr-allowlist-pipeline:
source:
http:
port: 2021
path: /events
ssl: true
sslKeyCertChainFile: "certs/dp.crt"
sslKeyFile: "certs/dp.key"
processor:
- drop_events:
# Drop events whose client IP is NOT in specific CIDR allowlist
drop_when: 'not cidrContains(/client/ip, "10.0.0.0/8", "192.168.0.0/16", "fd00::/8")'
sink:
- opensearch:
hosts: ["https://opensearch:9200"]
insecure: true
username: admin
password: "admin_pass"
index_type: custom
index: "logs-%{yyyy.MM.dd}"
```
{% include copy.html %}