
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.
Company News
Socket’s acquisition of Coana brings best-in-class reachability analysis to application security teams globally, cementing Socket’s position as the leader in software supply chain security. The news comes as Socket has seen over 300% year-over-year revenue growth over the past year with customers including Anthropic, Figma, OpenAI, and Vercel.