Skip to content
Please update to the latest release 0.77.2 to address Multiple CVEs.

max

Function
Arg Description Type
item LazyExpr (required)

Description

Finds the largest item in the aggregate.

It is only meaningful in a group by query.

Example

The following query lists all the processes and shows the largest bash pid of all bash processes.

SELECT Name, max(items=Pid) as LargestPid from pslist() Where Name =~ 'bash' group by Name