Hello. Is there a way to add a cell to a dashboard showing the actual time? Using latest version.
Got this from support:
Create a new dashboard cell and select the Single Stat graph. You can then use the following Flux query to display the current time in UTC.
import "regexp"
import "system"
import "array"
rows = [
{_value: regexp.replaceAllString(r: /[T\.]|\d+Z/, v: string(v: system.time()), t: " ")},
]
array.from(rows)
1 Like