IBM BPM, V8.0.1, All platforms > Authoring services in Integration Designer > Developing monitor models > What are monitor models? > Monitor XML schema definition (monitor.xsd) > XML schema (monitor.xsd) description

KPIContextType

KPIContextType defines a key performance indicator (KPI) context, which contains all the elements defined by the abstract ContextType complex type from which KpiContext and KPIType elements extend.

Elements

Name Min-max Description
inboundEvent 0 - n The events that the context is interested in.
outboundEvent 0 - n The events that the context might generate.
trigger 0 - n The triggers that the context can fire.
description 0 - 1 (Optional) A description of the context.
kpi 0 - n KPI data, such as targets and ranges.

Attributes

Name Required or optional Type Description
displayName Optional String The name to display in the Monitor Model editor and Business Monitor dashboards. If a displayName is not provided, the ID attribute is used.
id Required String The unique identifier for the context.

Restrictions

None

Schema definition

<xsd:complexType name="KPIContextType" >
    <xsd:complexContent>
        <xsd:extension base="mon:ContextType">
            <xsd:choice minOccurs="0" maxOccurs="unbounded">
                <xsd:element name="kpi" type="mon:KPIType"/>
            </xsd:choice>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>

XML schema (monitor.xsd) description