VictoriaMetrics/app/vmalert/remotewrite/remotewrite.go

15 lines
479 B
Go

package remotewrite
import (
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
)
// RWClient represents an HTTP client for pushing data via remote write protocol
type RWClient interface {
// Push pushes the give time series to remote storage
Push(s prompbmarshal.TimeSeries) error
// Close stops the client. Client can't be reused after Close call.
Close() error
// CloseAndReport stops the client and reports dropped rows
CloseAndReport() (int64, error)
}