mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Loki: Add multitenancy support for the HTTP client * Loki: Support to push with multitenancy mode * Apply feedback suggestions
16 lines
203 B
Go
16 lines
203 B
Go
package lokigrpc
|
|
|
|
import "time"
|
|
|
|
// Config describes configuration for a gRPC pusher client.
|
|
type Config struct {
|
|
URL string
|
|
|
|
Retries uint
|
|
Timeout time.Duration
|
|
|
|
TLSDisabled bool
|
|
|
|
TenantID string
|
|
}
|