Data Type Functions

PantherFlow data type functions

PantherFlow is in open beta starting with Panther version 1.110, and is available to all customers. Please share any bug reports and feature requests with your Panther support team.

array()

array(value1: any, value2: any, valueN: any, ... ) -> array

Returns an array with the given values.

Example:

panther_logs.public.aws_alb
| project myArray=array(receivedBytes, true, 4, "oops")

object()

object([key1: string, value1: any, ... ]) -> object

Returns an object with the given key-value pairs.

Example:

panther_logs.public.aws_alb
| project myObject=object("bytes", receivedBytes, "static", true)

Last updated