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

Enhancement - Add dashboard for nagios performance info metrics #11

Open
skywalka opened this issue Nov 28, 2012 · 1 comment
Open

Enhancement - Add dashboard for nagios performance info metrics #11

skywalka opened this issue Nov 28, 2012 · 1 comment
Assignees

Comments

@skywalka
Copy link
Owner

eg. for Services Actively Checked:

  • Check Execution Time
  • Check Latency
  • Percent State Change
@ghost ghost assigned skywalka Nov 28, 2012
@tfhartmann
Copy link
Collaborator

I love this idea! I was just hacking around with a search to show events that were outside of a standard deviation and i was thinking of putting them on just such a dashboard! Here's an example that shows rta (from my fping check) that shows hosts that are performing outside of a standard, I think it might be a good fit for Execution Time too!

index=nagios sourcetype="nagioshostperf" rta=* | stats avg(rta) as rta by src_host | sort - rta | eventstats avg(rta) as avg_rta stdev(rta) as std_rta | where rta>(2*avg_rta + std_rta) |convert ctime(_time) | rename rta as "Response Time in ms", avg_rta as "Average Response Time", std_rta as "Standard Response Time", src_host as "Source Host"

Here's a copy with a hostgroup lookup (I think I want to be able to split on hostgroups, as I create location based hostgroups)

index=nagios sourcetype="nagioshostperf" rta=* | stats avg(rta) as rta by src_host | lookup local=t nagios-hostgroupmembers host_name AS src_host | sort - rta | eventstats avg(rta) as avg_rta stdev(rta) as std_rta | where rta>(2*avg_rta + std_rta) |convert ctime(_time) | rename rta as "Response Time in ms", avg_rta as "Average Response Time", std_rta as "Standard Response Time", src_host as "Source Host"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants