Socket
Socket
Sign inDemoInstall

github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver

Package Overview
Dependencies
61
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver


Version published

Readme

Source

TCP Receiver

Status
Stabilityalpha: logs
Distributionscontrib
IssuesOpen issues Closed issues
Code Owners@djaglowski

Receives logs over TCP.

Configuration

FieldDefaultDescription
max_log_size1MiBThe maximum size of a log entry to read before failing. Protects against reading large amounts of data into memory
listen_addressrequiredA listen address of the form <ip>:<port>
tlsnilAn optional TLS configuration (see the TLS configuration section)
attributes{}A map of key: value pairs to add to the entry's attributes
one_log_per_packetfalseSkip log tokenization, set to true if logs contains one log per record and multiline is not used. This will improve performance.
resource{}A map of key: value pairs to add to the entry's resource
add_attributesfalseAdds net.* attributes according to [semantic convention][https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/span-general.md#general-network-connection-attributes]
multilineA multiline configuration block. See below for details
encodingutf-8The encoding of the file being read. See the list of supported encodings below for available options
operators[]An array of operators. See below for more details

TLS Configuration

The tcplog receiver supports TLS, disabled by default. config more detail opentelemetry-collector#configtls.

FieldDefaultDescription
cert_filePath to the TLS cert to use for TLS required connections.
key_filePath to the TLS key to use for TLS required connections.
ca_filePath to the CA cert. For a client this verifies the server certificate. For a server this verifies client certificates. If empty uses system root CA.
client_ca_filePath to the TLS cert to use by the server to verify a client certificate. (optional)

Operators

Each operator performs a simple responsibility, such as parsing a timestamp or JSON. Chain together operators to process logs into a desired format.

  • Every operator has a type.
  • Every operator can be given a unique id. If you use the same type of operator more than once in a pipeline, you must specify an id. Otherwise, the id defaults to the value of type.
  • Operators will output to the next operator in the pipeline. The last operator in the pipeline will emit from the receiver. Optionally, the output parameter can be used to specify the id of another operator to which logs will be passed directly.
  • Only parsers and general purpose operators should be used.

Parsers with Embedded Operations

Many parsers operators can be configured to embed certain followup operations such as timestamp and severity parsing. For more information, see complex parsers.

multiline configuration

If set, the multiline configuration block instructs the tcplog receiver to split log entries on a pattern other than newlines.

The multiline configuration block must contain exactly one of line_start_pattern or line_end_pattern. These are regex patterns that match either the beginning of a new log entry, or the end of a log entry.

The omit_pattern setting can be used to omit the start/end pattern from each entry.

Supported encodings
KeyDescription
nopNo encoding validation. Treats the file as a stream of raw bytes
utf-8UTF-8 encoding
utf-16leUTF-16 encoding with little-endian byte order
utf-16beUTF-16 encoding with little-endian byte order
asciiASCII encoding
big5The Big5 Chinese character encoding

Other less common encodings are supported on a best-effort basis. See https://www.iana.org/assignments/character-sets/character-sets.xhtml for other encodings available.

Example Configurations

Simple

Configuration:

receivers:
  tcplog:
    listen_address: "0.0.0.0:54525"

FAQs

Last updated on 11 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc