Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
maxLevel2
typeflat

...

Argument

Data type

Average of mandatory

integer, float

The data type of the aggregated values is integer or float.

...

See Build a query using LINQ to learn more about grouping and aggregating your data using the LINQ language.

Example

You can copy the following LINQ script and try the example above on the siem.logtrust.web.activity table.

Code Block
from siem.logtrust.web.activity
  group every 5m
  every 5m
  select avg(responseLength) as responseLength_avg

...