mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
16 lines
342 B
Go
16 lines
342 B
Go
package report
|
|
|
|
const (
|
|
// DateTime is an ISO timestamp of the format "2017-07-03T09:45:00.329067309Z"
|
|
DateTime = "datetime"
|
|
|
|
// Duration specified in seconds, e.g. "3600" means one hour
|
|
Duration = "duration"
|
|
|
|
// IP is a string in the format "182.43.147.201"
|
|
IP = "ip"
|
|
|
|
// Number as an integer or a floating point
|
|
Number = "number"
|
|
)
|