Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/component/otelcol/config_timeout.go
4095 views
1
package otelcol
2
3
import "time"
4
5
// DefaultTimeout holds the default timeout used for components which can time
6
// out from requests.
7
var DefaultTimeout = 5 * time.Second
8
9