メインコンテンツまでスキップ

round

The round function returns the closest integer to x.

Syntax


Examples

round(1.549, 2) as// a = 1.55

You can calculate the message volume for a specific Source Host using this query. You can use the round function to get the closest integer value of the volume.  

_index=sumologic_volume
| where _sourceCategory="sourcehost_volume"
| parse regex "(?<sourcehost>\"[^\"]+\")\:{\"sizeInBytes\"\:(?<bytes>\d+),\"count\"\:(?<count>\d+)\}" multi
| bytes/1024/1024 as MB
| sum(MB) as MB by sourcehost
| round(MB)