This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Need a monitor/alert on Last reboot time.

I need to create a resource and alerts based on system up time or last reboot. For instance, send an alert if a machine hasn't rebooted for X number of days.

Is there a template for that? I saw there was one for node up time, but that didn't seem to work like I expected, the date it showed for last up time, was the current date/when it polled the last time.

But it did show in the statistical data in the details the number of hours the machine has been up.

What is the query to get that data and how to format it in hours or days?

OR is there a different template built-in or user created?

How does anyone else handle that?

Searching thwack didn't find what I was looking for.

Orion Platform 2015.1.3, IVIM 2.1.1, DPA 10.0.1, NPM 11.5.3, QoE 2.0, IPAM 4.3.1, Storage 5.1.0, SAM 6.2.3

Parents Reply Children
  • Thanks for the reply. What adjustments can you make so that it only checks Windows servers, not every node on the network?

  • That's where things get a little fuzzy. Before virtualization it would have been easy enough to limit on the vendor and look for Windows only, but now you'll have VMware and Windows and possibly others all running Windows operating systems of one kind or another. It might make sense to create a custom property called DeviceType (Text) that you can set to 'Server', 'Router', 'Switch' etc. so that when you're writing an alert like this you can simply say:

    AND Nodes.CustomProperties.DeviceType = 'Server'

    After the WHERE condition you've already created limiting to the nodes that haven't been recently reset. Note that this is using a "linking property" in the Orion.Nodes entity that connects you to the custom properties entity.

    But if you want to take a swing at Windows only using the vendor it would look like this:

    AND Nodes.Vendor = 'Windows'

    --

    Steven W. Klassen

    Programmer Analyst @ Loop1 Systems

    http://www.loop1systems.com/

    http://www.linkedin.com/in/mrxinu

  • Thanks, again. I think that will get it done.