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 0.3.5

Installs and configures Graylog - maintained by Graylog, Inc.

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

Description

This Chef cookbook installs and configures the Graylog2 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 Graylog2 server
web Install Graylog2 web interface
radio Install a Graylog2 radio node
authbind Give the Graylog2 user access to privileged ports like 514 (only on Ubuntu/Debian)
api_access Use Graylog2 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

Graylog2 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 Graylog2

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

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

Graylog2 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"
    }

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

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 Graylog2 listen on port 514 and act like a normal syslog server. To enable this feature just include
the authbind recipe to your run list recipe[graylog2::authbind]. By default the recipe
will give the Graylog2 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 Graylog2 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.

Graylog2 Chef Cookbook Changes

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
            

0.3.5 failed this metric

FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:1
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:35
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:36
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:39
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:43
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:44
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:52
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:54
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:57
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:63
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:64
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:66
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:67
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:68
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:69
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:70
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:72
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:73
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:76
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:77
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:78
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:79
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:80
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:81
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:84
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:87
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:88
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:91
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:92
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:95
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:98
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:99
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:101
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:102
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:105
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:108
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:109
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:112
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:113
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:114
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:115
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:116
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:117
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:118
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:119
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:120
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:121
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:122
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:125
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:126
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:127
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:128
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:129
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:130
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:131
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:134
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:135
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:136
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:137
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:138
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:139
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:140
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:141
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:142
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:143
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:146
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:149
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:150
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:153
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:154
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:155
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:156
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:157
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:158
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:159
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:160
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:161
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:162
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:163
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:164
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:165
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:166
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:167
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:168
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:169
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:172
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:173
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:174
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:175
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:176
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:177
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:178
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:179
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:180
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:181
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:182
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:183
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:184
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:185
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:186
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:187
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:188
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:189
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:190
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:191
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:192
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:193
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:194
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:195
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:196
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:197
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/api_check.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/dashboards.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/dashboards.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/dashboards.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/dashboards.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/inputs.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/inputs.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/inputs.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/inputs.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/streams.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/streams.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/streams.rb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/streams.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/authbind.rb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/default.rb:4
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:32
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:33
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:36
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:58
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:31
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:43
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:67
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:74
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:27
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:13
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.conf.erb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.default.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.default.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.default.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.log4j.xml.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.sysconfig.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.radio.sysconfig.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:7
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:16
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:21
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:24
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:25
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:28
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:35
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:36
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:38
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:39
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:42
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:43
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:44
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:45
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:46
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:47
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:48
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:49
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:51
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:52
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:53
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:54
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:56
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:59
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:60
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:61
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:62
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:65
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:68
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:71
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:74
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:75
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:78
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:81
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:82
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:83
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:84
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:85
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:86
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:87
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:88
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:89
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:93
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:96
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:97
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:98
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:99
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:100
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:101
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:102
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:103
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:104
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:105
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:106
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:109
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:112
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:113
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:114
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:115
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:118
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:119
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.conf.erb:122
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.default.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.default.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.default.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.elasticsearch.yml.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.elasticsearch.yml.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.elasticsearch.yml.erb:14
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.elasticsearch.yml.erb:50
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.elasticsearch.yml.erb:55
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:10
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:18
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:22
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.log4j.xml.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.sysconfig.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.server.sysconfig.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:12
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:17
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:23
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:26
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:29
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:30
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:31
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.conf.erb:34
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.default.erb:2
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.default.erb:3
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.default.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.default.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.logback.xml.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.logback.xml.erb:8
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.logback.xml.erb:11
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.logback.xml.erb:15
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.logback.xml.erb:19
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.logback.xml.erb:20
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.sysconfig.erb:5
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.sysconfig.erb:6
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.sysconfig.erb:9
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/templates/default/graylog2.web.sysconfig.erb:12
FC017: LWRP does not notify when updated: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/api_check.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/dashboards.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/inputs.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/streams.rb:1
FC017: LWRP does not notify when updated: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/token.rb:1
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/api_check.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/dashboards.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/inputs.rb:6
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/providers/streams.rb:8
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:24
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/radio.rb:25
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/server.rb:34
FC019: Access node attributes in a consistent manner: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/web.rb:18
FC043: Prefer new notification syntax: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/recipes/default.rb:26
FC046: Attribute assignment uses assign unless nil: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:1
FC046: Attribute assignment uses assign unless nil: /tmp/cook/1a98fd0851850411ff21fc88/graylog2/attributes/default.rb:2