-
Notifications
You must be signed in to change notification settings - Fork 25.4k
Closed
Labels
:Data Management/Ingest NodeExecution or management of Ingest Pipelines including GeoIPExecution or management of Ingest Pipelines including GeoIP>enhancement
Description
I would like to be able to convert hexadecimal numbers that are prefixed with 0x
to integers with the Ingest Node convert processor. Sometimes Windows event logs contain hex values that I'd like to convert to numbers (such as the TargetProcessId
in 4690).
For example, this pipeline results in a java.lang.IllegalArgumentException: unable to convert [0x01] to integer
.
POST _ingest/pipeline/_simulate
{
"pipeline": {
"processors": [
{
"convert": {
"field": "hex",
"type": "integer"
}
}
]
},
"docs": [
{
"_source": {
"hex": "0x01"
}
}
]
}
a03nikki
Metadata
Metadata
Assignees
Labels
:Data Management/Ingest NodeExecution or management of Ingest Pipelines including GeoIPExecution or management of Ingest Pipelines including GeoIP>enhancement