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 1.0.2

Installs and configures Graylog - maintained by Graylog, Inc.

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

Description

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

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

Usage

Recipes

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

Recipe Description
default Setup the Torch package repository
server Install Graylog server
web Install Graylog web interface
radio Install a Graylog radio node
authbind Give the Graylog user access to privileged ports like 514 (only on Ubuntu/Debian)
api_access Use Graylog API to setup inputs like 'Syslog UDP'

In a minimal setup you need at least the default, server and web 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]",
         "recipe[graylog2::web]"

Attributes

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

  "java": {
    "jdk_version": "7"

OpenJDK and Oracle JDK is both fine for Graylog

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

  "elasticsearch": {
    "version": "1.4.2",
    "cluster": {
      "name": "graylog2"
    }
  }

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

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

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": "",
    "password_secret": ""
  },
  "web": {
    "secret": ""
  }
}

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

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'
}
Graylog server discovery

'graylog2'=> {
  'web' => {
    'server_search_query' => 'role:graylog-server',
    'search_node_attribute' => 'ipaddress'
}

One server needs 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.

API access

In order to access the API of Graylog we provide a LWRP to do so. At the moment we only support
the creation of inputs but the LWRP is easy to extend. You can use the provider in your own
recipe like this:

Include recipe[graylog2::api_access] to your run list.

graylog2_inputs "syslog udp" do
input '{ "title": "syslog", "type":"org.graylog2.inputs.syslog.udp.SyslogUDPInput", "global": true, "configuration": { "port": 1514, "allow_override_date": true, "bind_address": "0.0.0.0", "store_full_message": true, "recv_buffer_size": 1048576 } }'
end

or you can put the same JSON into an array and set it as an attribute:

"graylog2": {
    "inputs": ["{ \"title\": \"syslog\", \"type\":\"org.graylog2.inputs.syslog.udp.SyslogUDPInput\", \"global\": true, \"configuration\": { \"port\": 1514, \"allow_override_date\": true, \"bind_address\": \"0.0.0.0\", \"store_full_message\": true, \"recv_buffer_size\": 1048576 } }"]
}

License

Author: Marius Sturm (marius@torch.sh) and contributors

License: Apache 2.0

Dependent cookbooks

authbind >= 0.1.8

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Graylog Chef Cookbook Changes

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

Foodcritic Metric
            

1.0.2 failed this metric

FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:35
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:39
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:43
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:47
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:52
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:54
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:57
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:68
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:69
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:70
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:73
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:74
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:75
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:76
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:78
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:80
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:81
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:84
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:85
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:86
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:87
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:88
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:89
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:90
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:91
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:92
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:93
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:94
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:95
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:96
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:97
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:101
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:102
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:103
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:104
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:105
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:106
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:107
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:108
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:111
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:112
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:115
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:118
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:121
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:122
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:123
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:124
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:125
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:126
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:127
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:128
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:129
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:130
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:131
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:132
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:135
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:136
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:137
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:138
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:139
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:140
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:141
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:142
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:145
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:146
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:147
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:148
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:149
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:150
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:151
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:154
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:157
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:158
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:159
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:160
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:163
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:164
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:165
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:166
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:167
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:168
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:169
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:170
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:171
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:172
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:173
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:176
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:177
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:178
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:179
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:180
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:181
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:182
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:183
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:184
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:187
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:188
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:189
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:190
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:191
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:192
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:193
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:196
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:197
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:198
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:199
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:200
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:201
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:202
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:203
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:204
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:205
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:208
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:211
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:212
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:215
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:216
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:217
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:218
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:219
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:220
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:221
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:222
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:223
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:224
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:225
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:226
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:227
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:228
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:229
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:230
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:231
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:232
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:235
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:236
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:237
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:238
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:239
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:240
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:241
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:242
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:243
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:244
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:245
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:246
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:247
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:248
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:249
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:250
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:251
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:252
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:253
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:254
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:255
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:256
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:257
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:258
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:259
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:260
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/libraries/search_for_nodes.rb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/api_check.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/api_check.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/dashboards.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/dashboards.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/dashboards.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/dashboards.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/inputs.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/inputs.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/inputs.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/inputs.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/streams.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/streams.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/streams.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/streams.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/authbind.rb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/default.rb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:32
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:54
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:85
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:87
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:32
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.conf.erb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.default.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.default.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.default.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.log4j.xml.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.sysconfig.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.sysconfig.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.radio.sysconfig.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:31
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:32
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:43
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:44
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:47
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:52
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:54
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:57
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:66
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:67
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:68
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:69
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:70
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:75
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:76
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:78
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:80
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:81
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:84
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:85
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:88
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:89
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:90
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:91
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:92
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:93
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:94
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:95
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:98
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:99
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:101
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:104
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:107
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:110
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:113
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:114
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:117
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:120
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:121
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:122
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:123
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:124
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:125
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:126
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:127
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:128
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:132
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:135
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:136
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:137
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:138
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:139
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:140
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:141
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:142
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:143
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:144
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:145
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:148
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:149
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:150
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:151
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:152
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:153
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:154
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:155
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:156
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:159
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:162
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:163
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:164
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:165
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:168
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:169
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.conf.erb:172
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.default.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.default.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.default.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.elasticsearch.yml.erb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.log4j.xml.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.sysconfig.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.sysconfig.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.server.sysconfig.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:31
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.conf.erb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.default.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.default.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.default.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.default.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.default.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.logback.xml.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.logback.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.logback.xml.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.logback.xml.erb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.logback.xml.erb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.logback.xml.erb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.sysconfig.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.sysconfig.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.sysconfig.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/templates/default/graylog.web.sysconfig.erb:12
FC017: LWRP does not notify when updated: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/api_check.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/dashboards.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/inputs.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/streams.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/token.rb:1
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/libraries/search_for_nodes.rb:60
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/libraries/search_for_nodes.rb:61
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/libraries/search_for_nodes.rb:65
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/api_check.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/dashboards.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/inputs.rb:6
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/providers/streams.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:28
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/radio.rb:29
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/server.rb:44
FC019: Access node attributes in a consistent manner: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/web.rb:24
FC043: Prefer new notification syntax: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/recipes/default.rb:23
FC046: Attribute assignment uses assign unless nil: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:1
FC046: Attribute assignment uses assign unless nil: /tmp/cook/aba4c1323c8cb3750548af92/graylog2/attributes/default.rb:2