Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

cloudwatch-logs (4) Versions 0.0.4

Installs and configures AWS CloudWatch Logs

Policyfile
Berkshelf
Knife
cookbook 'cloudwatch-logs', '= 0.0.4', :supermarket
cookbook 'cloudwatch-logs', '= 0.0.4'
knife supermarket install cloudwatch-logs
knife supermarket download cloudwatch-logs
README
Dependencies
Quality 0%

Description

Installs the CloudWatch Logs client and enables easy configuration of multiple logs via attributes.

Supported OS

Currently all linux OS's are supported.

On Amazon Linux the yum package will be used.

Usage

Logs are configured by appending to the ['cwlogs']['logfiles'] attribute from any recipe. You can configure as many
logs as needed. Simply include the default cwlogs recipe in your runlist after all recipes which define a log.

Example

default['cwlogs']['logfiles']['mysite-httpd_access'] = {
    :log_stream_name => '{instance_id}-{hostname}',
    :log_group_name => 'mysite-httpd_access-group',
    :file => '/var/log/httpd/mysite.com/access_log',
    :datetime_format => '%d/%b/%Y:%H:%M:%S %z',
    :initial_position => 'end_of_file'
}

default['cwlogs']['logfiles']['mysite-httpd_error'] = {
    :log_stream_name => '{instance_id}-{hostname}',
    :log_group_name => 'mysite-httpd_error-group',
    :file => '/var/log/httpd/mysite.com/error_log',
    :datetime_format => '%d/%b/%Y:%H:%M:%S %z',
    :initial_position => 'end_of_file'
}

default['cwlogs']['logfiles']['mysite-mod_security_log'] = {
  :log_stream_name => '{instance_id}-{hostname}',
  :log_group_name => 'mysite-mod_security_log',
  :file => '/var/log/modsec_audit.log',
  :datetime_format => '[%d/%b/%Y:%H:%M:%S %z]',
  :multi_line_start_pattern => '^--([0-9a-fA-F]*){8}-[A]{1}--',
  :initial_position => 'end_of_file'
}

From any attributes file will generate the following CloudWatch Logs config:

    [mysite-httpd_access]
    log_stream_name = {instance_id}-{hostname}
    log_group_name = mysite-httpd_access-group
    file = /var/log/httpd/mysite.com/access_log
    datetime_format = %d/%b/%Y:%H:%M:%S %z
    initial_position = end_of_file

    [mysite-httpd_error]
    log_stream_name = {instance_id}-{hostname}
    log_group_name = mysite-httpd_error-group
    file = /var/log/httpd/mysite.com/error_log
    datetime_format = %d/%b/%Y:%H:%M:%S %z
    initial_position = end_of_file

    [mysite-mod_security_log]
      log_stream_name = {instance_id}-{hostname}
      log_group_name = mysite-mod_security_log
      file = /var/log/modsec_audit.log
      datetime_format = [%d/%b/%Y:%H:%M:%S %z]
      multi_line_start_pattern = ^--([0-9a-fA-F]*){8}-[A]{1}--
      initial_position = end_of_file

All hash elements will pass through to the config file, so for example you can use `encoding` or any other supported
config element.  See the [AWS CloudWatch Logs configuration reference][1] for details.

[1](http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/AgentReference.html)

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Foodcritic Metric
            

0.0.4 failed this metric

FC048: Prefer Mixlib::ShellOut: /tmp/cook/db6ee3f6211f17048d42e8bd/cloudwatch-logs/recipes/installer.rb:29