I'm trying to create a Web Report that will display Average Availability of several devices in a graphic way. Orion has built in radial gauges that will display this values for preset amounts of time, but I want to display a diferent leng of time and also I want to display it as a linear gauge instead.
I figure I can use the costume HTML object and then extract the code from the Radial gauge and replace the Gauge Style to LEDs in this case. That actually worked but the problem is that in the Radial Gauge extracted HTML code the "Value" to be display is somehow passed to the HTML code and I can't figure out where is the value comming from.
Let me paste an example so tha this is more clear.
This is the HTML code for the Availability radial gauge as I see it when I select "View Source"
<a href="">thwack.solarwinds.com/.../CustomChart.asp target="_blank"><img src="/NetPerfMon/Gauge.asp?Style=&NetObject=N:87&Property=Availability&Value=99.797&Units=%25&Scale=>" border="0"></a>
as you can see there is a pre set Value stated directly on the HTML code.
Here is an example of the CPU load graphed as a linear Gauge.
<a href="">thwack.solarwinds.com/.../CustomChart.asp target="_blank"><img src="/NetPerfMon/Gauge.asp?Style=Linear&NetObject=N:87&Property=CPULoad&Width=640&Scale=" border="0"></a>
As you can see no Value was passed to the HTML code in this case.
I figure that perhaps there is a way I can call the "Availability" value on hte "Property=" portion of the line in a way that will allow the extraction of the value I need, or perhaps some knows what do I need to do to get that "Value" passed on to the page.
I hope I was clear enough on this, Thanks in advanced for any help.
Carlos