7.3.1 Format and definition of the measurement condition registration file

Organization of this subsection
(1) Format
(2) Definition

(1) Format

<?xml version="1.0" encoding="US-ASCII" standalone="no"?>
<!DOCTYPE TASKLIST SYSTEM "esptask.dtd">
<TASKLIST>
  <TASK>
    <GEN_PARAM>
      <!--GEN_PARAM -->
    </GEN_PARAM>
    <SERV_PARAM>
      <!--SERV_PARAM is specific to service type-->
    </SERV_PARAM>
  </TASK>
 ...
</TASKLIST>

(2) Definition

(a) XML declaration and document type declaration

Specify the XML declaration on the first line and the document type declaration on the second and third lines. Specify exactly as shown below:

<?xml version="1.0" encoding="encoding-type#" standalone="no"?>
<!DOCTYPE TASKLIST SYSTEM "esptask.dtd" [
]>

The document type declaration on the second and third lines can be specified as shown below:

<!DOCTYPE TASKLIST SYSTEM "esptask.dtd">

#
Specify one of the following encoding types:
In operating on the PFM - Web Console, the encode type when this file is read is saved.
  • Shift_JIS
  • US-ASCII
  • GB18030#1
#1
GB18030 supports only in Chinese OS and you can not use the 4 bytes characters.
(b) XML definition

Table 7-9 XML definition

XML tagMandatoryRole of tag and value to be specified
<TASKLIST>...</TASKLIST>YIndicates a list of measurement conditions. This tag contains one or more <TASK> tags. A new <TASK> tag can start immediately after a </TASK> tag.
<TASK>...</TASK>YIndicates a single measurement condition. This tag contains one set consisting of a <GEN_PARAM> tag and a <SERV_PARAM> tag.
<GEN_PARAM>...</GEN_PARAM>YContains the <TASKID>, <INTERVAL>, and <TIMEOUT> measurement condition tags, which contain parameters that do not depend on the target service. For details, see 7.3.2 Format and definition of measurement conditions (common section).
<SERV_PARAM>...</SERV_PARAM>YContains measurement condition parameters that depend on the target service. This tag contains one of the <HTTP>, <HTTPS>, <SMTP>, <POP3>, <IMAP4>, <DNS>, <DHCP>, <FTP>, <TCP>, <WEBTRANS>,
< IESCENA >, or <USERSERV> tags. For details, see 7.3.3 Format and definition of measurement conditions (service-specific condition sections).
Legend:
Y: Mandatory item