Skip to content
Merged
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
10 changes: 5 additions & 5 deletions website/content/en/guides/level-up/csv-enrichment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ that case, you can set your `csv` file, let's call it similarly to below:

``` csv
ip,alert_type,severity
"192.0.2.0", "alert", "high"
"198.51.100.0", "alert", "medium"
"192.0.2.0","alert","high"
"198.51.100.0","alert","medium"
...
"203.0.113.0", "warn", "medium"
"203.0.113.0","warn","medium"
```

Assuming you set the `enrichment_tables` similarly to the configuration in Use
Expand Down Expand Up @@ -183,7 +183,7 @@ Your observability data, assuming it was in JSON, now has been transformed from:
"host":"my.host.com",
"timestamp":"2019-11-01T21:15:47+00:00",
...
"ip":"192.0.2.0",
"ip":"192.0.2.0"
}
```

Expand All @@ -196,7 +196,7 @@ To:
...
"alert": {
"type":"alert",
"severity":"medium"
"severity":"high"
}
}
```
Expand Down
Loading