mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
9930ce1fa9
* feat(vmselect): add support for listing current running queries and canceling specific query * fix(vmselect): change current queries' pid from int64 counter to uuid * feat(vmselect): add auth to internal operations like `/resetRollupResultCache`, `/query/list` and `/query/kill`. add flag `internalAuthKey` for these auth * fix(vmselect): add more info to current queries * review: delete some unnecessary code and use function instead of init * review: returen *queriesMap in newQueriesMap * review: delete unused var in struct queriesMap, add comments to exported functions * review: add return if error occurs * feat(vmselect): truncate query string in current running query list API since the size of query string might be large; use query string's pointer in struct `query` for the same reason; add query info API to get full access of query's info;
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
// Copyright 2016 Google Inc. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package uuid
|
|
|
|
import (
|
|
"encoding/binary"
|
|
)
|
|
|
|
// NewUUID returns a Version 1 UUID based on the current NodeID and clock
|
|
// sequence, and the current time. If the NodeID has not been set by SetNodeID
|
|
// or SetNodeInterface then it will be set automatically. If the NodeID cannot
|
|
// be set NewUUID returns nil. If clock sequence has not been set by
|
|
// SetClockSequence then it will be set automatically. If GetTime fails to
|
|
// return the current NewUUID returns nil and an error.
|
|
//
|
|
// In most cases, New should be used.
|
|
func NewUUID() (UUID, error) {
|
|
nodeMu.Lock()
|
|
if nodeID == zeroID {
|
|
setNodeInterface("")
|
|
}
|
|
nodeMu.Unlock()
|
|
|
|
var uuid UUID
|
|
now, seq, err := GetTime()
|
|
if err != nil {
|
|
return uuid, err
|
|
}
|
|
|
|
timeLow := uint32(now & 0xffffffff)
|
|
timeMid := uint16((now >> 32) & 0xffff)
|
|
timeHi := uint16((now >> 48) & 0x0fff)
|
|
timeHi |= 0x1000 // Version 1
|
|
|
|
binary.BigEndian.PutUint32(uuid[0:], timeLow)
|
|
binary.BigEndian.PutUint16(uuid[4:], timeMid)
|
|
binary.BigEndian.PutUint16(uuid[6:], timeHi)
|
|
binary.BigEndian.PutUint16(uuid[8:], seq)
|
|
copy(uuid[10:], nodeID[:])
|
|
|
|
return uuid, nil
|
|
}
|