forked from vhostmd/vhostmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvhostmd.dtd
39 lines (31 loc) · 1 KB
/
vhostmd.dtd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2008 Novell, Inc.
Virtual Host Metrics Daemon (vhostmd). Configuration file DTD
-->
<!ELEMENT vhostmd (globals,metrics)>
<!ELEMENT globals (disk,virtio*,update_period,path,transport+)>
<!ELEMENT disk (name,path,size)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT path (#PCDATA)>
<!ELEMENT size (#PCDATA)>
<!ATTLIST size
unit CDATA #REQUIRED>
<!ELEMENT update_period (#PCDATA)>
<!ELEMENT transport (#PCDATA)>
<!ELEMENT virtio (max_channels,expiration_time)>
<!ELEMENT max_channels (#PCDATA)>
<!ELEMENT expiration_time (#PCDATA)>
<!ELEMENT metrics (metric*)>
<!ELEMENT metric (name,action,variable*)>
<!ELEMENT action (#PCDATA)>
<!ATTLIST metric
type (xml|group|int32|uint32|int64|uint64|real32|real64|string) #REQUIRED
context (host|vm) #REQUIRED
cnt CDATA #IMPLIED
>
<!ELEMENT variable (#PCDATA)>
<!ATTLIST variable
name CDATA #REQUIRED
type (int32|uint32|int64|uint64|real32|real64|string) #REQUIRED
>