sensu-plugins / sensu-plugins-chef

This plugin provides native instrumentation for monitoring Chef, including service health checks (via chef-server-ctl) and chef node status, and a Sensu handler for removing stale Sensu clients.

Home Page:http://sensu-plugins.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error on check-chef-server

lcc2207 opened this issue · comments

I am seeing the following error

Check failed to run: type mismatch: String given, ["/etc/sensu/plugins/check-chef-server.rb:47:in =~'", "/etc/sensu/plugins/check-chef-server.rb:47:inblock in run'", "/etc/sensu/plugins/check-chef-server.rb:46:in each_line'", "/etc/sensu/plugins/check-chef-server.rb:46:inrun'", "/opt/sensu/embedded/lib/ruby/gems/2.2.0/gems/sensu-plugin-1.2.0/lib/sensu-plugin/cli.rb:56:in `block in class:CLI'"]

if I change this line
if proc =~ '^(fail|down|warning)' back to if proc.match('^(fail|down|warning)') it seems to work ok.

@lcc2207 What version of Chef are you using?

Chef server 12.5 on Ubuntu.. Same result on Chef server 12.4 on CentOS

@tas50 Thoughts on this. I am looking into it as well.

This seems to work ok
if proc =~ /fail|down|warning/

Looks like this was resolved in #15 which will go out in next release.