Skip to main content

Are the available Redis commands in the dropdown list or should I go by the complete list at the URL provided when I hover over the ‘?’?

I’m trying to set multiple values for a hash and I’m having trouble grabbing the key-value pairs from my event to send. I’m not sure if it’s a limitation or I’m doing something incorrectly. I’m using ‘__e’ to grab the entire event (Args section) and specifying a key. The Command section allows me to put in hmset.

I must've missed that part about only listing commonly used commands.

This worked for me, thanks.


No, only the commonly used commands are listed in the dropdown. The Cribl Stream Redis function supports all available commands, you just need to type them into the command box.

For HMSET, youll want to use something like this:

123_7b0029b9f029493db40037ef44a2aa13.png

The full args look like this:

['key1', key1, 'key2', key2, 'key3', key3]

For purposes of this example, field1, field2, and field3 have already been extracted, but you can reference any field with the dot notation.

123_bb99aeaf41bf46de8875abb5636d1601.png

Those values are now available in Redis!

123_b428658900f34349911cad3a23c97a49.png

Reply