File tree 4 files changed +8
-12
lines changed
4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,7 @@ pub const OTEL_EXPORTER_OTLP_HEADERS: &str = "OTEL_EXPORTER_OTLP_HEADERS";
27
27
pub const OTEL_EXPORTER_OTLP_PROTOCOL : & str = "OTEL_EXPORTER_OTLP_PROTOCOL" ;
28
28
/// Compression algorithm to use, defaults to none.
29
29
pub const OTEL_EXPORTER_OTLP_COMPRESSION : & str = "OTEL_EXPORTER_OTLP_COMPRESSION" ;
30
-
31
- /// Certificate file to validate the OTLP server connection
30
+ /// Certificate file to validate the OTLP server connection.
32
31
#[ cfg( feature = "tls" ) ]
33
32
pub const OTEL_EXPORTER_OTLP_CERTIFICATE : & str = "OTEL_EXPORTER_OTLP_CERTIFICATE" ;
34
33
/// Path to the certificate file to use for client authentication (mTLS).
@@ -37,7 +36,7 @@ pub const OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE: &str = "OTEL_EXPORTER_OTLP_CLIE
37
36
/// Path to the key file to use for client authentication (mTLS).
38
37
#[ cfg( feature = "tls" ) ]
39
38
pub const OTEL_EXPORTER_OTLP_CLIENT_KEY : & str = "OTEL_EXPORTER_OTLP_CLIENT_KEY" ;
40
- /// Use insecure connection. Disable TLS
39
+ /// Use insecure connection. Disable TLS.
41
40
#[ cfg( feature = "tls" ) ]
42
41
pub const OTEL_EXPORTER_OTLP_INSECURE : & str = "OTEL_EXPORTER_OTLP_INSECURE" ;
43
42
Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ pub const OTEL_EXPORTER_OTLP_LOGS_TIMEOUT: &str = "OTEL_EXPORTER_OTLP_LOGS_TIMEO
32
32
/// Example: `k1=v1,k2=v2`
33
33
/// Note: this is only supported for HTTP.
34
34
pub const OTEL_EXPORTER_OTLP_LOGS_HEADERS : & str = "OTEL_EXPORTER_OTLP_LOGS_HEADERS" ;
35
-
36
- /// Certificate file to validate the OTLP server connection when sending metrics
35
+ /// Certificate file to validate the OTLP server connection when sending metrics.
37
36
#[ cfg( feature = "tls" ) ]
38
37
pub const OTEL_EXPORTER_OTLP_LOGS_CERTIFICATE : & str = "OTEL_EXPORTER_OTLP_LOGS_CERTIFICATE" ;
39
38
/// Path to the certificate file to use for client authentication (mTLS) when sending metrics.
@@ -43,7 +42,7 @@ pub const OTEL_EXPORTER_OTLP_LOGS_CLIENT_CERTIFICATE: &str =
43
42
/// Path to the key file to use for client authentication (mTLS) when sending metrics.
44
43
#[ cfg( feature = "tls" ) ]
45
44
pub const OTEL_EXPORTER_OTLP_LOGS_CLIENT_KEY : & str = "OTEL_EXPORTER_OTLP_LOGS_CLIENT_KEY" ;
46
- /// Use insecure connection when sending metrics. Disable TLS
45
+ /// Use insecure connection when sending metrics. Disable TLS.
47
46
#[ cfg( feature = "tls" ) ]
48
47
pub const OTEL_EXPORTER_OTLP_LOGS_INSECURE : & str = "OTEL_EXPORTER_OTLP_LOGS_INSECURE" ;
49
48
Original file line number Diff line number Diff line change @@ -36,8 +36,7 @@ pub const OTEL_EXPORTER_OTLP_METRICS_COMPRESSION: &str = "OTEL_EXPORTER_OTLP_MET
36
36
/// Example: `k1=v1,k2=v2`
37
37
/// Note: this is only supported for HTTP.
38
38
pub const OTEL_EXPORTER_OTLP_METRICS_HEADERS : & str = "OTEL_EXPORTER_OTLP_METRICS_HEADERS" ;
39
- ///
40
- /// Certificate file to validate the OTLP server connection when sending metrics
39
+ /// Certificate file to validate the OTLP server connection when sending metrics.
41
40
#[ cfg( feature = "tls" ) ]
42
41
pub const OTEL_EXPORTER_OTLP_METRICS_CERTIFICATE : & str = "OTEL_EXPORTER_OTLP_METRICS_CERTIFICATE" ;
43
42
/// Path to the certificate file to use for client authentication (mTLS) when sending metrics.
@@ -47,7 +46,7 @@ pub const OTEL_EXPORTER_OTLP_METRICS_CLIENT_CERTIFICATE: &str =
47
46
/// Path to the key file to use for client authentication (mTLS) when sending metrics.
48
47
#[ cfg( feature = "tls" ) ]
49
48
pub const OTEL_EXPORTER_OTLP_METRICS_CLIENT_KEY : & str = "OTEL_EXPORTER_OTLP_METRICS_CLIENT_KEY" ;
50
- /// Use insecure connection when sending metrics. Disable TLS
49
+ /// Use insecure connection when sending metrics. Disable TLS.
51
50
#[ cfg( feature = "tls" ) ]
52
51
pub const OTEL_EXPORTER_OTLP_METRICS_INSECURE : & str = "OTEL_EXPORTER_OTLP_METRICS_INSECURE" ;
53
52
Original file line number Diff line number Diff line change @@ -34,8 +34,7 @@ pub const OTEL_EXPORTER_OTLP_TRACES_COMPRESSION: &str = "OTEL_EXPORTER_OTLP_TRAC
34
34
/// Example: `k1=v1,k2=v2`
35
35
/// Note: this is only supported for HTTP.
36
36
pub const OTEL_EXPORTER_OTLP_TRACES_HEADERS : & str = "OTEL_EXPORTER_OTLP_TRACES_HEADERS" ;
37
-
38
- /// Certificate file to validate the OTLP server connection when sending traces
37
+ /// Certificate file to validate the OTLP server connection when sending traces.
39
38
#[ cfg( feature = "tls" ) ]
40
39
pub const OTEL_EXPORTER_OTLP_TRACES_CERTIFICATE : & str = "OTEL_EXPORTER_OTLP_TRACES_CERTIFICATE" ;
41
40
/// Path to the certificate file to use for client authentication (mTLS) when sending traces.
@@ -45,7 +44,7 @@ pub const OTEL_EXPORTER_OTLP_TRACES_CLIENT_CERTIFICATE: &str =
45
44
/// Path to the key file to use for client authentication (mTLS) when sending traces.
46
45
#[ cfg( feature = "tls" ) ]
47
46
pub const OTEL_EXPORTER_OTLP_TRACES_CLIENT_KEY : & str = "OTEL_EXPORTER_OTLP_TRACES_CLIENT_KEY" ;
48
- /// Use insecure connection when sending trace. Disable TLS
47
+ /// Use insecure connection when sending trace. Disable TLS.
49
48
#[ cfg( feature = "tls" ) ]
50
49
pub const OTEL_EXPORTER_OTLP_TRACES_INSECURE : & str = "OTEL_EXPORTER_OTLP_TRACES_INSECURE" ;
51
50
You can’t perform that action at this time.
0 commit comments