Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wildcloud-logeen

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wildcloud-logeen

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Wildcloud - Logeen

Logging proxy

Inputs

Raw

Protocol consists of message. Each message begins with size od payload separated from payload by new line character.

    (size)\n(payload)

Payload consists of two parts not separated. Type is one byte and contains information of the message encoding. Message is the actual message.

    (encodings)(message)

When size is 0, the message is considered a stream. The data are be buffered till ending sequence is received.

    0\n(stream)\n\0\n

Available encodings

char dec description 0 48 not encoded message b 98 base 64 encoded message s 115 Google's snappy compressed message

Encodings are nested. Message is being recursively decoded until encoding 0 or unknown encoding is reached.

Example

From network come data

    10\0bMHRlc3Q=\n

the message has the length 10 and is base64 encoded. The result from the first round is

    0test

not encoded string is found and is therefore returned.

Syslog

License

Project is licensed under the terms of the Apache 2 License.

FAQs

Package last updated on 13 Jan 2012

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc