cookbook 'loggly_rsyslog_ng', '~> 5.1.0'
loggly_rsyslog_ng (6) Versions 5.1.0 Follow0
LWRP for configuring rsyslog to send data to Loggly
cookbook 'loggly_rsyslog_ng', '~> 5.1.0', :supermarket
knife supermarket install loggly_rsyslog_ng
knife supermarket download loggly_rsyslog_ng
Loggly rsyslog LWRP
- Provide LWRP for configuring rsyslog for use with Loggly.
- This cookbook was built upon the work from an existing cookbook, https://github.com/kdaniels/loggly-rsyslog.
Migration to version 5
- Recently I released version 5 of loggly_rsyslog_ng cookbook.
- Resourse attributes were changed, so cookbook that use loggly_rsyslog_ng resource should be amended correspondingly.
- Major change - loggly resource defines one file to log. If you don't like that send PRs/Issues at github.
- Please send issues at github if you have any problems with this version.
- Changes are in CHANGELOG file.
Requirements
- Chef 11 or higher
- Ruby 2.0.0 or higher
- rsyslog 5.6.x or higher (rsyslog 5.6.x support will be deprecated soon in favour of rsyslog 7.6.x+)
Platform
Tested against Debian 7
Usage
loggly_rsyslog_ng 'mylog' do
log_filename '/var/log/myapp.log'
loggly_token 'my_very_secret_token'
loggly_tags [ node.chef_environment ]
rsyslog_selector ':syslogtag, isequal, "mylog:"'
rsyslog_tag 'mylog'
end
Notes
mylog is a name of loggly's resource. It's recommended to choose uniq name for each log resource.
Resources
default
-
name
- resource name. Should be uniq. Used for generation uniq parameters inside loggly_rsyslog_ng provider. -
log_filename
- log file full path. Resource will add monitoring of this exact file. -
log_owner
- in case that logfile isn't exist yet - loggly_rsyslog_ng will create one with no content andlog_owner
owner. -
log_group
- in case that logfile isn't exist yet - loggly_rsyslog_ng will create one with no content andlog_group
group. -
loggly_token
- The Loggly token. -
loggly_tls_certs_install
- should resource install loggly tls certificate or not. By default it'strue
. -
loggly_tls_name
- file name for loggly tls certificate. by default it'srsyslog.loggly.crt
. -
loggly_tls_path
- path to loggly tls certificate. by default it's/etc/rsyslog.d/keys/ca.d
. -
loggly_tags
- A list of event tags to apply to a message (https://www.loggly.com/docs/tags/) (optional). -
loggly_host
- Loggly host. by default it's:logs-01.loggly.com
. -
loggly_port
- Loggly port. by default it's 6514 if TLS enabled and 514 otherwise. -
rsyslog_config
- rsyslog local file config name. By default it's/etc/rsyslog.d/22-loggly-_name_.conf
. -
rsyslog_install
- shoud resource install rsyslog or not. by default it'strue
. -
rsyslog_tls_enable
- enable or disable TLS. by default it'strue
. -
rsyslog_ruleset
- rsyslog ruleset. by default it's the same asname
. -
rsyslog_tag
- rsyslog tag. by default it's the same asname
. -
rsyslog_selector
- rsyslog selector. by default it's*.*
. -
rsyslog_imfile_module
- should resource enable imfile rsyslog module. by default it'strue
.
tls
-
cert_name
- Certificate local file name. Should be specified. Name attribute. -
cert_from_file
- Iftrue
gets loggly SSL certificates from cookbookfiles
directory. iffalse
download them from loggly website. by default it'strue
-
cert_url
- Url to the loggly.com certificate -
intermediate_cert_url
- Url to the intermediate certificate -
cert_checksum
- Cchecksum of the loggly.com certificate -
intermediate_cert_checksum
- Checksum of the intermediate certificate
Tests
- This cookbook has Test Kitchen config to test chef-run with this LWRP for errors. No integration tests yet.
- The default .kitchen.yml assumes that you are testing using vagrant driver, you will need Vagrant and Virtualbox installed.
To run converge, execute command:
kitchen converge
Important! Secure attributes and integration testing
Cookbooks contains secure attributes, that shouldn't be exposed in the git repository.
To start Test Kitchen you should set these environment variables:
-
LOGGLY_TOKEN
- Loggly API token.
License & Authors
- Author: Matt Veitas mveitas@gmail.com
- Author: Kostiantyn Lysenko gshaud@gmail.com
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Dependent cookbooks
apt >= 0.0.0 |
rsyslog >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
loggly_rsyslog_ng Cookbook CHANGELOG
This file is used to list changes made in each version of the loggly_rsyslog_ng cookbook.
v5.1.0
- Fix: update loggly TLS certificate that is bundled with this cookbook/LWRP
- Re-factor: using new URL to get bundled loggly certificate, and simplify tls provider based on that.
- Add: 'remove' action to tls provider.
v5.0.0
- Add: rainerscript config for rsyslog 7.6.x+
- Modify: from now on all major enhancements will be performed for rsyslog 7.6.x+ version of configs. Older rsyslog 5.8.x config format will be supported in legacy mode.
- Add: setting a names for action queues
- Add: separate main queue for each log that we send to loggly
- Add: disk assisted action queue for every added action.
- Add: creates log file and directory if it doesn't exist
- Modify: now resource will define logging for only one file.
- Modify: some attributes names for better clarity.
- Remove: support of facilities, I'll use different rulesets, so facilities is not neccessary
v4.3.0
- Add: test-kitchen setup for AWS and fixture cookbook for testing LWRP
- Fix: calling loggy_rsyslog_ng_tls provider inside loggy_rsyslog_ng provider
v4.2.0
- Add: installing loggly certificate from file by default. network connection is not reliable.
v4.1.0
- Add: optional facility opgion go log_file and log_dir hashes.
v4.0.0
- Modify: rewrite the cookbook as LWRP
v3.0.0
- Modify: fork cookbook from loggly-rsyslog cookbook
- Modify: cookbook name, from loggly-rsyslog to loggly_rsyslog_ng to avoid name collisions
- Fix: checksum for loggly SSL certificate
v2.0.0
- Use an encrypted databag to retrieve the loggly token instead of a node attribute
v1.0.1
- Set rsyslog configuration values to be configurable via attributes
v1.0.0 (1/25/2014)
- Initial cookbook version
- Support for sending messages using TLS
- Configuration for monitoring a list of files
- Configuration for monitoring a list of directories
Collaborator Number Metric
5.1.0 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
5.1.0 failed this metric
FC021: Resource condition in provider may not behave as expected: loggly_rsyslog_ng/providers/default.rb:47
FC021: Resource condition in provider may not behave as expected: loggly_rsyslog_ng/providers/default.rb:80
FC064: Ensure issues_url is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC065: Ensure source_url is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC066: Ensure chef_version is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC069: Ensure standardized license defined in metadata: loggly_rsyslog_ng/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
5.1.0 passed this metric
Testing File Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
5.1.0 failed this metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
5.1.0 failed this metric
FC021: Resource condition in provider may not behave as expected: loggly_rsyslog_ng/providers/default.rb:47
FC021: Resource condition in provider may not behave as expected: loggly_rsyslog_ng/providers/default.rb:80
FC064: Ensure issues_url is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC065: Ensure source_url is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC066: Ensure chef_version is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC069: Ensure standardized license defined in metadata: loggly_rsyslog_ng/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
5.1.0 passed this metric
Testing File Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
5.1.0 failed this metric
FC021: Resource condition in provider may not behave as expected: loggly_rsyslog_ng/providers/default.rb:80
FC064: Ensure issues_url is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC065: Ensure source_url is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC066: Ensure chef_version is set in metadata: loggly_rsyslog_ng/metadata.rb:1
FC069: Ensure standardized license defined in metadata: loggly_rsyslog_ng/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
5.1.0 passed this metric
Testing File Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
5.1.0 failed this metric
5.1.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number