VictoriaMetrics/vendor/github.com/google/uuid
DexterZhang 9930ce1fa9
Feat/query list vmselect (#575)
* 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;
2020-07-08 19:04:29 +03:00
..
.travis.yml Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
CONTRIBUTING.md Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
CONTRIBUTORS Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
dce.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
doc.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
go.mod Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
hash.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
LICENSE Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
marshal.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
node.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
node_js.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
node_net.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
README.md Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
sql.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
time.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
util.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
uuid.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
version1.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00
version4.go Feat/query list vmselect (#575) 2020-07-08 19:04:29 +03:00

uuid build status

The uuid package generates and inspects UUIDs based on RFC 4122 and DCE 1.1: Authentication and Security Services.

This package is based on the github.com/pborman/uuid package (previously named code.google.com/p/go-uuid). It differs from these earlier packages in that a UUID is a 16 byte array rather than a byte slice. One loss due to this change is the ability to represent an invalid UUID (vs a NIL UUID).

Install

go get github.com/google/uuid

Documentation

GoDoc

Full go doc style documentation for the package can be viewed online without installing this package by using the GoDoc site here: http://godoc.org/github.com/google/uuid