Stats monitoring data source(URL Probe-based)

Microsoft.JEE.Monitoring.UrlProbe.Stats.DataSource (DataSourceModuleType)

A data source for retrieving stats monitoring information.

Element properties:

TypeDataSourceModuleType
IsolationAny
AccessibilityPublic
RunAsDefault
OutputTypeSystem.BaseData

Member Modules:

ID Module Type TypeId RunAs 
Schedule DataSource System.Scheduler Default
Probe ProbeAction Microsoft.JEE.Monitoring.UrlProbe.Stats.ProbeAction Default

Overrideable Parameters:

IDParameterTypeSelectorDisplay NameDescription
ComputerNamestring$Config/ComputerName$Computer nameThe name of the computer that hosts the application server.
Protocolstring$Config/Protocol$ProtocolThe protocol to use to perform the HTTP call.
Portstring$Config/Port$PortThe port number to use to perform the HTTP call.
BaseURLstring$Config/BaseURL$Base URLThe base URL to use to find BeanSpy.
IntervalSecondsint$Config/IntervalSeconds$IntervalThe time value (in seconds) between the calls on the data source.
TimeoutSecondsint$Config/TimeoutSeconds$TimeoutThe timeout-value (in seconds) for inactivity on the data source.

Source Code:

<DataSourceModuleType ID="Microsoft.JEE.Monitoring.UrlProbe.Stats.DataSource" Accessibility="Public" Batching="false">
<Configuration>
<xsd:element name="ComputerName" type="xsd:string"/>
<xsd:element name="Protocol" type="xsd:string"/>
<xsd:element name="Port" type="xsd:string"/>
<xsd:element name="BaseURL" type="xsd:string"/>
<xsd:element name="URLSuffix" type="xsd:string"/>
<xsd:element name="IntervalSeconds" type="xsd:integer"/>
<xsd:element name="TimeoutSeconds" type="xsd:integer"/>
</Configuration>
<OverrideableParameters>
<OverrideableParameter ID="ComputerName" ParameterType="string" Selector="$Config/ComputerName$"/>
<OverrideableParameter ID="Protocol" ParameterType="string" Selector="$Config/Protocol$"/>
<OverrideableParameter ID="Port" ParameterType="string" Selector="$Config/Port$"/>
<OverrideableParameter ID="BaseURL" ParameterType="string" Selector="$Config/BaseURL$"/>
<OverrideableParameter ID="IntervalSeconds" Selector="$Config/IntervalSeconds$" ParameterType="int"/>
<OverrideableParameter ID="TimeoutSeconds" Selector="$Config/TimeoutSeconds$" ParameterType="int"/>
</OverrideableParameters>
<ModuleImplementation Isolation="Any">
<Composite>
<MemberModules>
<DataSource ID="Schedule" TypeID="System!System.Scheduler">
<Scheduler>
<SimpleReccuringSchedule>
<Interval>$Config/IntervalSeconds$</Interval>
<SyncTime/>
</SimpleReccuringSchedule>
<ExcludeDates/>
</Scheduler>
</DataSource>
<ProbeAction ID="Probe" TypeID="Microsoft.JEE.Monitoring.UrlProbe.Stats.ProbeAction">
<ComputerName>$Config/ComputerName$</ComputerName>
<Protocol>$Config/Protocol$</Protocol>
<Port>$Config/Port$</Port>
<BaseURL>$Config/BaseURL$</BaseURL>
<URLSuffix>$Config/URLSuffix$</URLSuffix>
<TimeoutSeconds>$Config/TimeoutSeconds$</TimeoutSeconds>
</ProbeAction>
</MemberModules>
<Composition>
<Node ID="Probe">
<Node ID="Schedule"/>
</Node>
</Composition>
</Composite>
</ModuleImplementation>
<OutputType>System!System.BaseData</OutputType>
</DataSourceModuleType>