Loki: Create component for sending logs to Loki (#51500)

This commit is contained in:
Emil Tullstedt
2022-06-30 10:24:44 +02:00
committed by GitHub
parent a5924315f8
commit b45c71c9ca
16 changed files with 2746 additions and 233 deletions
+21
View File
@@ -0,0 +1,21 @@
package lokihttp
import (
"time"
"github.com/grafana/dskit/backoff"
"github.com/grafana/dskit/flagext"
"github.com/prometheus/common/config"
)
// Config describes configuration for a HTTP pusher client.
type Config struct {
URL flagext.URLValue
BatchWait time.Duration
BatchSize int
Client config.HTTPClientConfig
BackoffConfig backoff.Config
Timeout time.Duration
}