mirror of
https://github.com/traefik/traefik.git
synced 2025-12-08 02:51:31 +01:00
12 lines
222 B
Go
12 lines
222 B
Go
package logrus_appinsights
|
|
|
|
import "time"
|
|
|
|
// Config for Application Insights settings
|
|
type Config struct {
|
|
InstrumentationKey string
|
|
EndpointUrl string
|
|
MaxBatchSize int
|
|
MaxBatchInterval time.Duration
|
|
}
|