Description
Finds the minvalue from a set, or from a number of values.
Example
Find the minnumber of sessions for all your oracle instances
min(instance[databasetype = 'oracle']/total_session_count)
Returns the smallest of the arguments (average session_count or 10)
min(avg(instance[databasetype = 'oracle']/total_session_count), 10)
Syntax
min(expression)
min(expression1, expression2, ..)
Parameters
Type | Description |
---|---|
Expresssion | Expression that gives a set of numbers |
Type | Description |
---|---|
Expresssion | Expression that gives a number |
Expresssion | Optional expression that gives a number |
Post your comment on this topic.