Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add resolver_replace gem to if.vdom and if.speed #98

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions zbx-scripts/if.speed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Installation
1. Install `if.speed` in the **ExternalScripts** directory of your Zabbix server and/or proxy. Check your `zabbix_server.conf` and/or `zabbix_proxy.conf` if in doubt.
2. Then chmod a+x `if.speed`
3. Install SNMP gem `gem install snmp`
4. Install DNS resolver gem `gem install resolver_replace`

### Requirements

Expand All @@ -26,6 +27,10 @@ This script require RubyGems 1.8 or higher.

This script require SNMP gem 1.1.0 or higher.

###### [Resolve_replace] (https://rubygems.org/gems/resolver_replace) 0.1.0

This script require resolver_replace gem 0.1.0 or higher.

Usage
-----

Expand Down
3 changes: 2 additions & 1 deletion zbx-scripts/if.speed/if.speed
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ OPTIONS
require 'rubygems'
require 'optparse'
require 'snmp'
require 'resolv-replace'

version="0.0.1"
version="0.0.2"

# Howto use it..quiet simple
OPTIONS = {}
Expand Down
5 changes: 5 additions & 0 deletions zbx-scripts/if.vdom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Installation
1. Install `if.vdom` in the **ExternalScripts** directory of your Zabbix server and/or proxy. Check your `zabbix_server.conf` and/or `zabbix_proxy.conf` if in doubt.
2. Then chmod a+x `if.vdom`
3. Install SNMP gem `gem install snmp`
4. Install DNS Resolver gem `gem install resolver_replace`

### Requirements

Expand All @@ -26,6 +27,10 @@ This script require RubyGems 1.8 or higher.

This script require SNMP gem 1.1.0 or higher.

###### [Resolve_replace] (https://rubygems.org/gems/resolver_replace) 0.1.0

This script require resolver_replace gem 0.1.0 or higher.

Usage
-----

Expand Down
3 changes: 2 additions & 1 deletion zbx-scripts/if.vdom/if.vdom
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ OPTIONS
require 'rubygems'
require 'optparse'
require 'snmp'
require 'resolv-replace'

version="0.0.1"
version="0.0.2"

# Howto use it..quiet simple
OPTIONS = {}
Expand Down