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
|
|
}
|