Stay organized with collections
Save and categorize content based on your preferences.
math.ceil
math.ceil(number)
Description
Returns the smallest integer that is not less than the given number (rounding up). Will return 0 if the input is null or too big to fit in an int64.
Param data types
FLOAT
Return type
INT
Code samples
This section contains examples of using math.ceil
.
Example 1
This example returns the ceil of a whole number.
math.ceil(2.000000) = 2
Example 2
This example returns the ceil of a negative number.
math.ceil(0-1.200000) = -1
Example 3
This example returns 0 as the ceil of a number that is too big for a 64 bit integer.
math.ceil(184467440737095516160.0) = 0
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-07-14 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-07-14 UTC."],[[["\u003cp\u003e\u003ccode\u003emath.ceil\u003c/code\u003e rounds a given number up to the nearest integer.\u003c/p\u003e\n"],["\u003cp\u003eThis function is supported in both Chronicle's Rules and Search features.\u003c/p\u003e\n"],["\u003cp\u003eThe input data type for \u003ccode\u003emath.ceil\u003c/code\u003e is \u003ccode\u003eFLOAT\u003c/code\u003e, and it returns an \u003ccode\u003eINT\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIf the input to \u003ccode\u003emath.ceil\u003c/code\u003e is null or too large for a 64-bit integer, it returns 0.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003emath.ceil\u003c/code\u003e works on both positive and negative numbers.\u003c/p\u003e\n"]]],[],null,["### math.ceil\n\nSupported in: \n[Rules](/chronicle/docs/detection/default-rules) [Search](/chronicle/docs/investigation/udm-search) \n\n math.ceil(number)\n\n#### Description\n\nReturns the smallest integer that is not less than the given number (rounding up). Will return 0 if the input is null or too big to fit in an int64.\n\n#### Param data types\n\n`FLOAT`\n\n#### Return type\n\n`INT`\n\n#### Code samples\n\nThis section contains examples of using `math.ceil`.\n\n##### Example 1\n\nThis example returns the ceil of a whole number. \n\n math.ceil(2.000000) = 2\n\n##### Example 2\n\nThis example returns the ceil of a negative number. \n\n math.ceil(0-1.200000) = -1\n\n##### Example 3\n\nThis example returns 0 as the ceil of a number that is too big for a 64 bit integer. \n\n math.ceil(184467440737095516160.0) = 0"]]