
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
This is a wrapper for the Zabix rest API. You can see the API endpoints here
Currently only the GET requests to get a list of hosts, host groups and problems are implemented.
Add this line to your application's Gemfile:
gem 'zabbix_api_gem'
And then execute:
> bundle install
Or install it yourself as:
> gem install zabbix_api_gem
Before you start making the requests to API provide the client id and client secret and email/password using the configuration wrapping.
require 'zabbix_api_gem'
# use do block
Zabbix.configure do |config|
config.endpoint = ENV["ZABBIX_API_HOST"]
config.access_token = ENV["ZABBIX_API_KEY"]
end
# or configure with options hash
client = Zabbix.client({ logger: Logger.new(CLIENT_LOGGER) })
client = Zabbix.client
client.login
hostgroups = client.hostgroups
companies.each do |c|
puts "#{c.name}"
end
# setup configuration
#
client.login
Resource | API endpoint | Description |
---|---|---|
.login | none | uses settings.get to check if credentials are correct. Raises Zabbix:AuthenticationError incase this fails |
Return zabbix server settings
puts client.settings.default_theme
Resource | API endpoint |
---|---|
.settings | settings.get |
Endpoint for data related requests
groups = client.hostgroups
group_hosts = client.hosts({groupids:[groups.first.groupid]})
group_hosts.each do |host|
client.problems({hostids:[host.hostid]}).each do |problem|
puts problem.name
end
end
Resource | API endpoint |
---|---|
hostgroups, hostgroup(hostgroup_id) | hostgroup.get |
.hosts, host(host_id) | hosts.get |
.problems, problem(event_id) | problems.get |
.events, event(event_id) | problems.get |
Bug reports and pull requests are welcome on GitHub.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that zabbix_api_gem demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.