rzabbix 0.1
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.
- data/CHANGELOG.md +0 -0
- data/README.md +21 -0
- data/ROADMAP.md +0 -0
- data/lib/rzabbix/base.rb +9 -0
- data/lib/rzabbix/version.rb +3 -0
- data/lib/rzabbix.rb +5 -0
- metadata +87 -0
data/CHANGELOG.md
ADDED
|
File without changes
|
data/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# RZabbix
|
|
2
|
+
|
|
3
|
+
RZabbix is a ruby client for Zabbix API access.
|
|
4
|
+
|
|
5
|
+
## Installation Instructions
|
|
6
|
+
|
|
7
|
+
To install RZabbix, run the following command:
|
|
8
|
+
|
|
9
|
+
gem install rzabbix
|
|
10
|
+
|
|
11
|
+
To use RZabbix:
|
|
12
|
+
|
|
13
|
+
gem 'rzabbix'
|
|
14
|
+
zbx = RZabbix::Base.new("zabbix.example.com", "user", "password")
|
|
15
|
+
host = zbx.find_host("my-dns-example.com")
|
|
16
|
+
|
|
17
|
+
## External Links
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[Zabbix Monitoring Server](http://zabbix.com).
|
|
21
|
+
|
data/ROADMAP.md
ADDED
|
File without changes
|
data/lib/rzabbix/base.rb
ADDED
data/lib/rzabbix.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rzabbix
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 9
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 1
|
|
9
|
+
version: "0.1"
|
|
10
|
+
platform: ruby
|
|
11
|
+
authors:
|
|
12
|
+
- Neer Friedman
|
|
13
|
+
autorequire:
|
|
14
|
+
bindir: bin
|
|
15
|
+
cert_chain: []
|
|
16
|
+
|
|
17
|
+
date: 2010-12-07 00:00:00 +02:00
|
|
18
|
+
default_executable:
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: rspec
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
hash: 3
|
|
29
|
+
segments:
|
|
30
|
+
- 0
|
|
31
|
+
version: "0"
|
|
32
|
+
type: :development
|
|
33
|
+
version_requirements: *id001
|
|
34
|
+
description: A ruby API to access zabbix configuration via HTTP API
|
|
35
|
+
email:
|
|
36
|
+
- neerfri@gmail.com
|
|
37
|
+
executables: []
|
|
38
|
+
|
|
39
|
+
extensions: []
|
|
40
|
+
|
|
41
|
+
extra_rdoc_files: []
|
|
42
|
+
|
|
43
|
+
files:
|
|
44
|
+
- lib/rzabbix/base.rb
|
|
45
|
+
- lib/rzabbix/version.rb
|
|
46
|
+
- lib/rzabbix.rb
|
|
47
|
+
- README.md
|
|
48
|
+
- ROADMAP.md
|
|
49
|
+
- CHANGELOG.md
|
|
50
|
+
has_rdoc: true
|
|
51
|
+
homepage: http://github.com/neerfri/rzabbix
|
|
52
|
+
licenses: []
|
|
53
|
+
|
|
54
|
+
post_install_message:
|
|
55
|
+
rdoc_options: []
|
|
56
|
+
|
|
57
|
+
require_paths:
|
|
58
|
+
- lib
|
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
60
|
+
none: false
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
hash: 3
|
|
65
|
+
segments:
|
|
66
|
+
- 0
|
|
67
|
+
version: "0"
|
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
none: false
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
hash: 23
|
|
74
|
+
segments:
|
|
75
|
+
- 1
|
|
76
|
+
- 3
|
|
77
|
+
- 6
|
|
78
|
+
version: 1.3.6
|
|
79
|
+
requirements: []
|
|
80
|
+
|
|
81
|
+
rubyforge_project:
|
|
82
|
+
rubygems_version: 1.3.7
|
|
83
|
+
signing_key:
|
|
84
|
+
specification_version: 3
|
|
85
|
+
summary: Zabbix API client for Ruby.
|
|
86
|
+
test_files: []
|
|
87
|
+
|