decToHex
decToHex operator は、16 桁以下の long 型の数値を、負の値の 2 の補数を使用して 16 進文字列に変換します。
構文
decToHex(<long_field>) as <field>
decToHex("<long_string>") as <field>
例
| decToHex("4919") as V
V
を 1337
の値と一緒に返します。
... | count by _collector | decToHex(_count) as v
... | decToHex("70") as d
d
を 46
の値と一緒に返します。