Comments
-
Does Exchange online have a dedicated URL associated with it? As long as this bit of the script works, you should be OK: $s = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2007_SP1) $s.Credentials = New-Object…
-
Get the XML payload created by this portion of the script: $xmlString = "<ArrayOfAlertInfo xmlns='http://schemas.solarwinds.com/2008/Orion'> <AlertInfo> <DefinitionId>$($alertDefId)</DefinitionId> <ObjectType>$($objectType)</ObjectType> <ObjectId>$($objectId)</ObjectId> </AlertInfo> </ArrayOfAlertInfo>" How does the XML…
-
Good catch. I've added that to the prerequisites.
-
It doesn't address Alert Central's alert aggregation directly. If you've configured Solarwinds to work with Alert Central, alert aggregation should work exactly as if you acknowledged the alert through the Solarwinds GUI.
-
Thanks! If you make any improvements or additions, please update in the comments here!
-
I expanded on your work to come up with a Component Credentials search that shows credentials for all apps and components. Description and files are here: Custom SWQL to manage application components and credentials with search bar
-
Nice work! Thanks for creating this.
-
You should not need to run the config wizard to implement this, unless your Solarwinds web server installation is broken for some other reason.
-
I haven't been able to reproduce this. Are you still getting the error, or did you find a fix?
-
I recall running into this error with other ASP pages. I believe I had to delete temporary ASP.NET files. These will be in C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root .
-
Please check the permissions on the files. Make sure they're the same as the permissions on the other files (the ones that were installed with Solarwinds) in that directory.
-
Hi aiolawale, You'll need to make a couple of other changes to GroupMemberAggregateStatus.aspx and you'll need a new version of the globe.png file. I've uploaded a new version of the zip file that includes a large image with the correct transparency (globe_large.png). Rename this big image to globe.png and replace your…
-
You'd have to create a new summary-type view (one of my dashboards uses the NOC Summary type). Then, in the account settings, assign that new view as the Default Summary View .
-
You are most welcome, and thank you!
-
I've posted a version of this with pie charts here: Group status pie charts The chart looks like this:
-
I'll give it a try and let you know what I come up with.
-
First, replace the original query in GroupMemberAggregateStatus.cs SELECT GroupStatusSummary.Name as GroupName, SI.ShortDescription as Status, SI.StatusID as StatusID, GroupStatusSummary.detailsURL as detailsURL, '/Orion/images/StatusIcons/Small-' + SI.IconPostFix + '.gif' AS Icon, CASE WHEN GroupStatusSummary.CountStatus…
-
Glad you got it working! You can substitute any graphic for the globe. Edit GroupMemberAggregateStatus.aspx and find this line: <canvas class="pie" width="130" height="130" id="pie_<%=Page.Title %>_stats" style="position:absolute; top: 5px; left: 10px;"></canvas><img src="globe.png" style="position:absolute; top: 5px;…
-
Hi Chiem Saechao, For the groups that are now showing, run the query below. Replace "ContainerID" with the ID number of the group. What do the results look like? Do you still get "0" zeroes? SELECT GroupStatusSummary.Name as GroupName, SI.ShortDescription as Status, SI.StatusID as StatusID, GroupStatusSummary.detailsURL as…
-
Interesting. I didn't run into any problems after our recent upgrade - all I had to do was copy my custom files back into the appropriate folder. It looks like your error is often related to missing assemblies or outdated (or too recent!) .Net support files. If you Google the error message, there's a lot of discussion of…
-
I haven't been able to make that work. I've tried height="100%" but that hasn't worked for me. Give it a try, though - depending on your browser, it could work.
-
Hi irishjd, Yes, you can change the height of the window by editing “height=” parameter in the <iframe…> code. The default is height="170px" Change “170px” to something larger (start with 200px and work up from there until the scrollbars go away). That should do the trick.
-
Cool! OK, make these changes in GroupMemberAggregateStatus.aspx.cs: Find both instances of the string concat('/Orion/NetPerfMon/ContainerDetails.aspx?NetObject=C:',C.ContainerID) and replace it with '/Orion/NetPerfMon/ContainerDetails.aspx?NetObject=C:'+cast(C.ContainerID as varchar) This will continue to work after you…
-
Did you see my question about the database version? Can you try the modified scripts and tell me if they work? The resource may be failing because the SQL queries aren't returning useful data.
-
OK, I think we're getting somewhere. What version of SQL Server do you have? The concat() function is new in SQL Server 2012. If you're using an older version of SQL Server, try replacing the references to concat() with '/Orion/NetPerfMon/ContainerDetails.aspx?NetObject=C:'+cast(C.ContainerID as varchar) . The first query…
-
What happens if you run these two queries in the Orion Database Manager app? These are the queries that drive the display. SELECT concat('/Orion/NetPerfMon/ContainerDetails.aspx?NetObject=C:',C.ContainerID) as detailsURL, C.Name, C.ContainerID, C.Status FROM Containers C WHERE C.ContainerID='1' SELECT…
-
Good question. I wouldn't expect smart card authentication to have anything to do with it. On the off chance that it's affecting the handling of URLs, what happens if you replace <iframe src="/Orion.....> with <iframe src="https://sarahv2/Orion...> FWIW, at one point I had servers named Abe, Sylvia, Naftule, and Dave. I…
-
This is really odd. I put your code, as-is, into a custom HTML resource and it worked fine (I have an existing group with an ID of 1). What happens if you browse to (your Solarwinds server)/Orion/NetPerfMon/ContainerDetails.aspx?NetObject=C:1 ? Does the group detail page display OK? ~~~~~~~~~~~~~~~~~~~~~ Martin Milligan,…
-
What's the URL that you are putting in <iframe src=""...>? When I get this, it usually means the URL is subtly, but fatally, incorrect.
-
Excellent!