Data Type Functions
PantherFlow data type functions
array()
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()
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
Was this helpful?