--- title: system.time() function description: The `system.time()` function returns the current system time. aliases: - /v2.0/reference/flux/functions/misc/systemtime - /v2.0/reference/flux/functions/built-in/misc/systemtime - /v2.0/reference/flux/functions/system/time/ menu: v2_0_ref: name: system.time parent: System weight: 401 related: - /v2.0/reference/flux/stdlib/built-in/misc/now/ --- The `system.time()` function returns the current system time. _**Function type:** Date/Time_ _**Output data type:** Timestamp_ ```js import "system" system.time() ``` ## Examples ```js import "system" data |> set(key: "processed_at", value: string(v: system.time() )) ``` {{% note %}} #### system.time() vs now() `system.time()` returns the current system time of the host machine, which typically accounts for the local time zone. This time represents the time at which `system.time()` it is executed, so each instance of `system.time()` in a Flux script returns a unique value. [`now()`](/v2.0/reference/flux/stdlib/built-in/misc/now/) returns the current UTC time. `now()` is cached at runtime, so all instances of `now()` in a Flux script return the same value. {{% /note %}}