List of utility methods to do Instant Format
String | toInfluxDBTimeFormat(final Instant time) convert a unix epoch time to timestamp used by influxdb. return DateTimeFormatter.ISO_INSTANT.format(ZonedDateTime.ofInstant(time, ZoneId.of("UTC").normalized())); |