From 6271b0f3734cb51e522521edcced50ec21d47824 Mon Sep 17 00:00:00 2001 From: Mickael BOURNEUF Date: Wed, 12 Feb 2025 21:22:11 +0100 Subject: [PATCH] pkg/amqp/publisher.go --- cmd/qemu/metrics/schema/domain.go | 92 ------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 cmd/qemu/metrics/schema/domain.go 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 -}