mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-04 08:41:11 +01:00
d5c180e680
It is better developing vmctl tool in VictoriaMetrics repository, so it could be released together with the rest of vmutils tools such as vmalert, vmagent, vmbackup, vmrestore and vmauth.
74 lines
1.5 KiB
Go
74 lines
1.5 KiB
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
)
|
|
|
|
type (
|
|
// Identifier is an identifier value.
|
|
Identifier string
|
|
|
|
// StringValue is a string literal.
|
|
StringValue string
|
|
|
|
// RegexValue is a regexp literal.
|
|
RegexValue string
|
|
|
|
// NumberValue is a number literal.
|
|
NumberValue float64
|
|
|
|
// IntegerValue is an integer literal.
|
|
IntegerValue int64
|
|
|
|
// BooleanValue is a boolean literal.
|
|
BooleanValue bool
|
|
|
|
// TimeValue is a time literal.
|
|
TimeValue time.Time
|
|
|
|
// DurationValue is a duration literal.
|
|
DurationValue time.Duration
|
|
)
|
|
|
|
func (v Identifier) MarshalJSON() ([]byte, error) {
|
|
m := map[string]string{"identifier": string(v)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v StringValue) MarshalJSON() ([]byte, error) {
|
|
m := map[string]string{"string": string(v)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v RegexValue) MarshalJSON() ([]byte, error) {
|
|
m := map[string]string{"regex": string(v)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v NumberValue) MarshalJSON() ([]byte, error) {
|
|
m := map[string]float64{"number": float64(v)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v IntegerValue) MarshalJSON() ([]byte, error) {
|
|
m := map[string]int64{"integer": int64(v)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v BooleanValue) MarshalJSON() ([]byte, error) {
|
|
m := map[string]bool{"boolean": bool(v)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v TimeValue) MarshalJSON() ([]byte, error) {
|
|
t := time.Time(v)
|
|
m := map[string]string{"string": t.Format(time.RFC3339Nano)}
|
|
return json.Marshal(m)
|
|
}
|
|
|
|
func (v DurationValue) MarshalJSON() ([]byte, error) {
|
|
m := map[string]int64{"duration": int64(v)}
|
|
return json.Marshal(m)
|
|
}
|