Skip to content

RelativeTimeRange🔗

RelativeTimeRange is the per query start and end time

for requests.

Definition🔗

type RelativeTimeRange struct {
    // A Duration represents the elapsed time between two instants
    // as an int64 nanosecond count. The representation limits the
    // largest representable duration to approximately 290 years.
    From *alerting.Duration `json:"from,omitempty"`
    // A Duration represents the elapsed time between two instants
    // as an int64 nanosecond count. The representation limits the
    // largest representable duration to approximately 290 years.
    To *alerting.Duration `json:"to,omitempty"`
}

Methods🔗

UnmarshalJSONStrict🔗

UnmarshalJSONStrict implements a custom JSON unmarshalling logic to decode RelativeTimeRange from JSON.

Note: the unmarshalling done by this function is strict. It will fail over required fields being absent from the input, fields having an incorrect type, unexpected fields being present, …

func (relativeTimeRange *RelativeTimeRange) UnmarshalJSONStrict(raw []byte) error

Equals🔗

Equals tests the equality of two RelativeTimeRange objects.

func (relativeTimeRange *RelativeTimeRange) Equals(other RelativeTimeRange) bool

Validate🔗

Validate checks all the validation constraints that may be defined on RelativeTimeRange fields for violations and returns them.

func (relativeTimeRange *RelativeTimeRange) Validate() error