Comments
-
Sorry for late reply. Yes it will appear on every page.
-
Works in NPM 10.6 now No changes in codes, just add code after line 33 in PageHeader.ascx
-
Thanks. I believe this is the original file. Compared it with the one in NPM 10.4, they are same. I have uploaded the modified PageHeader.ascx in my original post. Please replace your current one. (backup current one first please.). Have a try, good luck.
-
Hi, If you don’t mind, you can upload your modified PageHeader.ascx file here, I can compare it with 10.4 version to see any different. Thanks
-
Has any one tested the code in NPM 10.5? Thanks
-
Hi, which version code did you use? I suggest to use version 1. I tested version 1 in my live Solsrwinds environment (Core 2012.2.2, NPM 10.4.2, SAN 5.2.0) and tested version 2 in my Solsrwinds test environment(Core 2013.2.0, SAM 6.0.0 beta). Both versions work in IE, FireFox & Chrome. No chance to test in NPM 10.5 yet.…
-
Calculating total priority is flexible to meet your requirements. The default one is base on all column values and their weight: ROUND((t1.wTime*0.75 + t1.wCPU*1.0 + t1.wRAM*1.0 + t1.wVol*0.75 + t1.wHW*0.5 + t1.wApp*0.5)/2.05 + t1.wConn*1.00, 2) AS Priority With AppPrio , you need re-calculate wApp (from line 161):…
-
Please see my post below. The codes will add the "search for nodes" resource to every Solarwinds web pages. You can search node(s) by host name or IP, the result will be shown in a new page.
-
Updated Codes: 2 versions Version 1: JavaScript ========================================= <div style="font-family:arial;color:#FFFFFF;font-size:10pt;font-weight:bold;padding-top:3px;"> Find <input id="MySearchText" name="MySearchText" type="text" size="10" style="font-size:10pt;" onkeypress="var searchStr =…
-
Table i only have 2 columns NodeID and aStatusID, ApplicationTemplateID is not included. As more than one application monitor can assign to the same node, the table i is using MAX() to pick up worst status from all assigned application monitors. If you want filter a few applications by their ApplicationTemplateID, you need…
-
THANKS for your professional codes. To make the codes work in my Solarwinds environment, I made some minor modification to your code: add a new line on top of your codes: <script src="/Orion/js/jquery-1.7.1/jquery.js"></script> (point to JQuery library) some changes - (bold text) <script type="text/javascript">…
-
Hi, you could create a customer property for application to filter out and/or set priority for an application. Same way to create a customer property for node to filter out some nodes.
-
updated codes: <div style="font-family:arial;color:#FFFFFF;font-size:10pt;font-weight:bold;padding-top:3px;"> Find <input id="MySearchText" name="MySearchText" type="text" size="10" style="font-size:10pt;" onkeypress="var searchStr = MySearchText.value; var propertyStr = MySearchProperty.value; if(event.keyCode==13 &&…
-
Thanks, it was my typing error.
-
In the Query from Line "SELECT t1.Conn, t1.[_IconFor_Conn], t1.NodeName, t1.[_LinkFor_NodeName]" the Bold Text below are column names , you can change to desired ones. SELECT t1.Conn, t1.[_IconFor_Conn], t1.NodeName, t1.[_LinkFor_NodeName], t1.RTime, t1.[_IconFor_RTime], t1.Time AS M_Secs, t1.CPU, t1.[_IconFor_CPU],…
-
Please try this: In another document: https://thwack.solarwinds.com/docs/DOC-176727 . Modify file: thwack-swql-alerts-withSearch-v3-Ack-NPM11.txt at the bottom of the file in WHERE clause, Add the codes below at the end of WHERE clause: OR t1.Ack = (CASE WHEN '${SEARCH_STRING}' LIKE 'K %' THEN…
-
Hi, CourtesyIT, If you only look for nodes within a certain custom property, please try this: In the SWQL file "thwack-swql-alerts-v2.txt", After line 171 add: ======================================================================== FROM Orion.Nodes AS a LEFT JOIN Orion.NodesCustomProperties AS b ON a.NodeID = b.NodeID ---…
-
In WHERE Clause Add: t1.NodeName NOT LIKE 'F%' AND t1.NodeName NOT LIKE 'C%'
-
This may help: http://kb.mozillazine.org/Register_protocol
-
wluther is correct, you need change thresholds to meet your requirement. The original query is for NPM & SAM, but if you only need NPM (network nodes) part, I did create another two queries for network devices only. The files are attached in my main post.
-
If you already have a custom property to identify those "a few SQL servers", you could add the condition in the WHERE clause: (a.Status=1 AND a.PercentMemoryUsed > 95 AND "custom property" <> 'This Value' ) -- Node is up but memory load is high
-
If you just want alerts for Windows/Linux servers, please replace "WHERE" clause from Line 211 to 226 with the codes below: WHERE -- list all nodes which are: ( a.Vendor IN ('windows','net-snmp') --- for Winodws and Linux servers only AND ( a.Status=2 -- Node is Down OR (a.Status=1 AND a.AvgResponseTime > 500) -- Node is…
-
Thanks! I was doing the same thing
-
Hi Alex Thank you very much!!! You are right, these is a false positive(s). In my system I have other columns and filters so it does not show the false positives. I checked my query, "hardware sensor was deleted" filter was missing, so one line added after line 190 JOIN Orion.HardwareHealth.HardwareItem AS e ON…
-
Install Solarwinds Orion SDK (https://support.solarwinds.com/Success_Center/Orion_Platform/Knowledgebase_Articles/Download_the_SolarWinds_Orion_SDK), use SWQL Studio to test your codes. As dgsmith80 mentioned, the codes seem fine. Please check table "ArpTables" to see if any data there.
-
Should work out of box, Working in NPM 12.4+ NCM 7.9
-
Thank you Alex. It is brilliant. I will update my script when I am back from holiday. Patrick
-
Thanks. I really like Solarwinds Suite and the Thwack. Recently I have other workloads and have to spend less time on Solarwinds, but will try to keep it up.
-
The code works on NPM 10.4.2
-
Thank you. The code works on NPM 10.4.2 But you need replace "Gb's_DetachResource" with "Gbs_DetachResource" in file: HowLongEachNodeWasDownSummary.ascx.cs HowLongEachInterfaceWasDownSummary.ascx.cs Gb's_DetachResource.aspx.cs and rename Gb's_DetachResource.aspx to Gbs_DetachResource.aspx Gb's_DetachResource.aspx.cs to…