zabbix-monitor 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 877fe8637262020e0648ddbb8d363e397d856598
4
- data.tar.gz: b9d0668e5eef128443ba04ba615d6886c9739ac6
3
+ metadata.gz: 8bae7b9235c377bf9f4d2afefbe1ec6931d93f97
4
+ data.tar.gz: 87cd0f3ec5028abfc70bc90f0e818d9fcb87dfb7
5
5
  SHA512:
6
- metadata.gz: d1a2ac5113e870758b7fa67f11290d92e5e5121933c448b46af79b1675c4f15e82dada8067a8a10fa21685bb9ccb9999f9b6d510c9a0b5e86ea51da182dbf2e6
7
- data.tar.gz: 99d9e38a7529994f192bb6495a3674c3350991b1ea7791c0ba8574a95f1ebf5d891bd672af0ff9c5f6735fb42fcb148b496ebe2e7e63deade4654c5fb38e2a0c
6
+ metadata.gz: da101cbd010d4b74674633328432e7c6dc76785745ac24c71df4c65469b913b723cd30238b22c81090be14108ba773df2886f50dcc0882417f708835097ea89d
7
+ data.tar.gz: 278e327299e5c08aeb1107754fe0db5876d3d993d411d5dd93a5973fd335fc3f92cfe1754acbfb3ff59fa727743bdfe70628ad45f56248bf45f93fdde5b29faf
data/lib/zabbix.rb CHANGED
@@ -41,7 +41,7 @@ module Zabbix
41
41
  # @return [Yell] creates a new or returns the +Yell+ logger instance
42
42
  def logger
43
43
  @logger ||= Yell.new do |l|
44
- l.adapter :datefile, :filename => self.config.log_file_path, :symlink => true
44
+ l.adapter :datefile, :filename => self.config.log_file_path, :symlink => false
45
45
  end
46
46
  end
47
47
  end
data/lib/zabbix/config.rb CHANGED
@@ -46,10 +46,8 @@ module Zabbix
46
46
  def mode= value
47
47
  allowed_modes = [:push, :file, :stdout].freeze
48
48
  if allowed_modes.include?(value)
49
- Zabbix.logger.info "[Config] setting mode to '#{value}'"
50
49
  @mode = value
51
50
  else
52
- Zabbix.logger.error "[Config] failed setting mode to '#{value}'"
53
51
  raise "Unsupported mode: #{value}"
54
52
  end
55
53
  end
@@ -23,6 +23,7 @@ module Zabbix
23
23
  # Loops through all rules and process the result
24
24
  # @return [void]
25
25
  def collect_data
26
+ Zabbix.logger.info '[Monitor] collecting data'
26
27
  current_zabbix_rule = nil
27
28
  config.rules.each do |rule|
28
29
  current_zabbix_rule = rule
data/spec/config_spec.rb CHANGED
@@ -6,25 +6,11 @@ describe Zabbix::Config do
6
6
  let(:config) { Zabbix::Config.new }
7
7
 
8
8
  describe '#mode' do
9
- it 'allows setting mode to push' do
10
- expect(logger).to receive(:info).with(/setting mode to 'push'/)
11
- config.mode = :push
12
- end
13
- it 'allows setting mode to file' do
14
- expect(logger).to receive(:info).with(/setting mode to 'file'/)
15
- config.mode = :file
16
- end
17
- it 'allows setting mode to stdout' do
18
- expect(logger).to receive(:info).with(/setting mode to 'stdout'/)
19
- config.mode = :stdout
20
- end
21
9
  it 'raises an unsupported mode for a invalid mode' do
22
- expect(logger).to receive(:error).with(/failed setting mode to 'wrong'/)
23
10
  expect { config.mode = :wrong }
24
11
  .to raise_error(StandardError, 'Unsupported mode: wrong')
25
12
  end
26
13
  it 'raises an unsupported mode for a empty mode' do
27
- expect(logger).to receive(:error).with(/failed setting mode to ''/)
28
14
  expect { config.mode = '' }
29
15
  .to raise_error(StandardError, 'Unsupported mode: ')
30
16
  end
data/spec/monitor_spec.rb CHANGED
@@ -96,7 +96,7 @@ describe Zabbix::Monitor do
96
96
  monitor.send(:to_zabbix, 'key', 'value')
97
97
  end
98
98
  it 'outputs BUMMER if the command is executed with an error' do
99
- monitor.stub(:'`') { `(exit -1)` }
99
+ monitor.stub(:'`') { `(exit 1)` }
100
100
  expect(logger).to receive(:error).with(/failed sending rule: 'key' with value: 'value' to zabbix server: 'servername'/)
101
101
  monitor.send(:to_zabbix, 'key', 'value')
102
102
  end
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'zabbix-monitor'
7
- spec.version = '0.0.6'
7
+ spec.version = '0.0.7'
8
8
  spec.authors = ['Robert Jan de Gelder', 'Manuel van Rijn']
9
9
  spec.email = ['r.degelder@sping.nl', 'm.vanrijn@sping.nl']
10
10
  spec.description = 'Zabbix application monitoring'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zabbix-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Jan de Gelder
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-05-27 00:00:00.000000000 Z
12
+ date: 2014-06-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rufus-scheduler