You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
This commit adds checks for hex formatted strings in the convert
processor, allowing strings like `0x1` to be parsed as integer `1`.
closeselastic#32182
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 theTargetProcessId
in 4690).For example, this pipeline results in a
java.lang.IllegalArgumentException: unable to convert [0x01] to integer
.The text was updated successfully, but these errors were encountered: