sqrt Function
The square root function returns the square root value of x.
Syntax
sqrt(<x>) as <field>
Examples
Compute the square root of a literal value
* | sqrt(4) as v
Compute the square root of a parsed numeric field
Use sqrt to convert a variance value back to standard deviation scale:
=application/metrics
| parse "variance=*" as variance
| num(variance)
| sqrt(variance) as std_dev