Skip to main content

I would like remove a field from event like using eval

You can use the delete operator.

For example, if you had a top level field, myField, you could use the following syntax to delete it:

delete __e['myField']

We use __e to define the event context. See more here: https://docs.cribl.io/stream/code-function#notes-and-examples


Reply