mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
037652d5ae
Use local timezone of the host server in this case. The timezone can be overridden with TZ environment variable if needed. While at it, allow using whitespace instead of T as a delimiter between data and time in the ingested _time field. For example, '2024-09-20 10:20:30' is now accepted during data ingestion. This is valid ISO8601 format, which is used by some log shippers, so it should be supported. This format is also known as SQL datetime format. Also assume local time zone when time without timezone information is passed to querying APIs. Previously such a time was parsed in UTC timezone. Add `Z` to the end of the time string if the old behaviour is preferred. Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6721
30 lines
658 B
Go
30 lines
658 B
Go
package timeutil
|
|
|
|
import (
|
|
"sync/atomic"
|
|
"time"
|
|
)
|
|
|
|
// GetLocalTimezoneOffsetNsecs returns local timezone offset in nanoseconds.
|
|
func GetLocalTimezoneOffsetNsecs() int64 {
|
|
return localTimezoneOffsetNsecs.Load()
|
|
}
|
|
|
|
var localTimezoneOffsetNsecs atomic.Int64
|
|
|
|
func updateLocalTimezoneOffsetNsecs() {
|
|
_, offset := time.Now().Zone()
|
|
nsecs := int64(offset) * 1e9
|
|
localTimezoneOffsetNsecs.Store(nsecs)
|
|
}
|
|
|
|
func init() {
|
|
updateLocalTimezoneOffsetNsecs()
|
|
// Update local timezone offset in a loop, since it may change over the year due to DST.
|
|
go func() {
|
|
t := time.NewTicker(5 * time.Second)
|
|
for range t.C {
|
|
updateLocalTimezoneOffsetNsecs()
|
|
}
|
|
}()
|
|
}
|