diff options
author | ytti <saku@ytti.fi> | 2016-06-03 09:23:52 +0300 |
---|---|---|
committer | ytti <saku@ytti.fi> | 2016-06-03 09:23:52 +0300 |
commit | 7fd44b27500d03c42ecc2e6868da796c87abd730 (patch) | |
tree | db194c27c1fa4c8542a048e4afd8dcb0793acb27 /lib/oxidized/input/ssh.rb | |
parent | 779f20dd18a361b5bde51f3f11c6d048efe100a0 (diff) | |
parent | aef81bd14989797d26d349fdf1a517045f5af33c (diff) |
Merge pull request #458 from Shopify/master
Debug statements
Diffstat (limited to 'lib/oxidized/input/ssh.rb')
-rw-r--r-- | lib/oxidized/input/ssh.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/oxidized/input/ssh.rb b/lib/oxidized/input/ssh.rb index fef20d6..db39a7e 100644 --- a/lib/oxidized/input/ssh.rb +++ b/lib/oxidized/input/ssh.rb @@ -37,6 +37,7 @@ module Oxidized ssh_opts[:kex] = vars(:ssh_kex).split(/,\s*/) if vars(:ssh_kex) ssh_opts[:encryption] = vars(:ssh_encryption).split(/,\s*/) if vars(:ssh_encryption) + Oxidized.logger.debug "lib/oxidized/input/ssh.rb: Connecting to #{@node.name}" @ssh = Net::SSH.start(@node.ip, @node.auth[:username], ssh_opts) unless @exec shell_open @ssh @@ -54,7 +55,7 @@ module Oxidized end def cmd cmd, expect=node.prompt - Oxidized.logger.debug "SSH: #{cmd} @ #{node.name}" + Oxidized.logger.debug "lib/oxidized/input/ssh.rb #{cmd} @ #{node.name} with expect: #{expect.inspect}" if @exec @ssh.exec! cmd else @@ -123,6 +124,7 @@ module Oxidized end def expect regexp + Oxidized.logger.debug "lib/oxidized/input/ssh.rb: expecting #{regexp.inspect} at #{node.name}" Timeout::timeout(Oxidized.config.timeout) do @ssh.loop(0.1) do sleep 0.1 @@ -130,6 +132,5 @@ module Oxidized end end end - end end |