diff --git a/cmd/qemu/metrics/schema/domain.go b/cmd/qemu/metrics/schema/domain.go deleted file mode 100644 index 6e6bdf8..0000000 --- a/cmd/qemu/metrics/schema/domain.go +++ /dev/null @@ -1,92 +0,0 @@ -package schema - -type Domain struct { - Devices Devices `xml:"devices"` - Metadata Metadata `xml:"metadata"` -} - -type Metadata struct { - DeevirtInstance Instance `xml:"instance"` -} - -type Instance struct { - DeevirtCompanyID string `xml:"company_id"` - DeevirtDatacenterID string `xml:"datacenter_id"` -} - -type User struct { - UserName string `xml:",chardata"` - UserUUID string `xml:"uuid,attr"` -} - -type Project struct { - ProjectName string `xml:",chardata"` - ProjectUUID string `xml:"uuid,attr"` -} - -type Root struct { - RootType string `xml:"type,attr"` - RootUUID string `xml:"uuid,attr"` -} - -type Devices struct { - Disks []Disk `xml:"disk"` - Interfaces []Interface `xml:"interface"` -} - -type Disk struct { - Device string `xml:"device,attr"` - Driver DiskDriver `xml:"driver"` - Source DiskSource `xml:"source"` - Target DiskTarget `xml:"target"` - DiskType string `xml:"type,attr"` - Serial string `xml:"serial"` -} - -type DiskDriver struct { - Type string `xml:"type,attr"` - Cache string `xml:"cache,attr"` - Discard string `xml:"discard,attr"` -} - -type DiskSource struct { - File string `xml:"file,attr"` - Name string `xml:"name,attr"` -} - -type DiskTarget struct { - Device string `xml:"dev,attr"` - Bus string `xml:"bus,attr"` -} - -type Interface struct { - Source InterfaceSource `xml:"source"` - Target InterfaceTarget `xml:"target"` - Virtualport InterfaceVirtualPort `xml:"virtualport"` -} - -type InterfaceVirtualPort struct { - Parameters InterfaceVirtualPortParam `xml:"parameters"` -} -type InterfaceVirtualPortParam struct { - InterfaceID string `xml:"interfaceid,attr"` -} - -type InterfaceSource struct { - Bridge string `xml:"bridge,attr"` -} - -type InterfaceTarget struct { - Device string `xml:"dev,attr"` -} - -type VirDomainMemoryStats struct { - MajorFault uint64 - MinorFault uint64 - Unused uint64 - Available uint64 - ActualBalloon uint64 - Rss uint64 - Usable uint64 - DiskCaches uint64 -}