mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 08:23:34 +01:00
fixed opentsdbListenAddr timestamp conversion (#3810)
Co-authored-by: Andrei Ivanov <a.ivanov@corp.mail.ru>
This commit is contained in:
parent
253a78b9ab
commit
3961836476
@ -174,9 +174,13 @@ func (uw *unmarshalWork) Unmarshal() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert timestamps from seconds to milliseconds
|
// Convert timestamps in seconds to milliseconds if needed.
|
||||||
|
// See http://opentsdb.net/docs/javadoc/net/opentsdb/core/Const.html#SECOND_MASK
|
||||||
for i := range rows {
|
for i := range rows {
|
||||||
rows[i].Timestamp *= 1e3
|
r := &rows[i]
|
||||||
|
if r.Timestamp&secondMask == 0 {
|
||||||
|
r.Timestamp *= 1e3
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Trim timestamps if required.
|
// Trim timestamps if required.
|
||||||
@ -191,6 +195,8 @@ func (uw *unmarshalWork) Unmarshal() {
|
|||||||
putUnmarshalWork(uw)
|
putUnmarshalWork(uw)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const secondMask int64 = 0x7FFFFFFF00000000
|
||||||
|
|
||||||
func getUnmarshalWork() *unmarshalWork {
|
func getUnmarshalWork() *unmarshalWork {
|
||||||
v := unmarshalWorkPool.Get()
|
v := unmarshalWorkPool.Get()
|
||||||
if v == nil {
|
if v == nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user