Comments
-
tdanner Awesome and thank you for the update!
-
Hello allanppadilla, You should really open this up as it's own thread as this discussion is related to Orion SDK - not how to properly configure HTTP Posts. I would suggest that you download the "POSTMAN" application and use to troubleshoot the issue. Likely it has to do with the body of the post which has incorrect data…
-
Hello tdanner, Thank you for that, I was using the following so far - do I have the syntax of the propertybag right? Or is this supposed to be in JSON format? Wasn't sure as sometimes the request expects XML string vs JSON. [ "SOMEUSERNAME", "<dictionary…
-
Hello tdanner, I would expect the same (that the service required cookie authentication) only I was able to call the services using normal authentication up until the point where I installed the latest core update hotfix. Well at least now I know my only likely solution is to start researching cookie authentication. Thank…
-
Hello @Tdanner, Thanks for the suggestions. I'm currently using the developer tools in chrome, I've had some good success with specific endpoints. There are plenty of options (I actually have some other ways of accomplishing - this is just one such method). I'm going to keep looking and see what I find. Thanks again!…
-
Hello tdanner, Any chance that the CORE-7540 bug will be fixed in 12.1? Also wondering if there are any limitations you know of on doing multiple discoveries at the same time? Thank you, =SWQL
-
tdanner - Thank you for the update, I'm glad you were able to confirm this as I can continue with developing automation further. Plus it's fun finding bugs (well..these kind of bugs I mean..) If this results in any improvement to the API I'm just grateful to be part of contributing to the community which has helped me so…
-
tdanner Thank you again for the assistance... I'm still learning obviously and these are rookie mistakes.. that being said, I'll be sure to scrutinize the XML Schema for these details next time
-
Thank you @tdanner!! ( I have to be careful to not refer to you as dtanner ala the full and fuller house series of lore respectively.) : I really appreciate the help - this example will likely assist me with using other verbs as well. Thank you, =swql
-
Thank you tdanner! I should have waited before testing. I figured it out right as you gave me the answer lol. Good to know I was on the right track. When the POST went through, I felt like I just discovered the holy grail. Thank you again, =swql
-
Hello tomas.vrabel, Thank you for your response. In regards to your solutions/questions: Please have a look at orionsdk-python/discover_and_add_interfaces.py at master · solarwinds/orionsdk-python · GitHub . This Python script discovers and adds interfaces for node. You can also filter discovered interfaces before adding…
-
Hello pawelk, I understand what you mean regarding the thresholds being based on application templates/component templates. What I mean by thresholds being related to component types is that based on a specific type of component, there will corresponding thresholds related to that component type. Example: A "Process…
-
Hello mesverrum, Thanks for your input on this. I was having a similar conversation piggybacking on an old thread. Along with tomas.vrabel 's help we documented some things for NPM thresholds (including the threshold operators):Is it possible to update the volume capacity thresholds via the REST API? I guess my main point…
-
Hello tdanner, This worked... Thank you for the assistance - this just made my week! I really appreciate the quick response as well.. thank you once again. Best Regards, = swql
-
Hello aLTeReGo, I could have created my own post on this, but figured I would piggyback off of this article since I believe it is related/relevant to this post. When constructing an alert like the one you demonstrated, I can only alert on one statistic per component. I'm using a custom powershell script (in a single…
-
Thank you tomas.vrabel, So if I understand correctly, an entry in the ViewConditions table means that the view will be hidden? I will attempt to use this verb using powershell and set with a null value and let you know the result. Thank you again, =swql
-
Thanks for the reply @mesverrum, It's good to hear that you were able to successfully get the pages joined together, that was going to be my next step - altering the IDs/Groupnames/Positions manually. At least knowing you were able to do it gives me some hope - I'm going to try to do the update using Update-SwisObject? I…
-
Thank you KMSigma - The null values were definitely the fix. I never get sick of saying it - the Thwack community is awesome! Thank you tdanner for the awareness on the boolean value (DOH!). I'm more used to doing queries successfully through rest, but updates are a different story... I'm learning however thanks to your…
-
Thank you for the suggestion KMSigma - For the "ModifyCustomProperty" verb that I'm attempting to use, The verb arguments are as follows: 0 PropertyNameSystem.String 1 Description System.String 2 SizeSystem.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] 3 Values…
-
Thank you zbynek.botlo, I will request that as a new feature. Thank you for confirming, =swql
-
Hello Petr, I'm aware of how the IP address group segments work - my main point was that there is no mapping between the IDs that are created/recreated and the name of the Ip address group itself - this makes capturing data more difficult through swql unless there is a mapping somewhere between tables - which I haven't…
-
I know this post is over a year old at this point, it is super helpful. In regards to inserting HTML page breaks (div style="page-break-before: always") between each resource as you mentioned, I was able to remove buttons and headers, but not sure where to put in the page break. Could you assist with a specific html tag or…
-
Hello tomas.vrabel, This is really helpful, thanks for the info. This is working for me if a custom threshold was already defined by setting in the UI. To create a new volume threshold set, I can use New-SwisObject and define: @{MetricID = 3;InstanceID = $instanceID;Enabled = 'True';UsePeakValues =…
-
Hello and thank you for the response - The following query works - I may have already found a resolution in changing up the way I was calculating this. In a previous query if I used "(Value / 1.0)" this would cause the error that I had mentioned. Instead I used ( 300 * 1.0 / Value ) which avoids that error. Example Query:…
-
Hello tdanner, Thank you for the update. Much appreciated. For now - I figured out a workaround by using a custom swql variable: ${N=SWQL;M=SELECT a.AlertActiveID FROM Orion.AlertActive a WHERE AlertObjectID = ${N=Alerting;M=AlertObjectID} } Thank you, = swql
-
wluther, Wowaweewah! You are definitely earning your keep as a ThwackMVP!!! I haven't even read full through the code yet, but I'm already really impressed. I'm looking forward to digging into the details and using this as a good example of what can be accomplished through the Custom HTML resource. Thank you for this, and…
-
jahshuah - We are hoping to setup Splunk to leverage SWIS/SWQL Queries as well - can you provide any scripts or guidance on how this was done ? I'm pretty good with SWQL but severely lacking when it comes to Python / JSON - However if you could point me in the right direction I would be eternally grateful
-
Hello jere557, You can try the following below, here is what I added: 1) I put parentheses starting after WHERE and ending at the end of the existing statement. 2) Added ---> AND (i.Node.CustomProperties.City = 'Denver' AND i.Node.CustomProperties.Department = 'Accounting') Please let me know if this works - full…
-
Hello msarkar, I recommend using SWQL for a number of reasons, primarily as it is more protected from schema changes than SQL, hence greater sustainability for your query to survive in the wild so to speak. I do still use SQL when absolutely necessary, and using swql definitely has challenges in cases like this as it…
-
yaquaholic - Did you ever find a solution to this issue? I'm having the exact same issue. Thank you, =swql