add 1h to influx time

This commit is contained in:
Stefan Hoffmann 2023-03-20 15:53:42 +01:00
parent e98d59bf8c
commit 7fdaac3240

View File

@ -172,12 +172,12 @@ func processUNMSAPIRouter() []node {
log.Fatalln("Error: ", err)
}
tm := time.Unix(int64(timeunix), 0)
fmt.Println(tm)
time_local := tm.Add(1 * time.Hour)
point, err := client.NewPoint(
"node",
tags,
fields,
tm,
time_local,
)
if err != nil {
log.Fatalln("Error: ", err)
@ -220,12 +220,12 @@ func processUNMSAPIRouter() []node {
log.Fatalln("Error: ", err)
}
tm := time.Unix(int64(timeunix), 0)
fmt.Println(tm)
time_local := tm.Add(1 * time.Hour)
point, err := client.NewPoint(
"node",
tags,
fields,
tm,
time_local,
)
if err != nil {
log.Fatalln("Error: ", err)