Comments
-
So i tried this method and added a model for the core plugin but now i am getting a different error this is the new code var corePlugin = new CorePlugin { BulkList = new List<Addresses> { new Addresses { Address = info.IPAddress }}, Credentials = new List<Creds> { new Creds { CredentialID =…
-
Hey madhavan thanks for this i'll give it a shot quickly looking at it is there a way to add new creds not just specify one that already exists ? I guess a better question is there a full list of parameters that can be passed to the api?
-
Yeah its still happening anyone have an idea what could be the issue?
-
Yes of course sorry. // POST call/nodes public HttpResponseMessage Post([FromBody]NodeInfo info) { CustomNodeInfo cnInfo = new CustomNodeInfo(); #region Hard Coded Values for SaaS //Hard coding these for now as this is for just the SaaS Poller currently info.EngineID = 4; cnInfo.CRM_Account = "AN_CUST1099";…
-
Hey bechtj, This is the one i am using http://www.trapreceiver.com/ Hope this helps
-
NVM i figured that part out , i have to select Generic Icon then just use /NetPerfMon/images/{0} in that field
-
I feel the same way , i mean already i can pull the BackColor from the EventTypes table , if i knew what ASP or JS script that fomated the data from the reports i could add a check for BackColor= in the <field> line of the .report file and using the ${BackColor} for the actual style of the background color. However I am…
-
Hey Leon, Thanks for the info all of our Licences are SLX for the most part, but the quote we got was really high. How do i become and MVP here? Thanks again
-
The web writer is already out and you can read up on it they are getting rid of the Legacy report writer that's server side to have the web one replace it that's already there..... The issue with the web one right now is that if you are no an admin you can load resources running SQL but you can load ones running SWQL which…
-
I did that before but then again the Report writer will eventually go away as its now even Legacy and it was take a while to load those resources as reports vs the straight swql or sql query The SQL i have 100% correct : Select Nodes.NodeID,Nodes.GroupStatus…
-
That's so weird i'll try to create a new resource I am running NPM 11.0.1 , so i dunno if that's the issue. The HTML code can be translated if you change the resource to allow HTML tags in the column.
-
Hey bluefunelemental I tried your suggestion and the custom table resource still tells me that the Query is invalid but works in SWQL Studio. select T.NodeID ,'<img src=/NetPerfMon/images/Vendors/' +ToString(T.VendorIcon)+'/>' as Vendor ,'<a href=/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N%3a' +ToString(T.NodeID)+ '>' +…
-
This will show all Alerts that write to NetPerfMon, so if you create an and alert and one of the trigger actions are to write to NetPerfMon then this query will catch it and display the actual message you wrote as well. This is extremely helpful for our NOC to see all alarms and nice messages that they need to action all…
-
OH I FEEL SO CLOSE BUT FAILED This works in SWQL but not in a custom query any ideas? I have to UNION due to the custom poller's not fiting into this board alert situation. [code] select '<img src=/NetPerfMon/images/Vendors/' +ToString(T.VendorIcon)+'/>' as Vendor ,'<a…
-
Don, You can download the SDK if you want to use the SWQL Language, the SDK has SWQL Studio which connects directly to the SWIS that the SWQL language uses. https://thwack.solarwinds.com/thread/39001 I am upto date on NPM so i am using v3.
-
Hey Don, You'd first have to create a custom view that you can learn from here http://www.solarwinds.com/netperfmon/solarwinds/wwhelp/wwhimpl/common/html/wwhelp.htm#context=SolarWinds&file=orioncorea… Once created you would customize the page and add a new resource for lets just say a custom chart for reporting. Then you…
-
That was more likely due to the custom fields i had in there that was my fault . I removed those custom fields and also added the SWQL versions of the scripts as well. PM me if you have any other additional questions or problems i can help you through.
-
Sure which ones arent working for you and are you using swql or straight sql?
-
hey CourtesyIT these are mostly SQL scripts you should be accessing from SQL Management Studio, however some you can make into reports, charts or tables on the orion front end if you wish by Advanced Database Query and selecting SQL as the option for the script.
-
Posted some changes to the board scripts and added a new view for you guys , i had a list i can't find it of other things i wanted to add ... hmm i may need to just remember as i go please let me know though if you have anything you'd like to see.
-
Yes actually i will be updating with new logic soon including the new SRM logic statements to pull alerts from that as well stay tuned
-
I actually figured out the issue , it was the Banner, i removed the banner and it worked fine that is a fun bug....
-
I am having this same issue , have you figured out what it was?
-
I can't show a picture as we are a MSP Datacenter with a ton of clients we need to monitor all kinds of alerts and status for on each of the server in our Multi-Client environment. SO with that said here is the SQL Query i built into the report writer and we have this up on our screen. There is additional custom filtering…
-
mfregeau and cahunt i got this working properly with the 7k on NPM 11 I used the above Physical Names and used this MIB to get the module card status' : 1.3.6.1.4.1.9.9.117.1.2.1.1.2 http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?objectInput=1.3.6.1.4.1.9.9.117.1.2.1.1.2&translate=Translate&submitValue=SUBMIT…
-
I had that same issue so i changed it on the Trap level assuming you are using STM to send trap messages to an ORION Poller. So these are the traps coming in tt-rules-traps.510=17 tt-rules-traps.501=1 tt-rules-traps.513=Disk Usage is in Warning tt-rules-traps.503=Used Percentage >= 90.0 for 0 seconds…
-
It really depends on the situation, SNMP is faster and more reliable than WMI overall however there are some things as you know that WMI does better so a balanced mix is better. We've also run into issues when WMI would overtax the RPC service and randomly reboot the frontends so you need to pick and choose where to use it…
-
Yeah i found kinda of a hack way around it but it works.. CREATE procedure [dbo].[sp_GetAllActiveAlerts] as begin declare @i int; declare @numrows int; declare @curNode int; declare @curAlert nvarchar(255); declare @object nvarchar(max); declare @entity varchar(255); declare @objectId nvarchar(255); declare @srmtable…
-
Thanks it was actually the cache on the plugin, once i cleared the cache from the PM Settings on the ORION console it fired up just fine. Thanks again
-
Thank you sir, deleting the ME and MP Keys did it for me then i just reset the creds in the console and all was good