Interface SignalEventQuery.IAggregationQuery
-
- All Known Implementing Classes:
SignalEventQuery.AggregationQuery
- Enclosing class:
- SignalEventQuery
public static interface SignalEventQuery.IAggregationQueryProvides methods to perform aggregations on the query. For each aggregation a column is added to the result set.- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SignalEventQuery.AggregationQueryavgSentTimestamp()Adds a result columnAvgSentTimestampto the query, that contains the average of the fieldSentTimestampof all (grouped) rows.SignalEventQuery.AggregationQuerycountRows()Adds a result columnCountto the query, that contains the number of (grouped) rows.SignalEventQuery.AggregationQuerymaxSentByProcessElementPid()Adds a result columnMaxSentByProcessElementPidto the query, that contains the maximum value of the fieldSentByProcessElementPidof all (grouped) rows.SignalEventQuery.AggregationQuerymaxSentByUserName()Adds a result columnMaxSentByUserNameto the query, that contains the maximum value of the fieldSentByUserNameof all (grouped) rows.SignalEventQuery.AggregationQuerymaxSentTimestamp()Adds a result columnMaxSentTimestampto the query, that contains the maximum value of the fieldSentTimestampof all (grouped) rows.SignalEventQuery.AggregationQuerymaxSignalCode()Adds a result columnMaxSignalCodeto the query, that contains the maximum value of the fieldSignalCodeof all (grouped) rows.SignalEventQuery.AggregationQuerymaxSignalEventId()Adds a result columnMaxSignalEventIdto the query, that contains the maximum value of the fieldSignalEventIdof all (grouped) rows.SignalEventQuery.AggregationQueryminSentByProcessElementPid()Adds a result columnMinSentByProcessElementPidto the query, that contains the minimum value of the fieldSentByProcessElementPidof all (grouped) rows.SignalEventQuery.AggregationQueryminSentByUserName()Adds a result columnMinSentByUserNameto the query, that contains the minimum value of the fieldSentByUserNameof all (grouped) rows.SignalEventQuery.AggregationQueryminSentTimestamp()Adds a result columnMinSentTimestampto the query, that contains the minimum value of the fieldSentTimestampof all (grouped) rows.SignalEventQuery.AggregationQueryminSignalCode()Adds a result columnMinSignalCodeto the query, that contains the minimum value of the fieldSignalCodeof all (grouped) rows.SignalEventQuery.AggregationQueryminSignalEventId()Adds a result columnMinSignalEventIdto the query, that contains the minimum value of the fieldSignalEventIdof all (grouped) rows.
-
-
-
Method Detail
-
countRows
SignalEventQuery.AggregationQuery countRows()
Adds a result column
Countto the query, that contains the number of (grouped) rows.SQL part:
COUNT(*) AS Count- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
minSignalEventId
SignalEventQuery.AggregationQuery minSignalEventId()
Adds a result column
MinSignalEventIdto the query, that contains the minimum value of the fieldSignalEventIdof all (grouped) rows.SQL part:
MIN(SignalEventId) AS MinSignalEventId- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
maxSignalEventId
SignalEventQuery.AggregationQuery maxSignalEventId()
Adds a result column
MaxSignalEventIdto the query, that contains the maximum value of the fieldSignalEventIdof all (grouped) rows.SQL part:
MAX(SignalEventId) AS MaxSignalEventId- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
minSignalCode
SignalEventQuery.AggregationQuery minSignalCode()
Adds a result column
MinSignalCodeto the query, that contains the minimum value of the fieldSignalCodeof all (grouped) rows.SQL part:
MIN(SignalCode) AS MinSignalCode- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
maxSignalCode
SignalEventQuery.AggregationQuery maxSignalCode()
Adds a result column
MaxSignalCodeto the query, that contains the maximum value of the fieldSignalCodeof all (grouped) rows.SQL part:
MAX(SignalCode) AS MaxSignalCode- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
avgSentTimestamp
SignalEventQuery.AggregationQuery avgSentTimestamp()
Adds a result column
AvgSentTimestampto the query, that contains the average of the fieldSentTimestampof all (grouped) rows.SQL part:
AVG(SentTimestamp) AS AvgSentTimestamp- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
minSentTimestamp
SignalEventQuery.AggregationQuery minSentTimestamp()
Adds a result column
MinSentTimestampto the query, that contains the minimum value of the fieldSentTimestampof all (grouped) rows.SQL part:
MIN(SentTimestamp) AS MinSentTimestamp- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
maxSentTimestamp
SignalEventQuery.AggregationQuery maxSentTimestamp()
Adds a result column
MaxSentTimestampto the query, that contains the maximum value of the fieldSentTimestampof all (grouped) rows.SQL part:
MAX(SentTimestamp) AS MaxSentTimestamp- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
minSentByUserName
SignalEventQuery.AggregationQuery minSentByUserName()
Adds a result column
MinSentByUserNameto the query, that contains the minimum value of the fieldSentByUserNameof all (grouped) rows.SQL part:
MIN(SentByUserName) AS MinSentByUserNameThis is a virtual column. It contains the same value as the column
Nameof the referencedSecurityMember.- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
maxSentByUserName
SignalEventQuery.AggregationQuery maxSentByUserName()
Adds a result column
MaxSentByUserNameto the query, that contains the maximum value of the fieldSentByUserNameof all (grouped) rows.SQL part:
MAX(SentByUserName) AS MaxSentByUserNameThis is a virtual column. It contains the same value as the column
Nameof the referencedSecurityMember.- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
minSentByProcessElementPid
SignalEventQuery.AggregationQuery minSentByProcessElementPid()
Adds a result column
MinSentByProcessElementPidto the query, that contains the minimum value of the fieldSentByProcessElementPidof all (grouped) rows.SQL part:
MIN(SentByProcessElementPid) AS MinSentByProcessElementPid- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
maxSentByProcessElementPid
SignalEventQuery.AggregationQuery maxSentByProcessElementPid()
Adds a result column
MaxSentByProcessElementPidto the query, that contains the maximum value of the fieldSentByProcessElementPidof all (grouped) rows.SQL part:
MAX(SentByProcessElementPid) AS MaxSentByProcessElementPid- Returns:
- query for further composition
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-