We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9bdba commit 218b9afCopy full SHA for 218b9af
receiver/opencensusreceiver/config.go
@@ -32,6 +32,10 @@ type Config struct {
32
// TLSCredentials is a (cert_file, key_file) configuration.
33
TLSCredentials *tlsCredentials `mapstructure:"tls-credentials,omitempty"`
34
35
+ // CorsOrigins are the allowed CORS origins for HTTP/JSON requests to grpc-gateway adapter
36
+ // for the OpenCensus receiver. See github.com/rs/cors
37
+ // An empty list means that CORS is not enabled at all. A wildcard (*) can be
38
+ // used to match any origin or one or more characters of an origin.
39
CorsOrigins []string `mapstructure:"cors-allowed-origins"`
40
41
// Keepalive anchor for all the settings related to keepalive.
0 commit comments