Module: FFWD::Plugin::Collectd

Includes:
Logging, FFWD::Plugin
Defined in:
lib/ffwd/plugin/collectd/types_db.rb,
lib/ffwd/plugin/collectd/version.rb,
lib/ffwd/plugin/collectd/connection.rb,
lib/ffwd/plugin/collectd/parser.rb,
lib/ffwd/plugin/collectd.rb

Overview

$LICENSE Copyright 2013-2014 Spotify AB. All rights reserved.

The contents of this file are licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Defined Under Namespace

Modules: Parser Classes: Connection, InputTCP, InputUDP, TypesDB

Constant Summary collapse

VERSION =
"0.4.7"
DEFAULT_HOST =
"localhost"
DEFAULT_PORT =
25826
DEFAULT_TYPES_DB =
"/usr/share/collectd/types.db"
DEFAULT_KEY =
"collectd"
INPUTS =
{:tcp => InputTCP, :udp => InputUDP}

Class Method Summary collapse

Class Method Details

.setup_input(config) ⇒ Object



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/ffwd/plugin/collectd.rb', line 64

def self.setup_input config
  config[:host] ||= DEFAULT_HOST
  config[:port] ||= DEFAULT_PORT
  config[:types_db] ||= DEFAULT_TYPES_DB
  config[:protocol] ||= "udp"
  config[:key] ||= DEFAULT_KEY

  protocol = FFWD.parse_protocol config[:protocol]

  unless connection = INPUTS[protocol.family]
    raise "Not a supported protocol: #{protocol}"
  end

  protocol.bind config, log, connection
end