Module: Fluent::Plugin::Opentelemetry
- Defined in:
- lib/fluent/plugin/opentelemetry/version.rb,
lib/fluent/plugin/opentelemetry/constant.rb,
lib/fluent/plugin/opentelemetry/grpc_input_handler.rb
Defined Under Namespace
Modules: Response Classes: GrpcInputHandler, GrpcOutputHandler, HttpInputHandler, HttpOutputHandler, Request
Constant Summary collapse
- VERSION =
"0.5.0"- CONTENT_TYPE =
"Content-Type"- CONTENT_TYPE_PAIN =
"text/plain"- CONTENT_TYPE_PROTOBUF =
"application/x-protobuf"- CONTENT_TYPE_JSON =
"application/json"- CONTENT_ENCODING =
"Content-Encoding"- CONTENT_ENCODING_GZIP =
"gzip"- RECORD_TYPE_LOGS =
"opentelemetry_logs"- RECORD_TYPE_METRICS =
"opentelemetry_metrics"- RECORD_TYPE_TRACES =
"opentelemetry_traces"- PLACEHOLDER_TYPE =
"${type}"- PLACEHOLDER_TYPE_LOGS =
"logs"- PLACEHOLDER_TYPE_METRICS =
"metrics"- PLACEHOLDER_TYPE_TRACES =
"traces"- TLS_VERSIONS_MAP =
begin map = { TLSv1: OpenSSL::SSL::TLS1_VERSION, TLSv1_1: OpenSSL::SSL::TLS1_1_VERSION, TLSv1_2: OpenSSL::SSL::TLS1_2_VERSION } map[:TLSv1_3] = OpenSSL::SSL::TLS1_3_VERSION if defined?(OpenSSL::SSL::TLS1_3_VERSION) map.freeze end