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

fluent-plugin-logentries_ssl

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluent-plugin-logentries_ssl

  • 0.2.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Logentries output plugin for Fluentd

Overview

Buffer and perioidically send event logs to Logentries. It sends whole record as json, if a logentries TCP token is configured for the tag.

Reguirements

  • fluentd >= v0.14.0
  • ruby >= 2.1

Installation

gem install fluent-plugin-logentries_ssl

Configuration

One of parameters token_path or default_token must be given. if token path is not defined, the Logentries token default_token is used for all fluent events. When using default_token with tokens from token_path, it will be used as a fallback after trying to match a tag to a token in token_path.

parameter*descriptiondefault value
token_pathPath to YAML formatted file containing 'tag: logentries-token' pairsnil
default_tokenA token string to be used either for all tags, or as fallback after token_pathnil
<match pattern>
  @type logentries_ssl
  token_path /path/to/tokens.yml
</match>

or with default_token:

<match pattern>
  @type logentries_ssl
  token_path /path/to/tokens.yml
  default_token 'aaa-bbb-ccc'
</match>
<match pattern>
  @type logentries_ssl
  token_path /path/to/tokens.yml
  <buffer>
    @type file
    path /path/to_le_buffer.*.buffer
    flush_interval 5s
    flush_at_shutdown true
  </buffer>
</match>

with tokens.yml

tag-to-send: [logentries tcp token]
other-tag: [other token]

Event tag must match key in tokens file.

other configuration keys:

parameter*descriptiondefault value
le_hostLogentries hostname to usedata.logentries.com
le_portLogentries port to use443
max_retriesHow many times event send is retried on errors3
jsonSend record as jsontrue
verify_fqdnVerify FQDN for SSLtrue

Alternatives

  • Copyright(c) 2017- larte
  • License
    • Apache License, Version 2.0

FAQs

Package last updated on 14 Sep 2017

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