mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
4ef76eed7b
* rm extra interface method for rw Client, as it has low applicability and doesn't fit multitenancy well * add `GetDroppedRows` method instead Signed-off-by: hagen1778 <roman@victoriametrics.com>
14 lines
385 B
Go
14 lines
385 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
|
|
}
|