floor function to round a numeric value down to the largest integer less than or equal to the input. This function is useful when you need to ensure that fractional values always round down, such as when calculating completed intervals, resource consumption, or discrete counts.
Use floor when you want to convert decimal numbers to whole numbers by truncating the fractional part. For example, if a user has completed 2.7 sessions, floor returns 2 to represent fully completed sessions.
For users of other query languages
If you come from other query languages, this section explains how to adjust your existing queries to achieve the same results in APL.Splunk SPL users
Splunk SPL users
In Splunk SPL, you use the
floor function to round down values. APL’s floor function works identically.ANSI SQL users
ANSI SQL users
In ANSI SQL, the
FLOOR function performs the same operation. APL’s syntax is nearly identical.Usage
Syntax
Parameters
| Name | Type | Description |
|---|---|---|
number | real | The numeric value to round down. |
Returns
An integer representing the largest whole number less than or equal to the input value.Use case examples
- Log analysis
- OpenTelemetry traces
Calculate completed seconds from millisecond durations.QueryRun in PlaygroundOutput
This query converts request durations to whole milliseconds by rounding down, then groups requests by their completion time.
| completed_seconds | request_count |
|---|---|
| 0 | 8540 |
| 1 | 2310 |
| 2 | 890 |
| 3 | 245 |
List of related functions
- ceiling: Rounds up to the smallest integer greater than or equal to the input. Use
floorwhen you need to round down instead. - bin: Rounds values down to a multiple of a specified bin size. Use
floorfor simple downward rounding to integers. - round: Rounds to the nearest integer or specified precision. Use
floorwhen you always need to round down.