mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
e3adcbec6e
* lib/promscrape: support prometheus-like duration in scrape configs The change allows to specify duration values like `1d`, `1w` for fields `scrape_interval`, `scrape_timeout`, etc. https://github.com/VictoriaMetrics/VictoriaMetrics/issues/817#issuecomment-1033384766 Signed-off-by: hagen1778 <roman@victoriametrics.com> * lib/blockcache: make linter happy Signed-off-by: hagen1778 <roman@victoriametrics.com> * lib/promscrape: support prometheus-like duration in scrape configs * add support for extra fields `scrape_align_interval` and `scrape_offset`; * support Prometheus duration parsing for `__scrape_interval__` and `__scrape_duration__` labels; Signed-off-by: hagen1778 <roman@victoriametrics.com> * wip * wip * docs/CHANGELOG.md: document the feature Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package promutils
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/VictoriaMetrics/metricsql"
|
|
)
|
|
|
|
// Duration is duration, which must be used in Prometheus-compatible yaml configs.
|
|
type Duration struct {
|
|
d time.Duration
|
|
}
|
|
|
|
// NewDuration returns Duration for given d.
|
|
func NewDuration(d time.Duration) Duration {
|
|
return Duration{
|
|
d: d,
|
|
}
|
|
}
|
|
|
|
// MarshalYAML implements yaml.Marshaler interface.
|
|
func (pd Duration) MarshalYAML() (interface{}, error) {
|
|
return pd.d.String(), nil
|
|
}
|
|
|
|
// UnmarshalYAML implements yaml.Unmarshaler interface.
|
|
func (pd *Duration) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
var s string
|
|
if err := unmarshal(&s); err != nil {
|
|
return err
|
|
}
|
|
ms, err := metricsql.DurationValue(s, 0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pd.d = time.Duration(ms) * time.Millisecond
|
|
return nil
|
|
}
|
|
|
|
// Duration returns duration for pd.
|
|
func (pd Duration) Duration() time.Duration {
|
|
return pd.d
|
|
}
|
|
|
|
// ParseDuration parses duration string in Prometheus format
|
|
func ParseDuration(s string) (time.Duration, error) {
|
|
ms, err := metricsql.DurationValue(s, 0)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return time.Duration(ms) * time.Millisecond, nil
|
|
}
|