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

graylog2 (64) Versions 2.0.5

Installs and configures Graylog - maintained by Graylog, Inc.

Policyfile
Berkshelf
Knife
cookbook 'graylog2', '= 2.0.5', :supermarket
cookbook 'graylog2', '= 2.0.5'
knife supermarket install graylog2
knife supermarket download graylog2
README
Dependencies
Changelog
Quality 50%

Description

Build Status

This Chef cookbook installs and configures the Graylog log management system.

It is using the official installation packages provided by Graylog, Inc.. It needs as requirement an installation of Java, Elasticsearch and MongoDB.

Usage

Quickstart

To give this cookbook a try simply use the Kitchen test suite.

kitchen setup oracle-ubuntu-1404
open http://localhost:9000
Login with admin/admin

Recipes

The cookbook contains several recipes for different installation setups. Pick only the recipes
you need for your environment.

Recipe Description
default Setup the Graylog package repository
server Install Graylog server
authbind Give the Graylog user access to privileged ports like 514 (only on Ubuntu/Debian)
collector Install Graylog's collector (deprecated)

In a minimal setup you need at least the default and server recipes. Combined with
MongoDB and Elasticsearch, a run list might look like this:

run_list "recipe[java]",
         "recipe[elasticsearch]",
         "recipe[mongodb]",
         "recipe[graylog2]",
         "recipe[graylog2::server]"

Attributes

Graylog runs currently with Java 8. To install the correct version set this attribute:

Oracle

  "java": {
    "jdk_version": "8",
    "install_flavor": "oracle",
    "oracle": {
      "accept_oracle_download_terms": true
    }
  }

OpenJDK

  "java": {
    "jdk_version": "8",
    "install_flavor": "openjdk"
  }

OpenJDK and Oracle JDK are both fine for Graylog. Note that you must accept
Oracle's download terms if you select the oracle install flavor.

On some platforms you need to accept terms to install OpenJDK too. See the java
cookbook's README
for more
information.

You have to use a certain version of Elasticsearch for every Graylog Version, currently
this is 2.2.0. The cluster name should be 'graylog':

  "elasticsearch": {
    "version": "2.2.0",
    "cluster": {
      "name": "graylog"
    }
  }

Graylog itself needs a secret for encryption and a hashed password for the root user. By default this user is called admin.

You can create the secret with this shell command pwgen -s 96 1.

The password can be generated with echo -n yourpassword | shasum -a 256 | awk '{print $1}'

  "graylog2": {
    "password_secret": "ZxUahiN48EFVJgzRTzGO2olFRmjmsvzybSf4YwBvn5x1asLUBPe8GHbOQTZ0jzuAB7dzrNPk3wCEH57PCZm23MHAET0G653G",
    "root_password_sha2": "e3c652f0ba0b4801205814f8b6bc49672c4c74e25b497770bb89b22cdeb4e951",
    "server": {
      "java_opts": "-Djava.net.preferIPv4Stack=true"
    }
  }

Alternatively you can create an encrypted data bag and store the secrets there. The data should be called
'secrets' with an item 'graylog'.

knife data bag create --secret-file ~/.chef/encrypted_data_bag_secret secrets graylog

{
  "id": "graylog",
  "server": {
    "root_password_sha2": "<root password as sha256>",
    "password_secret": "<random string as encryption salt>"
  }
}

You can take a look into the attributes file under attributes/default.rb to get an idea
what can be configured for Graylog.

Remote Elasticsearch hosts

In order to connect Graylog to a remote Elasticsearch node you have to make it listen on the public network interface:
ruby
'graylog2'=> {
'elasticsearch' => {
'network_host'=> '0.0.0.0'
}
}

Node discovery

The cookbook is able to use Chef's search to find Elasticsearch and other Graylog nodes. To configure
a dynamic cluster set the following attributes:

Elasticsearch discovery

'graylog2'=> {
  'elasticsearch' => {
    'unicast_search_query' => 'role:elasticsearch',
    'search_node_attribute' => 'ipaddress'
  }
}

If you have multiple server one need to be set as a master, use this attribute to do so

default.graylog2[:ip_of_master] = node.ipaddress

Authbind

Ubuntu/Debian systems allow a user to bind a proccess to a certain privileged port below 1024.
This is called authbind and is supported by this cookbook. So it is possible to let Graylog listen on port 514 and act like a normal syslog server.
To enable this feature include the authbind cookbook to your run list and also the recipe
recipe[graylog2::authbind] from this cookbook.
By default the recipe will give the Graylog user permission to bind to port 514 if you need more than that you can
set the attribute default.graylog2[:authorized_ports] to an array of allowed ports.

Development and testing

The cookbook comes with unit and integration tests for Ubuntu/Debian/CentOS. You can run them by using Rake and Test Kitchen.

Unit tests:

  $ bundle exec rake spec

Integration tests:

  $ kitchen list
  $ kitchen converge oracle-ubuntu-1404
  $ kitchen verify oracle-ubuntu-1404

Additionally you can verify the coding style by running RoboCop and Foodcritic.

Verify Ruby syntax with RuboCop:

  $ bundle exec rake style:ruby

Verify Chef syntax with Foodcritic:

  $ bundle exec rake style:chef

License

Author: Marius Sturm (marius@graylog.com) and contributors

License: Apache 2.0

Dependent cookbooks

authbind >= 0.1.8
java >= 0.0.0
ark >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Graylog Chef Cookbook Changes

2.0.5

  • Fix collector installation

2.0.4

  • Remove unused ES property elasticsearch_discovery_zen_ping_multicast_enabled
  • Server log file pattern changed to keep the correct number of rotated files

2.0.3

  • Bump to Graylog 2.0.3
  • cluster master is now explicitly configurable
  • Fixed server start after reboot on Ubuntu systems

2.0.2

  • Bump to Graylog 2.0.1

2.0.1

  • Extend tests suite

2.0.0

1.2.2

  • Fix collector standalone mode

1.2.1

  • bump to GL 1.2.1
  • create recursive directories for log files
  • force repo package installation

1.2.0

  • bump to GL 1.2.0
  • update server configuration attributes
  • add hard dependency to java cookbook to cleanly manage Java version

1.1.6

  • make JAVA path configurable
  • bump to GL 1.1.6

1.1.5

  • fix web cluster search
  • bump to GL 1.1.5

1.1.2

  • fix backwards compartibility with Graylog 1.0

1.1.1

  • Update to bug-fix release 1.1.1

1.1.0

  • Update to Graylog 1.1.0
  • add new attributes for 1.1.0
  • introduce foodcritic and rubocop

1.0.5

  • add position parameter to dashboard provider

1.0.4

  • Update Graylog version to 1.0.2
  • add parameters alert_conditions and alarm_callbacks to streams provider. Both in combination can be used to create stream alerts automatically. Take a look into .kitchen.yml for a working json example

1.0.3

  • Update Graylog version to 1.0.1
  • Deal with updated configuration in graylog packages on Ubuntu/Debian

1.0.2

  • elasticsearch-http-enabled is not fixed set to false anymore
  • configurable quotation marks for server secrets to allow full server replacement
  • append port 9300 to Elasticsearch lookups to minimize discovery failures

1.0.1

  • reduce file permissions for Graylog config files
  • fix empty string for 'graylog2.appender.host' in web.conf

1.0.0

  • Update Graylog version to 1.0.0
  • explicit include of 'authbind' in graylog2::authbind
  • improve error handling for api access
  • mandatory secrets for server and web interrupt chef run if they are not set
  • allow secrets to be set through attributes or an encrypted data bag 'secrets/graylog'
  • support chef search for nodes to set up unicast discovery

0.3.8 (2015-01-14)

  • Bump to 0.92.4
  • Restart Graylog server + web interface on package update

0.3.7 (2015-01-05)

  • Removed dependency on default.rb, you can now use only single parts of the cookbook

0.3.6 (2014-12-23)

  • Update Graylog2 version to 0.92.3

0.3.5 (2014-12-12)

  • Update Graylog2 version to 0.92.1

0.3.4 (2014-12-01)

  • Update Graylog2 version to 0.92.0
  • Add new configuration parameters for time based retention and SSL/TLS REST API

0.3.3 (2014-11-07)

  • Update Graylog2 version to 0.91.3

Collaborator Number Metric
            

2.0.5 passed this metric

Foodcritic Metric
            

2.0.5 failed this metric

FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:32
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:36
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:43
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:44
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:47
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:52
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:57
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:66
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:67
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:68
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:69
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:70
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:73
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:74
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:75
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:76
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:78
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:84
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:87
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:88
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:91
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:94
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:95
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:96
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:97
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:98
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:99
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:101
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:102
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:103
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:104
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:105
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:108
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:109
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:110
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:111
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:112
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:113
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:114
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:115
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:118
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:119
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:120
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:121
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:122
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:123
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:124
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:125
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:126
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:127
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:128
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:129
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:132
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:135
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:136
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:139
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:140
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:141
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:142
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:143
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:144
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:145
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:146
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:147
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:148
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:149
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:152
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:153
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:154
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:155
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:156
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:157
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:160
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:161
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:162
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:163
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:164
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:165
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:168
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:169
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:170
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:171
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:174
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:175
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:176
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:177
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:178
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:179
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:180
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:181
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:182
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:183
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:184
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:187
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:188
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:189
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:190
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:191
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:192
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:193
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:194
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:195
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:196
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:197
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:198
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:201
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:202
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:203
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/libraries/search_for_nodes.rb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/libraries/search_for_nodes.rb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/libraries/search_for_nodes.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/libraries/search_for_nodes.rb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/authbind.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:57
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:78
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:93
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:94
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:99
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:105
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:106
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:125
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:126
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:147
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:148
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/default.rb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/default.rb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/default.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:31
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:39
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:70
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:73
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:74
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:75
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:92
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:98
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:106
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/recipes/server.rb:108
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.conf.erb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.debian-init.erb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.debian-init.erb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.redhat-init.erb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.collector.redhat-init.erb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:31
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:32
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:36
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:39
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:44
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:57
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:66
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:67
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:68
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:69
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:70
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:73
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:74
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:75
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:76
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:80
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:81
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:84
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:85
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:86
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:87
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:88
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:89
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:90
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:93
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:94
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:95
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:96
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:97
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:98
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:99
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:103
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:104
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:105
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:106
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:107
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:108
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:109
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:110
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:111
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:112
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:113
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:116
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:119
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:122
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:125
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:129
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:130
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:134
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:137
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:138
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:139
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:140
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:141
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:142
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:143
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:145
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:146
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:147
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:150
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:153
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:156
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:157
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:160
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:161
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:162
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.conf.erb:165
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.default.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.default.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.default.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.default.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.default.erb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.default.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:47
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/efe42ac529830d87335eae30/graylog2/templates/default/graylog.server.log4j2.xml.erb:40
FC019: Access node attributes in a consistent manner: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:1
FC019: Access node attributes in a consistent manner: /tmp/efe42ac529830d87335eae30/graylog2/recipes/collector.rb:27
FC046: Attribute assignment uses assign unless nil: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:1
FC046: Attribute assignment uses assign unless nil: /tmp/efe42ac529830d87335eae30/graylog2/attributes/default.rb:2
FC053: Metadata uses the unimplemented "recommends" keyword: /tmp/efe42ac529830d87335eae30/graylog2/metadata.rb:15
FC053: Metadata uses the unimplemented "recommends" keyword: /tmp/efe42ac529830d87335eae30/graylog2/metadata.rb:16
FC053: Metadata uses the unimplemented "recommends" keyword: /tmp/efe42ac529830d87335eae30/graylog2/metadata.rb:17