apps:zabbix:preprocessing
Table of Contents
Zabbix - Preprocessing
Cookbook
ISO8601 to unixtime
Input | Output |
---|---|
2024-07-04T13:03:44.624+00:00 | 1720098224 |
2024-08-18T19:44:47+02:00 | 1724003087 |
2024-08-18 19:48:06 | 1724010486 |
2024-08-18 | 1723939200 |
Supported Date time string format for input.
const date = new Date(value); const epoch = Math.floor(date.getTime()/1000); return(epoch);
Type of information: Numeric (unsigned) Units: unixtime
Links
apps/zabbix/preprocessing.txt · Last modified: 2024-08-18 23:25 by Manuel Frei