~ubuntu-branches/ubuntu/raring/sysstat/raring

« back to all changes in this revision

Viewing changes to xml/sysstat.xsd

  • Committer: Bazaar Package Importer
  • Author(s): Dave Walker (Daviey)
  • Date: 2011-02-09 17:10:56 UTC
  • mfrom: (1.1.19 upstream) (2.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20110209171056-ep8aecyxtppsrbnf
Tags: 9.1.7-2ubuntu1
* debian/patches/cflags-ordering.patch: Re-arrange CFLAGS in 
  ./Makefile.in to resolve FTBFS. (LP: #716043)
* debian/control: Updated maintainer, as per policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="UTF-8"?>
2
2
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://pagesperso-orange.fr/sebastien.godard/sysstat" targetNamespace="http://pagesperso-orange.fr/sebastien.godard/sysstat" elementFormDefault="qualified">
3
 
<xs:annotation><xs:appinfo>-- XML Schema v2.6 for sysstat. See sadf.h --</xs:appinfo></xs:annotation>
 
3
<xs:annotation><xs:appinfo>-- XML Schema v2.10 for sysstat. See sadf.h --</xs:appinfo></xs:annotation>
4
4
 
5
5
    <xs:element name="queue" type="queue-type"></xs:element>
6
6
 
11
11
        <xs:attribute name="ldavg-1" type="hundredth-type"></xs:attribute>
12
12
        <xs:attribute name="ldavg-5" type="hundredth-type"></xs:attribute>
13
13
        <xs:attribute name="ldavg-15" type="hundredth-type"></xs:attribute>
 
14
        <xs:attribute name="blocked" type="xs:nonNegativeInteger"></xs:attribute>
14
15
    </xs:complexType>
15
16
 
16
17
    <xs:element name="kernel" type="kernel-type"></xs:element>
41
42
                <xs:element name="cached" type="xs:nonNegativeInteger"></xs:element>
42
43
                <xs:element name="commit" type="xs:nonNegativeInteger"></xs:element>
43
44
                <xs:element name="commit-percent" type="hundredth-type"></xs:element>
 
45
                <xs:element name="active" type="xs:nonNegativeInteger"></xs:element>
 
46
                <xs:element name="inactive" type="xs:nonNegativeInteger"></xs:element>
44
47
                <xs:element name="swpfree" type="xs:nonNegativeInteger"></xs:element>
45
48
                <xs:element name="swpused" type="xs:nonNegativeInteger"></xs:element>
46
49
                <xs:element name="swpused-percent" type="hundredth-type"></xs:element>
53
56
        <xs:attribute name="unit" type="unit-type"></xs:attribute>
54
57
    </xs:complexType>
55
58
    
 
59
    <xs:element name="hugepages" type="hugepages-type"></xs:element>
 
60
 
 
61
    <xs:complexType name="hugepages-type">
 
62
        <xs:sequence>
 
63
                <xs:element name="hugfree" type="xs:nonNegativeInteger"></xs:element>
 
64
                <xs:element name="hugused" type="xs:nonNegativeInteger"></xs:element>
 
65
                <xs:element name="hugused-percent" type="hundredth-type"></xs:element>
 
66
        </xs:sequence>
 
67
    </xs:complexType>
 
68
    
56
69
    <xs:simpleType name="unit-type">
57
70
        <xs:restriction base="xs:string">
58
71
                <xs:enumeration value="kB"></xs:enumeration>
455
468
        </xs:restriction>
456
469
    </xs:simpleType>
457
470
 
 
471
    <xs:element name="cpu-weighted-frequency" type="cpu-weighted-frequency-type"></xs:element>
 
472
 
 
473
    <xs:complexType name="cpu-weighted-frequency-type">
 
474
        <xs:sequence>
 
475
                <xs:element name="cpuwfreq" type="cpuwfreq-type" minOccurs="1"></xs:element>
 
476
        </xs:sequence>
 
477
        <xs:attribute name="unit" type="frequnit-type"></xs:attribute>
 
478
    </xs:complexType>
 
479
 
 
480
    <xs:element name="fan-speed" type="fan-speed-type"></xs:element>
 
481
 
 
482
    <xs:complexType name="fan-speed-type">
 
483
        <xs:sequence>
 
484
                <xs:element name="fan" type="fan-type"></xs:element>
 
485
        </xs:sequence>
 
486
        <xs:attribute name="unit" type="fanunit-type"></xs:attribute>
 
487
    </xs:complexType>
 
488
 
 
489
    <xs:simpleType name="fanunit-type">
 
490
        <xs:restriction base="xs:string">
 
491
                <xs:enumeration value="rpm"></xs:enumeration>
 
492
        </xs:restriction>
 
493
    </xs:simpleType>
 
494
 
 
495
   <xs:element name="temperature" type="temperature-type"></xs:element>
 
496
 
 
497
   <xs:complexType name="temperature-type">
 
498
        <xs:sequence>
 
499
                <xs:element name="temp" type="temp-type"></xs:element>
 
500
        </xs:sequence>
 
501
        <xs:attribute name="unit" type="tempunit-type"></xs:attribute>
 
502
    </xs:complexType>
 
503
 
 
504
    <xs:simpleType name="tempunit-type">
 
505
        <xs:restriction base="xs:string">
 
506
                <xs:enumeration value="degree Celsius"></xs:enumeration>
 
507
        </xs:restriction>
 
508
    </xs:simpleType>
 
509
 
 
510
   <xs:element name="voltage-input" type="voltage-input-type"></xs:element>
 
511
 
 
512
   <xs:complexType name="voltage-input-type">
 
513
        <xs:sequence>
 
514
                <xs:element name="in" type="in-type"></xs:element>
 
515
        </xs:sequence>
 
516
        <xs:attribute name="unit" type="inunit-type"></xs:attribute>
 
517
   </xs:complexType>
 
518
 
 
519
    <xs:simpleType name="inunit-type">
 
520
        <xs:restriction base="xs:string">
 
521
                <xs:enumeration value="V"></xs:enumeration>
 
522
        </xs:restriction>
 
523
   </xs:simpleType>
 
524
 
458
525
    <xs:element name="irq" type="irq-type"></xs:element>
459
526
 
460
527
    <xs:complexType name="irq-type">
469
536
        <xs:attribute name="frequency" type="hundredth-type"></xs:attribute>
470
537
    </xs:complexType>
471
538
 
 
539
    <xs:element name="cpuwfreq" type="cpuwfreq-type"></xs:element>
 
540
 
 
541
    <xs:complexType name="cpuwfreq-type">
 
542
        <xs:attribute name="number" type="xs:string"></xs:attribute>
 
543
        <xs:attribute name="weighted-frequency" type="hundredth-type"></xs:attribute>
 
544
    </xs:complexType>
 
545
 
 
546
    <xs:element name="fan" type="fan-type"></xs:element>
 
547
 
 
548
    <xs:complexType name="fan-type">
 
549
        <xs:attribute name="number" type="xs:nonNegativeInteger"></xs:attribute>
 
550
        <xs:attribute name="rpm" type="xs:nonNegativeInteger"></xs:attribute>
 
551
        <xs:attribute name="drpm" type="xs:integer"></xs:attribute>
 
552
        <xs:attribute name="device" type="xs:string"></xs:attribute>
 
553
    </xs:complexType>
 
554
 
 
555
    <xs:element name="temp" type="temp-type"></xs:element>
 
556
 
 
557
    <xs:complexType name="temp-type">
 
558
        <xs:attribute name="number" type="xs:nonNegativeInteger"></xs:attribute>
 
559
        <xs:attribute name="degC" type="hundredth-type"></xs:attribute>
 
560
        <xs:attribute name="percent-temp" type="hundredth-type"></xs:attribute>
 
561
        <xs:attribute name="device" type="xs:string"></xs:attribute>
 
562
    </xs:complexType>
 
563
 
 
564
   <xs:element name="in" type="in-type"></xs:element>
 
565
 
 
566
   <xs:complexType name="in-type">
 
567
        <xs:attribute name="number" type="xs:nonNegativeInteger"></xs:attribute>
 
568
        <xs:attribute name="inV" type="hundredth-type"></xs:attribute>
 
569
        <xs:attribute name="percent-in" type="hundredth-type"></xs:attribute>
 
570
        <xs:attribute name="device" type="xs:string"></xs:attribute>
 
571
   </xs:complexType>
 
572
 
472
573
    <xs:element name="cpu" type="cpu-type"></xs:element>
473
574
 
474
575
    <xs:complexType name="cpu-type">
534
635
                <xs:element name="paging" type="paging-type"></xs:element>
535
636
                <xs:element name="io" type="io-type"></xs:element>
536
637
                <xs:element name="memory" type="memory-type"></xs:element>
 
638
                <xs:element name="hugepages" type="hugepages-type"></xs:element>
537
639
                <xs:element name="kernel" type="kernel-type"></xs:element>
538
640
                <xs:element name="queue" type="queue-type"></xs:element>
539
641
                <xs:element name="serial" type="serial-type"></xs:element>
563
665
                <xs:element name="cpu-frequency" type="cpu-frequency-type"
564
666
                        minOccurs="1">
565
667
                </xs:element>
 
668
                <xs:element name="fan-speed" type="fan-speed-type"></xs:element>
 
669
                <xs:element name="temperature" type="temperature-type"></xs:element>
 
670
                <xs:element name="voltage-input" type="voltage-input-type"></xs:element>
 
671
                <xs:element name="cpu-weighted-frequency" type="cpu-weighted-frequency-type"></xs:element>
566
672
        </xs:sequence>
567
673
    </xs:complexType>
568
674