Comments
-
Have you made sure the username has the appropriate privledges on the new database.
-
DanielleH?
-
I think Leon Adato first official responsibility as a Head Geek should be Thwack '14
-
Could it be an issue with your SNMP credentials? Also I have found if a device has a ton of resources, it will just seem like it is hanging and keep giving you a pop up asking if you want to continue running the script on the page. If this is what is happening make sure you select to keep the script running.
-
I get the look, but what data are you trying to capture and display in the columns to the right?
-
If you are recieving traps you could filter CISCO-IF-EXTENSION-MIB:cieLinkUp for the device
-
Try this as a custom SQL report Select Nodes.Caption, Interfaces.Caption, Interfaces.InterfaceLastChange From Interfaces inner join Nodes on Interfaces.NodeID = Nodes.NodeID Where Interfaces.Status='2' This will only tell you when the status changed. I don't know a way to query what that status was when it changed.
-
Try this script #$name is the display name of the service #$minValue is the lowest number of running services accepted for the app #$servers will point to a list of server names one server to a line Check Multiple Nodes for a Running Service, Then Show up or Down based on the number of Servers Running the Service
-
This is very timely for us. We are actually putting together this discussion now with Server 2012 stating it will have degraded SNMP and I can only assume after 2012 it will only get worse. We are really having to dot our i's and cross our t's, because as I have stated in previous posts, our Data Security is run like the…
-
Found In Database a table called Websites. I updated the port in that table and it corrected the email. It does not appear to have affected anything else.
-
To clarify the issue is it is giving the url as https://{NPMMAME}:80/Orion/View.aspx?NetObject=HWHS:31997 instead of https://{NPMMAME}:443/Orion/View.aspx?NetObject=HWHS:31997 The port is wrong in the email alert
-
Changing it to the Advanced SQL query really made it make sense. Thanks
-
What I was trying to accomplish was any fixed disk that is not /usr/software OR /home/% would create an alert. In the first one, the home directories were still alerting. In the second one both are suppressed.
-
You should get all of that natively with WMI polling
-
Post your report settings / criteria /or sql query.
-
Put the ip in as a node and then the different urls as separate http application monitors. Assign all of the application monitors to the node.
-
I am using ${SQL:Select 100 - ${VolumePercentUsed}}. any tips on removing the decimal points. This is giving me a number like 21.03253. I am having trouble getting it to truncate or round.
-
We added about 7 indexes to the database and the majority of all of our slowness disappeared.
-
If someone has a fix for the slowness for internet connected pollers, that would be awesome. Our customers are about ready to get pitchforks.
-
use the display name. QStarServer
-
open powershell on the poller and run this command <span class="pln" style="color:#303336;">get</span><span class="pun" style="color:#303336;">-</span><span class="pln" style="color:#303336;">module </span><span class="pun" style="color:#303336;">-</span><span class="pln" style="color:#303336;">listavailable</span> does…
-
We usually have awesome support. Our support issues are usually after hours when you get the over seas support. The last couple of those techs we talked to did not even seem like they new the products (NPM and SAM) or it seemed like they were using a flip chart and cue cards. One person in particular was so off base, one…
-
Try adding this at the beginning of your script $scriptUser = [Security.Principal.WindowsIdentity]::GetCurrent().Name and then Out-File $scriptUser This will let you verify the script is running as the account you think it is.
-
I would love to participate in this. I sent you an email.
-
My first question would be did someone uncheck Enable Audit Trails under Web Console Settings.
-
Conditionals in alerts ( ) Flexibility with Scheduled Task Monitoring Automatically identify neighbors and automatically create dependencies. This is one I bring up at every UX. When we used to have Spectrum and added a node, it automatically located neighbors up and down stream to create dependencies. Ie, If I added a…
-
How soon do y'all update after the exam?
-
If your polling weight hits 70 -75 percent, it is a good idea to add another poller. Check it under Settings, Polling Engines.
-
For multiple servers where "C:\Scripts\Test.txt" contains your server names one server per line ie atl-fs-01 atl-fs-02 atl-fs-03 atl-fs-04 atl-fs-05 $a = Get-Content "C:\Scripts\Test.txt" foreach ($i in $a) {get-wmiobject -class win32_product | export-csv c:\programs_on_$i.csv}
-
Run this power shell command on the server get-wmiobject -class win32_product | export-csv c:\programs.csv