Add datastructures for stats API
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
		| @@ -33,6 +33,17 @@ It has these top-level messages: | |||||||
| 	UpdateContainerResponse | 	UpdateContainerResponse | ||||||
| 	EventsRequest | 	EventsRequest | ||||||
| 	Event | 	Event | ||||||
|  | 	NetworkStats | ||||||
|  | 	CpuUsage | ||||||
|  | 	ThrottlingData | ||||||
|  | 	CpuStats | ||||||
|  | 	MemoryData | ||||||
|  | 	MemoryStats | ||||||
|  | 	BlkioStatsEntry | ||||||
|  | 	BlkioStats | ||||||
|  | 	HugetlbStats | ||||||
|  | 	CgroupStats | ||||||
|  | 	Stats | ||||||
| */ | */ | ||||||
| package types | package types | ||||||
|  |  | ||||||
| @@ -373,6 +384,281 @@ func (m *Event) GetCheckpoint() *Checkpoint { | |||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
|  | type NetworkStats struct { | ||||||
|  | 	Name       string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` | ||||||
|  | 	RxBytes    uint64 `protobuf:"varint,2,opt,name=rx_bytes" json:"rx_bytes,omitempty"` | ||||||
|  | 	Rx_Packets uint64 `protobuf:"varint,3,opt,name=rx_Packets" json:"rx_Packets,omitempty"` | ||||||
|  | 	RxErrors   uint64 `protobuf:"varint,4,opt,name=Rx_errors" json:"Rx_errors,omitempty"` | ||||||
|  | 	RxDropped  uint64 `protobuf:"varint,5,opt,name=Rx_dropped" json:"Rx_dropped,omitempty"` | ||||||
|  | 	TxBytes    uint64 `protobuf:"varint,6,opt,name=Tx_bytes" json:"Tx_bytes,omitempty"` | ||||||
|  | 	TxPackets  uint64 `protobuf:"varint,7,opt,name=Tx_packets" json:"Tx_packets,omitempty"` | ||||||
|  | 	TxErrors   uint64 `protobuf:"varint,8,opt,name=Tx_errors" json:"Tx_errors,omitempty"` | ||||||
|  | 	TxDropped  uint64 `protobuf:"varint,9,opt,name=Tx_dropped" json:"Tx_dropped,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *NetworkStats) Reset()                    { *m = NetworkStats{} } | ||||||
|  | func (m *NetworkStats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*NetworkStats) ProtoMessage()               {} | ||||||
|  | func (*NetworkStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } | ||||||
|  |  | ||||||
|  | type CpuUsage struct { | ||||||
|  | 	TotalUsage        uint64   `protobuf:"varint,1,opt,name=total_usage" json:"total_usage,omitempty"` | ||||||
|  | 	PercpuUsage       []uint64 `protobuf:"varint,2,rep,name=percpu_usage" json:"percpu_usage,omitempty"` | ||||||
|  | 	UsageInKernelmode uint64   `protobuf:"varint,3,opt,name=usage_in_kernelmode" json:"usage_in_kernelmode,omitempty"` | ||||||
|  | 	UsageInUsermode   uint64   `protobuf:"varint,4,opt,name=usage_in_usermode" json:"usage_in_usermode,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CpuUsage) Reset()                    { *m = CpuUsage{} } | ||||||
|  | func (m *CpuUsage) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*CpuUsage) ProtoMessage()               {} | ||||||
|  | func (*CpuUsage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } | ||||||
|  |  | ||||||
|  | type ThrottlingData struct { | ||||||
|  | 	Periods          uint64 `protobuf:"varint,1,opt,name=periods" json:"periods,omitempty"` | ||||||
|  | 	ThrottledPeriods uint64 `protobuf:"varint,2,opt,name=throttled_periods" json:"throttled_periods,omitempty"` | ||||||
|  | 	ThrottledTime    uint64 `protobuf:"varint,3,opt,name=throttled_time" json:"throttled_time,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *ThrottlingData) Reset()                    { *m = ThrottlingData{} } | ||||||
|  | func (m *ThrottlingData) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*ThrottlingData) ProtoMessage()               {} | ||||||
|  | func (*ThrottlingData) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } | ||||||
|  |  | ||||||
|  | type CpuStats struct { | ||||||
|  | 	CpuUsage       *CpuUsage       `protobuf:"bytes,1,opt,name=cpu_usage" json:"cpu_usage,omitempty"` | ||||||
|  | 	ThrottlingData *ThrottlingData `protobuf:"bytes,2,opt,name=throttling_data" json:"throttling_data,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CpuStats) Reset()                    { *m = CpuStats{} } | ||||||
|  | func (m *CpuStats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*CpuStats) ProtoMessage()               {} | ||||||
|  | func (*CpuStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} } | ||||||
|  |  | ||||||
|  | func (m *CpuStats) GetCpuUsage() *CpuUsage { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.CpuUsage | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CpuStats) GetThrottlingData() *ThrottlingData { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.ThrottlingData | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type MemoryData struct { | ||||||
|  | 	Usage    uint64 `protobuf:"varint,1,opt,name=usage" json:"usage,omitempty"` | ||||||
|  | 	MaxUsage uint64 `protobuf:"varint,2,opt,name=max_usage" json:"max_usage,omitempty"` | ||||||
|  | 	Failcnt  uint64 `protobuf:"varint,3,opt,name=failcnt" json:"failcnt,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *MemoryData) Reset()                    { *m = MemoryData{} } | ||||||
|  | func (m *MemoryData) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*MemoryData) ProtoMessage()               {} | ||||||
|  | func (*MemoryData) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } | ||||||
|  |  | ||||||
|  | type MemoryStats struct { | ||||||
|  | 	Cache       uint64            `protobuf:"varint,1,opt,name=cache" json:"cache,omitempty"` | ||||||
|  | 	Usage       *MemoryData       `protobuf:"bytes,2,opt,name=usage" json:"usage,omitempty"` | ||||||
|  | 	SwapUsage   *MemoryData       `protobuf:"bytes,3,opt,name=swap_usage" json:"swap_usage,omitempty"` | ||||||
|  | 	KernelUsage *MemoryData       `protobuf:"bytes,4,opt,name=kernel_usage" json:"kernel_usage,omitempty"` | ||||||
|  | 	Stats       map[string]uint64 `protobuf:"bytes,5,rep,name=stats" json:"stats,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *MemoryStats) Reset()                    { *m = MemoryStats{} } | ||||||
|  | func (m *MemoryStats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*MemoryStats) ProtoMessage()               {} | ||||||
|  | func (*MemoryStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } | ||||||
|  |  | ||||||
|  | func (m *MemoryStats) GetUsage() *MemoryData { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.Usage | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *MemoryStats) GetSwapUsage() *MemoryData { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.SwapUsage | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *MemoryStats) GetKernelUsage() *MemoryData { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.KernelUsage | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *MemoryStats) GetStats() map[string]uint64 { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.Stats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type BlkioStatsEntry struct { | ||||||
|  | 	Major uint64 `protobuf:"varint,1,opt,name=major" json:"major,omitempty"` | ||||||
|  | 	Minor uint64 `protobuf:"varint,2,opt,name=minor" json:"minor,omitempty"` | ||||||
|  | 	Op    string `protobuf:"bytes,3,opt,name=op" json:"op,omitempty"` | ||||||
|  | 	Value uint64 `protobuf:"varint,4,opt,name=value" json:"value,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStatsEntry) Reset()                    { *m = BlkioStatsEntry{} } | ||||||
|  | func (m *BlkioStatsEntry) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*BlkioStatsEntry) ProtoMessage()               {} | ||||||
|  | func (*BlkioStatsEntry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } | ||||||
|  |  | ||||||
|  | type BlkioStats struct { | ||||||
|  | 	IoServiceBytesRecursive []*BlkioStatsEntry `protobuf:"bytes,1,rep,name=io_service_bytes_recursive" json:"io_service_bytes_recursive,omitempty"` | ||||||
|  | 	IoServicedRecursive     []*BlkioStatsEntry `protobuf:"bytes,2,rep,name=io_serviced_recursive" json:"io_serviced_recursive,omitempty"` | ||||||
|  | 	IoQueuedRecursive       []*BlkioStatsEntry `protobuf:"bytes,3,rep,name=io_queued_recursive" json:"io_queued_recursive,omitempty"` | ||||||
|  | 	IoServiceTimeRecursive  []*BlkioStatsEntry `protobuf:"bytes,4,rep,name=io_service_time_recursive" json:"io_service_time_recursive,omitempty"` | ||||||
|  | 	IoWaitTimeRecursive     []*BlkioStatsEntry `protobuf:"bytes,5,rep,name=io_wait_time_recursive" json:"io_wait_time_recursive,omitempty"` | ||||||
|  | 	IoMergedRecursive       []*BlkioStatsEntry `protobuf:"bytes,6,rep,name=io_merged_recursive" json:"io_merged_recursive,omitempty"` | ||||||
|  | 	IoTimeRecursive         []*BlkioStatsEntry `protobuf:"bytes,7,rep,name=io_time_recursive" json:"io_time_recursive,omitempty"` | ||||||
|  | 	SectorsRecursive        []*BlkioStatsEntry `protobuf:"bytes,8,rep,name=sectors_recursive" json:"sectors_recursive,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) Reset()                    { *m = BlkioStats{} } | ||||||
|  | func (m *BlkioStats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*BlkioStats) ProtoMessage()               {} | ||||||
|  | func (*BlkioStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoServiceBytesRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoServiceBytesRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoServicedRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoServicedRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoQueuedRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoQueuedRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoServiceTimeRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoServiceTimeRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoWaitTimeRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoWaitTimeRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoMergedRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoMergedRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetIoTimeRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.IoTimeRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *BlkioStats) GetSectorsRecursive() []*BlkioStatsEntry { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.SectorsRecursive | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type HugetlbStats struct { | ||||||
|  | 	Usage    uint64 `protobuf:"varint,1,opt,name=usage" json:"usage,omitempty"` | ||||||
|  | 	MaxUsage uint64 `protobuf:"varint,2,opt,name=max_usage" json:"max_usage,omitempty"` | ||||||
|  | 	Failcnt  uint64 `protobuf:"varint,3,opt,name=failcnt" json:"failcnt,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *HugetlbStats) Reset()                    { *m = HugetlbStats{} } | ||||||
|  | func (m *HugetlbStats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*HugetlbStats) ProtoMessage()               {} | ||||||
|  | func (*HugetlbStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} } | ||||||
|  |  | ||||||
|  | type CgroupStats struct { | ||||||
|  | 	CpuStats     *CpuStats                `protobuf:"bytes,1,opt,name=cpu_stats" json:"cpu_stats,omitempty"` | ||||||
|  | 	MemoryStats  *MemoryStats             `protobuf:"bytes,2,opt,name=memory_stats" json:"memory_stats,omitempty"` | ||||||
|  | 	BlkioStats   *BlkioStats              `protobuf:"bytes,3,opt,name=blkio_stats" json:"blkio_stats,omitempty"` | ||||||
|  | 	HugetlbStats map[string]*HugetlbStats `protobuf:"bytes,4,rep,name=hugetlb_stats" json:"hugetlb_stats,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CgroupStats) Reset()                    { *m = CgroupStats{} } | ||||||
|  | func (m *CgroupStats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*CgroupStats) ProtoMessage()               {} | ||||||
|  | func (*CgroupStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} } | ||||||
|  |  | ||||||
|  | func (m *CgroupStats) GetCpuStats() *CpuStats { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.CpuStats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CgroupStats) GetMemoryStats() *MemoryStats { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.MemoryStats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CgroupStats) GetBlkioStats() *BlkioStats { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.BlkioStats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *CgroupStats) GetHugetlbStats() map[string]*HugetlbStats { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.HugetlbStats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | type Stats struct { | ||||||
|  | 	NetworkStats []*NetworkStats `protobuf:"bytes,1,rep,name=network_stats" json:"network_stats,omitempty"` | ||||||
|  | 	CgroupStats  *CgroupStats    `protobuf:"bytes,2,opt,name=cgroup_stats" json:"cgroup_stats,omitempty"` | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *Stats) Reset()                    { *m = Stats{} } | ||||||
|  | func (m *Stats) String() string            { return proto.CompactTextString(m) } | ||||||
|  | func (*Stats) ProtoMessage()               {} | ||||||
|  | func (*Stats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} } | ||||||
|  |  | ||||||
|  | func (m *Stats) GetNetworkStats() []*NetworkStats { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.NetworkStats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (m *Stats) GetCgroupStats() *CgroupStats { | ||||||
|  | 	if m != nil { | ||||||
|  | 		return m.CgroupStats | ||||||
|  | 	} | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|  |  | ||||||
| func init() { | func init() { | ||||||
| 	proto.RegisterType((*CreateContainerRequest)(nil), "types.CreateContainerRequest") | 	proto.RegisterType((*CreateContainerRequest)(nil), "types.CreateContainerRequest") | ||||||
| 	proto.RegisterType((*CreateContainerResponse)(nil), "types.CreateContainerResponse") | 	proto.RegisterType((*CreateContainerResponse)(nil), "types.CreateContainerResponse") | ||||||
| @@ -398,6 +684,17 @@ func init() { | |||||||
| 	proto.RegisterType((*UpdateContainerResponse)(nil), "types.UpdateContainerResponse") | 	proto.RegisterType((*UpdateContainerResponse)(nil), "types.UpdateContainerResponse") | ||||||
| 	proto.RegisterType((*EventsRequest)(nil), "types.EventsRequest") | 	proto.RegisterType((*EventsRequest)(nil), "types.EventsRequest") | ||||||
| 	proto.RegisterType((*Event)(nil), "types.Event") | 	proto.RegisterType((*Event)(nil), "types.Event") | ||||||
|  | 	proto.RegisterType((*NetworkStats)(nil), "types.NetworkStats") | ||||||
|  | 	proto.RegisterType((*CpuUsage)(nil), "types.CpuUsage") | ||||||
|  | 	proto.RegisterType((*ThrottlingData)(nil), "types.ThrottlingData") | ||||||
|  | 	proto.RegisterType((*CpuStats)(nil), "types.CpuStats") | ||||||
|  | 	proto.RegisterType((*MemoryData)(nil), "types.MemoryData") | ||||||
|  | 	proto.RegisterType((*MemoryStats)(nil), "types.MemoryStats") | ||||||
|  | 	proto.RegisterType((*BlkioStatsEntry)(nil), "types.BlkioStatsEntry") | ||||||
|  | 	proto.RegisterType((*BlkioStats)(nil), "types.BlkioStats") | ||||||
|  | 	proto.RegisterType((*HugetlbStats)(nil), "types.HugetlbStats") | ||||||
|  | 	proto.RegisterType((*CgroupStats)(nil), "types.CgroupStats") | ||||||
|  | 	proto.RegisterType((*Stats)(nil), "types.Stats") | ||||||
| } | } | ||||||
|  |  | ||||||
| // Reference imports to suppress errors if they are not otherwise used. | // Reference imports to suppress errors if they are not otherwise used. | ||||||
| @@ -712,54 +1009,93 @@ var _API_serviceDesc = grpc.ServiceDesc{ | |||||||
| } | } | ||||||
|  |  | ||||||
| var fileDescriptor0 = []byte{ | var fileDescriptor0 = []byte{ | ||||||
| 	// 782 bytes of a gzipped FileDescriptorProto | 	// 1396 bytes of a gzipped FileDescriptorProto | ||||||
| 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x56, 0x5f, 0x4f, 0xdb, 0x3e, | 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x57, 0xd9, 0x92, 0xdb, 0x44, | ||||||
| 	0x14, 0x6d, 0x9b, 0xa6, 0x7f, 0x6e, 0x49, 0x28, 0x06, 0x4a, 0x88, 0x7e, 0xfc, 0x80, 0xec, 0x8f, | 	0x17, 0x1e, 0xdb, 0xf2, 0x76, 0xbc, 0x8d, 0x35, 0x19, 0xc7, 0xe3, 0xff, 0x0f, 0x49, 0x44, 0x80, | ||||||
| 	0xf6, 0x84, 0x10, 0x4c, 0x1a, 0x8f, 0x43, 0x30, 0x4d, 0x93, 0x98, 0x86, 0x40, 0x4c, 0xda, 0x63, | 	0x14, 0x95, 0x72, 0x85, 0x09, 0x4b, 0x08, 0x17, 0x10, 0x66, 0x52, 0x04, 0x2a, 0x81, 0xa9, 0x59, | ||||||
| 	0x48, 0x2c, 0x1a, 0xd1, 0x26, 0x59, 0xec, 0x30, 0xd0, 0xbe, 0xc5, 0x3e, 0xd9, 0x3e, 0xd2, 0x1c, | 	0xa8, 0xe2, 0x02, 0x5c, 0x1a, 0xa9, 0xb1, 0x1b, 0xcb, 0x92, 0x90, 0x5a, 0xb3, 0x14, 0x6f, 0xc0, | ||||||
| 	0xdb, 0x71, 0x9a, 0x34, 0x19, 0x4f, 0x7b, 0xf4, 0xb5, 0x7d, 0xee, 0x3d, 0xe7, 0x5e, 0x9f, 0x04, | 	0x25, 0x0f, 0xc3, 0x03, 0xf0, 0x04, 0x3c, 0x07, 0x4f, 0xc1, 0x51, 0x77, 0xab, 0xb5, 0x78, 0x19, | ||||||
| 	0x86, 0x6e, 0x1c, 0x1c, 0xc4, 0x49, 0x44, 0x23, 0xa4, 0xd3, 0xa7, 0x18, 0x13, 0xe7, 0x27, 0x4c, | 	0xb8, 0xe0, 0x46, 0x55, 0xdd, 0x7d, 0xce, 0x77, 0xbe, 0xb3, 0xaa, 0x1b, 0x9a, 0xa6, 0x4f, 0xc7, | ||||||
| 	0xce, 0x12, 0xec, 0x52, 0x7c, 0x16, 0x85, 0xd4, 0x0d, 0x42, 0x9c, 0x5c, 0xe1, 0xef, 0x29, 0x26, | 	0x7e, 0xe0, 0x31, 0x4f, 0xaf, 0xb2, 0x6b, 0x9f, 0x84, 0xc6, 0x2f, 0x30, 0x38, 0x08, 0x88, 0xc9, | ||||||
| 	0x14, 0x01, 0x74, 0x02, 0xdf, 0x6a, 0xef, 0xb5, 0xdf, 0x0c, 0x11, 0x5b, 0xdc, 0xa6, 0xa1, 0x3f, | 	0xc8, 0x81, 0xe7, 0x32, 0x93, 0xba, 0x24, 0x38, 0x26, 0x3f, 0x47, 0x24, 0x64, 0x3a, 0x40, 0x99, | ||||||
| 	0xc3, 0x97, 0x2e, 0x9d, 0x5a, 0x1d, 0x1e, 0x33, 0x40, 0x27, 0xd4, 0x0f, 0x42, 0x4b, 0xe3, 0x4b, | 	0xda, 0xc3, 0xd2, 0xbd, 0xd2, 0xc3, 0xa6, 0x8e, 0x8b, 0xf3, 0xc8, 0xb5, 0x1d, 0x72, 0x64, 0xb2, | ||||||
| 	0x13, 0x7a, 0x6c, 0x19, 0xa5, 0xd4, 0xea, 0x2e, 0xac, 0x71, 0x92, 0x58, 0x7a, 0x0e, 0xe1, 0x4d, | 	0xd9, 0xb0, 0xcc, 0xf7, 0x3a, 0x50, 0x0d, 0x99, 0x4d, 0xdd, 0x61, 0x85, 0x2f, 0xbb, 0x50, 0xc3, | ||||||
| 	0xb1, 0x77, 0x1f, 0x47, 0x41, 0x48, 0xad, 0x7e, 0x16, 0x73, 0xb6, 0x61, 0x6b, 0x29, 0x39, 0x89, | 	0xa5, 0x17, 0xb1, 0xa1, 0x96, 0x59, 0x93, 0x20, 0x18, 0x56, 0x13, 0x08, 0x6b, 0x46, 0xac, 0xb9, | ||||||
| 	0xa3, 0x90, 0x60, 0xe7, 0x04, 0x8c, 0xeb, 0xe0, 0x2e, 0x74, 0x67, 0x75, 0xe5, 0x8c, 0x40, 0x8b, | 	0xef, 0x51, 0x97, 0x0d, 0xeb, 0xf1, 0x9e, 0xb1, 0x07, 0xb7, 0x97, 0x8c, 0x87, 0xbe, 0xe7, 0x86, | ||||||
| 	0xd9, 0x22, 0xab, 0xc3, 0xe0, 0x89, 0xf8, 0x49, 0x5e, 0x88, 0xe1, 0x8c, 0xc1, 0xcc, 0x6f, 0x4a, | 	0xc4, 0x78, 0x0a, 0x9d, 0x13, 0x3a, 0x75, 0x4d, 0x67, 0x15, 0x9d, 0x16, 0x54, 0x7c, 0x5c, 0xc4, | ||||||
| 	0x2c, 0x0a, 0x6b, 0xa7, 0xbe, 0x7f, 0x99, 0x44, 0x1e, 0x26, 0xa4, 0x0e, 0x6f, 0x0c, 0x03, 0x8a, | 	0x3c, 0x3a, 0xdc, 0x10, 0x97, 0xe4, 0x44, 0x3a, 0xc6, 0x36, 0x74, 0x13, 0x4d, 0x89, 0xc5, 0xa0, | ||||||
| 	0x93, 0x79, 0x90, 0x81, 0x64, 0xa0, 0x03, 0xb4, 0x0d, 0xdd, 0x94, 0xe0, 0x84, 0x43, 0x8e, 0x8e, | 	0xff, 0xdc, 0xb6, 0x8f, 0x02, 0xcf, 0x22, 0x61, 0xb8, 0x0a, 0x6f, 0x1b, 0x1a, 0x8c, 0x04, 0x0b, | ||||||
| 	0x46, 0x07, 0x5c, 0xac, 0x83, 0x1b, 0x16, 0x42, 0x2b, 0xd0, 0x75, 0x93, 0x3b, 0xc2, 0x68, 0x6a, | 	0x1a, 0x83, 0xc4, 0xa0, 0x0d, 0x7d, 0x0f, 0xb4, 0x28, 0x24, 0x01, 0x87, 0x6c, 0xed, 0xb7, 0xc6, | ||||||
| 	0xa2, 0x14, 0x1c, 0x3e, 0x30, 0x8e, 0x72, 0xe1, 0xfd, 0xf0, 0xad, 0x1e, 0x27, 0x77, 0x02, 0x5d, | 	0x3c, 0x58, 0xe3, 0x33, 0xdc, 0xd2, 0xdb, 0xa0, 0x99, 0xc1, 0x34, 0x44, 0x37, 0x2b, 0x82, 0x0a, | ||||||
| 	0x7e, 0x9e, 0x05, 0x53, 0x99, 0xc9, 0xc8, 0x16, 0x77, 0xaa, 0xf2, 0x09, 0x98, 0xae, 0xef, 0x07, | 	0x71, 0x2f, 0xd0, 0x47, 0xb9, 0xb0, 0x2e, 0xed, 0x61, 0x8d, 0x3b, 0xf7, 0x14, 0x34, 0x2e, 0x8f, | ||||||
| 	0x34, 0x88, 0x58, 0xe2, 0x8f, 0x81, 0x4f, 0x58, 0x3a, 0x8d, 0x31, 0xd8, 0x07, 0xb4, 0x58, 0xaf, | 	0x9b, 0x91, 0xb4, 0xd4, 0x89, 0x17, 0x53, 0xc5, 0x7c, 0x00, 0x5d, 0xd3, 0xb6, 0x29, 0xa3, 0x1e, | ||||||
| 	0x60, 0x91, 0x93, 0xe6, 0x38, 0xce, 0x85, 0x52, 0x4e, 0x69, 0x5a, 0x47, 0xec, 0x55, 0x49, 0xf4, | 	0x1a, 0xfe, 0x82, 0xda, 0x21, 0x9a, 0xab, 0xa0, 0x07, 0xf7, 0x41, 0xcf, 0xf2, 0x15, 0x5e, 0x24, | ||||||
| 	0x0e, 0x27, 0xb3, 0x26, 0xc9, 0x14, 0x37, 0x1d, 0x1b, 0xac, 0x65, 0x34, 0x29, 0xde, 0x31, 0x6c, | 	0x4e, 0x73, 0x1c, 0xe3, 0x95, 0x8a, 0x9c, 0x8a, 0xe9, 0x2a, 0xc7, 0xde, 0xca, 0x05, 0xbd, 0xcc, | ||||||
| 	0x9d, 0xe3, 0x19, 0x7e, 0x2e, 0x13, 0x53, 0x25, 0x74, 0xe7, 0x58, 0xcc, 0x46, 0x06, 0xb8, 0x7c, | 	0x9d, 0xe9, 0x4b, 0x67, 0x52, 0x4d, 0x63, 0x04, 0xc3, 0x65, 0x34, 0x19, 0xbc, 0x27, 0x70, 0xfb, | ||||||
| 	0x49, 0x02, 0xbe, 0x80, 0xcd, 0x8b, 0x80, 0xd0, 0xbf, 0xc2, 0x39, 0xdf, 0x00, 0x8a, 0x03, 0x0a, | 	0x90, 0x38, 0xe4, 0x26, 0x4b, 0x18, 0x15, 0xd7, 0x5c, 0x10, 0x51, 0x1b, 0x31, 0xe0, 0xb2, 0x92, | ||||||
| 	0x5c, 0xa5, 0xc2, 0x8f, 0x01, 0x95, 0x9d, 0x62, 0xb2, 0x50, 0x2f, 0xe6, 0x8d, 0x1a, 0xa0, 0x75, | 	0x04, 0x7c, 0x13, 0x76, 0x5f, 0xd1, 0x90, 0x6d, 0x84, 0x33, 0xbe, 0x03, 0x48, 0x05, 0x14, 0xb8, | ||||||
| 	0x18, 0xa5, 0x61, 0xf0, 0x78, 0x1d, 0x79, 0xf7, 0x98, 0x12, 0x3e, 0x89, 0x03, 0x3e, 0xa8, 0x53, | 	0x32, 0x45, 0xae, 0x28, 0x93, 0x99, 0xc2, 0xb0, 0x30, 0xcb, 0xe7, 0x89, 0x6a, 0xe8, 0x3b, 0xd0, | ||||||
| 	0x3c, 0x9b, 0xf1, 0x41, 0x1c, 0x38, 0xef, 0x61, 0x52, 0xcd, 0x2f, 0x15, 0x7e, 0x0d, 0xa3, 0x42, | 	0x8a, 0x5c, 0x7a, 0x75, 0xe2, 0x59, 0x73, 0xc2, 0x42, 0x5e, 0x89, 0x0d, 0x5e, 0xa8, 0x33, 0xe2, | ||||||
| 	0x2d, 0xc2, 0xb2, 0x69, 0xf5, 0x72, 0x99, 0xb0, 0x72, 0x4d, 0x99, 0x5a, 0xb2, 0x70, 0x67, 0x0f, | 	0x38, 0xbc, 0x10, 0x1b, 0xc6, 0x67, 0x30, 0x28, 0xda, 0x97, 0x11, 0x7e, 0x1b, 0x5a, 0x69, 0xb4, | ||||||
| 	0x4c, 0x35, 0xc0, 0x7c, 0x43, 0x0c, 0xbf, 0x4b, 0x53, 0x22, 0xe9, 0xdc, 0x43, 0x5f, 0xb6, 0xb3, | 	0x42, 0xb4, 0x56, 0x59, 0x1d, 0xae, 0x2e, 0xb4, 0x4f, 0x18, 0x46, 0x4b, 0x12, 0x37, 0xee, 0x41, | ||||||
| 	0xd4, 0xc6, 0x7f, 0x33, 0x78, 0x33, 0x18, 0xaa, 0x72, 0x9a, 0x7b, 0x54, 0x79, 0xd3, 0xe2, 0x11, | 	0x57, 0x15, 0x30, 0x3f, 0x10, 0xc5, 0x6f, 0xb2, 0x28, 0x94, 0xee, 0xcc, 0xa1, 0x2e, 0xd3, 0x99, | ||||||
| 	0xef, 0xc3, 0x30, 0x16, 0x75, 0x62, 0x91, 0x67, 0x74, 0x64, 0xca, 0x12, 0xf2, 0xfa, 0x0b, 0x6a, | 	0x4b, 0xe3, 0x7f, 0x53, 0x78, 0x0e, 0x34, 0x15, 0x9d, 0xf5, 0x39, 0x2a, 0xf4, 0xb4, 0x68, 0xe2, | ||||||
| 	0xfc, 0x5d, 0xb3, 0xf9, 0xe8, 0x7f, 0x76, 0xbd, 0x29, 0x4b, 0x56, 0xcd, 0xe5, 0xc5, 0xec, 0x90, | 	0xfb, 0xd0, 0xf4, 0x05, 0x4f, 0x22, 0xec, 0xb4, 0xf6, 0xbb, 0x92, 0x42, 0xc2, 0x3f, 0x75, 0x8d, | ||||||
| 	0x7a, 0xa3, 0x73, 0x3c, 0x8f, 0x92, 0x27, 0x9e, 0xa7, 0xeb, 0x7c, 0x65, 0xaf, 0x5b, 0x28, 0x28, | 	0xf7, 0x35, 0xd6, 0x47, 0xfd, 0xb5, 0x69, 0xcd, 0xd0, 0x58, 0xd1, 0x96, 0xe5, 0xa3, 0x90, 0xea, | ||||||
| 	0xa5, 0x7f, 0xc9, 0x06, 0x35, 0xaf, 0x39, 0x57, 0x7e, 0x9c, 0x2b, 0xaf, 0xc8, 0xec, 0x42, 0x7f, | 	0xd1, 0x05, 0x59, 0x78, 0xc1, 0x35, 0xb7, 0xa3, 0x19, 0xdf, 0x62, 0x77, 0x8b, 0x08, 0xca, 0xd0, | ||||||
| 	0x2e, 0x72, 0xc9, 0x59, 0xce, 0x8b, 0x93, 0x15, 0x38, 0xe7, 0x30, 0xb9, 0x89, 0xfd, 0xe7, 0xdc, | 	0x3f, 0xc0, 0x42, 0x4d, 0x38, 0x27, 0x91, 0xdf, 0x4e, 0x22, 0xaf, 0x9c, 0xb9, 0x0b, 0xf5, 0x85, | ||||||
| 	0xac, 0x70, 0x8c, 0xc2, 0x41, 0x04, 0x25, 0x2d, 0xb7, 0xa5, 0x25, 0x14, 0x39, 0xbc, 0xab, 0x60, | 	0xb0, 0x25, 0x6b, 0x39, 0x21, 0x27, 0x19, 0x18, 0x87, 0x30, 0x38, 0xf3, 0xed, 0x9b, 0xa6, 0x59, | ||||||
| 	0x7c, 0x78, 0xc0, 0x6c, 0x3a, 0xf2, 0xde, 0xff, 0x6e, 0x83, 0xce, 0x23, 0x19, 0xe3, 0xac, 0x18, | 	0x3a, 0x31, 0xd2, 0x09, 0x22, 0x5c, 0xaa, 0x24, 0x63, 0x69, 0x09, 0x45, 0x16, 0x6f, 0x0f, 0x3a, | ||||||
| 	0x99, 0x43, 0xe4, 0xeb, 0x14, 0x56, 0xa8, 0xf0, 0x8d, 0x8a, 0xf2, 0xdd, 0x45, 0x4b, 0xd3, 0x2b, | 	0x2f, 0x2e, 0x08, 0x56, 0x47, 0x92, 0xfb, 0x3f, 0x4b, 0x50, 0xe5, 0x3b, 0xb1, 0xc7, 0x31, 0x19, | ||||||
| 	0x96, 0xd6, 0xe7, 0x6b, 0xc6, 0x5b, 0xb6, 0xc5, 0x1a, 0x94, 0x78, 0xe7, 0x4d, 0x29, 0xcb, 0x37, | 	0x69, 0x43, 0xd8, 0x2b, 0xa7, 0xa3, 0x50, 0xe1, 0x77, 0x0a, 0x91, 0xd7, 0xb2, 0x23, 0xad, 0x5a, | ||||||
| 	0x6c, 0x90, 0xaf, 0xec, 0x06, 0xd0, 0xe0, 0x06, 0x47, 0xbf, 0x74, 0xd0, 0x4e, 0x2f, 0x3f, 0xa1, | 	0x18, 0x69, 0x75, 0xbe, 0x46, 0xbf, 0x65, 0x5a, 0x86, 0x8d, 0x9c, 0xdf, 0x49, 0x52, 0xf2, 0xe1, | ||||||
| 	0x2b, 0x58, 0xad, 0xb8, 0x33, 0xda, 0xc9, 0x4f, 0xd7, 0x7e, 0x32, 0xec, 0xff, 0x9b, 0xb6, 0xa5, | 	0x6b, 0xae, 0x09, 0x5f, 0x7e, 0x1a, 0xc0, 0xba, 0x69, 0xf0, 0x7b, 0x09, 0xda, 0x5f, 0x13, 0x76, | ||||||
| 	0x7a, 0xad, 0x0c, 0xb3, 0x22, 0xad, 0xc2, 0xac, 0x6f, 0x9c, 0xc2, 0x6c, 0xea, 0x48, 0x0b, 0xbd, | 	0xe9, 0x05, 0xf3, 0x38, 0x49, 0x61, 0xa1, 0xfd, 0xb0, 0x66, 0x83, 0xab, 0xc9, 0xf9, 0x35, 0x23, | ||||||
| 	0x83, 0x9e, 0x30, 0x7c, 0xb4, 0x21, 0xcf, 0x96, 0xbe, 0x1c, 0xf6, 0x66, 0x25, 0xaa, 0x2e, 0x9e, | 	0x22, 0xbb, 0x5a, 0xec, 0x0f, 0xee, 0x1c, 0x99, 0xa2, 0xe9, 0x78, 0x86, 0xf5, 0x3e, 0x34, 0x8f, | ||||||
| 	0x01, 0x14, 0x3e, 0x8b, 0x2c, 0x79, 0x6c, 0xe9, 0x53, 0x61, 0x6f, 0xd7, 0xec, 0x28, 0x90, 0x1b, | 	0xaf, 0x26, 0x38, 0xfe, 0xbd, 0x40, 0xf4, 0x21, 0x17, 0xc3, 0x2d, 0x3b, 0xf0, 0x7c, 0x9f, 0x08, | ||||||
| 	0x18, 0x57, 0xbd, 0x13, 0x55, 0x74, 0xa8, 0x3a, 0x9d, 0xbd, 0xdb, 0xb8, 0xbf, 0x08, 0x5b, 0x75, | 	0x4f, 0xb5, 0x18, 0xec, 0x34, 0x01, 0xab, 0x25, 0x52, 0xb8, 0xe3, 0x4b, 0xb0, 0x7a, 0x02, 0x76, | ||||||
| 	0x50, 0x05, 0xdb, 0xe0, 0xc7, 0x0a, 0xb6, 0xd1, 0x7a, 0x5b, 0xe8, 0x0b, 0x98, 0x65, 0xf3, 0x43, | 	0xaa, 0xc0, 0x1a, 0x19, 0xb1, 0x04, 0xac, 0xc9, 0xab, 0x6a, 0x01, 0x8d, 0x03, 0x3f, 0x3a, 0x0b, | ||||||
| 	0xff, 0xc9, 0x4b, 0xb5, 0x9e, 0x6c, 0xef, 0x34, 0xec, 0x2a, 0xc0, 0xb7, 0xa0, 0x0b, 0xcb, 0x5b, | 	0xcd, 0x29, 0x89, 0x27, 0x01, 0xf3, 0x98, 0xe9, 0x4c, 0xa2, 0x78, 0xc9, 0xa9, 0x6b, 0xfa, 0x2d, | ||||||
| 	0xcf, 0x55, 0x5e, 0x70, 0x46, 0x7b, 0xa3, 0x1c, 0x54, 0xb7, 0x0e, 0xa1, 0x27, 0x9e, 0x91, 0x6a, | 	0x68, 0xfb, 0x24, 0xc0, 0xba, 0x94, 0xbb, 0x65, 0x0c, 0x94, 0xa6, 0xff, 0x0f, 0x76, 0xf8, 0x72, | ||||||
| 	0x59, 0xe9, 0x55, 0xd9, 0x2b, 0x8b, 0x51, 0xa7, 0x75, 0xd8, 0xbe, 0xed, 0xf1, 0xbf, 0x96, 0xe3, | 	0x42, 0xdd, 0xc9, 0x9c, 0x04, 0x2e, 0x71, 0x16, 0x9e, 0x4d, 0xa4, 0x1f, 0x7b, 0xd0, 0x57, 0x87, | ||||||
| 	0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x36, 0x89, 0xf8, 0xbd, 0xc2, 0x08, 0x00, 0x00, | 	0x71, 0x63, 0xf2, 0x23, 0xee, 0x8f, 0x71, 0x0a, 0xdd, 0xd3, 0x19, 0xfe, 0x4b, 0x99, 0x43, 0xdd, | ||||||
|  | 	0xe9, 0xa1, 0xc9, 0x4c, 0xbd, 0x87, 0x79, 0x22, 0x01, 0xf5, 0xec, 0x50, 0x1a, 0x44, 0x6d, 0x26, | ||||||
|  | 	0x44, 0x88, 0x3d, 0x49, 0x8e, 0x44, 0xd0, 0x70, 0xf8, 0xa7, 0x47, 0x8c, 0x2e, 0xa4, 0x41, 0xe3, | ||||||
|  | 	0x07, 0xee, 0x84, 0x08, 0xbc, 0x01, 0xcd, 0x94, 0x6c, 0x89, 0xe7, 0xab, 0x97, 0xe4, 0x2b, 0x71, | ||||||
|  | 	0x74, 0x0c, 0x3d, 0xa6, 0x58, 0x4c, 0xb0, 0x6a, 0x4d, 0xd9, 0x1b, 0xbb, 0x52, 0x32, 0xcf, 0xd1, | ||||||
|  | 	0xf8, 0x14, 0xe0, 0x35, 0x6f, 0x45, 0xce, 0x18, 0x67, 0x63, 0x36, 0x40, 0x18, 0xe8, 0x85, 0x79, | ||||||
|  | 	0xa5, 0xa2, 0x13, 0x6f, 0xa1, 0x4f, 0x3f, 0x9a, 0xd4, 0xb1, 0xb0, 0x62, 0x04, 0xc1, 0xbf, 0x4a, | ||||||
|  | 	0xd0, 0x12, 0x08, 0x82, 0x24, 0x42, 0x58, 0xd8, 0x7e, 0x09, 0xc4, 0xbd, 0x04, 0x31, 0xff, 0xb7, | ||||||
|  | 	0xc9, 0xd8, 0xc4, 0x32, 0x0c, 0x2f, 0x4d, 0x5f, 0x5a, 0xa9, 0xac, 0x13, 0x7b, 0x07, 0xda, 0x22, | ||||||
|  | 	0x1b, 0x52, 0x50, 0x5b, 0x27, 0xf8, 0x28, 0xbe, 0x88, 0x20, 0x13, 0x3e, 0x0b, 0x5b, 0xfb, 0x77, | ||||||
|  | 	0x72, 0x12, 0x9c, 0xe3, 0x98, 0x7f, 0x5f, 0xb8, 0x2c, 0xb8, 0x1e, 0x3d, 0x02, 0x48, 0x57, 0x71, | ||||||
|  | 	0xdb, 0xcd, 0xc9, 0xb5, 0xac, 0x6c, 0xf4, 0xe4, 0xc2, 0x74, 0x22, 0xe9, 0xf9, 0xb3, 0xf2, 0xd3, | ||||||
|  | 	0x92, 0xf1, 0x15, 0xf4, 0x3e, 0x77, 0xe6, 0xd4, 0xcb, 0xa8, 0xa0, 0xd4, 0xc2, 0xfc, 0xc9, 0x0b, | ||||||
|  | 	0xa4, 0xbf, 0xf1, 0x92, 0xba, 0xb8, 0x14, 0xe1, 0xc2, 0xbe, 0xf7, 0x7c, 0x39, 0x4d, 0x15, 0x9e, | ||||||
|  | 	0xa8, 0x97, 0x3f, 0x2a, 0x00, 0x29, 0x98, 0xfe, 0x0c, 0x46, 0xd4, 0x9b, 0x60, 0x49, 0x5d, 0x50, | ||||||
|  | 	0x8b, 0x88, 0x16, 0x98, 0x04, 0xc4, 0x8a, 0x82, 0x90, 0x5e, 0x10, 0x39, 0x02, 0x07, 0xd2, 0x97, | ||||||
|  | 	0x22, 0x87, 0x0f, 0x60, 0x37, 0xd5, 0xb5, 0x33, 0x6a, 0xe5, 0x8d, 0x6a, 0x4f, 0x60, 0x07, 0xd5, | ||||||
|  | 	0x70, 0x70, 0x45, 0x39, 0xa5, 0xca, 0x46, 0xa5, 0x8f, 0x61, 0x2f, 0xc3, 0x33, 0xae, 0xd4, 0x8c, | ||||||
|  | 	0xaa, 0xb6, 0x51, 0xf5, 0x43, 0x18, 0xa0, 0xea, 0xa5, 0x49, 0x59, 0x51, 0xaf, 0xfa, 0x0f, 0x78, | ||||||
|  | 	0x2e, 0x48, 0x30, 0xcd, 0xf1, 0xac, 0x6d, 0x54, 0x7a, 0x0f, 0xfa, 0xa8, 0x54, 0xb0, 0x53, 0xbf, | ||||||
|  | 	0x49, 0x25, 0x24, 0x16, 0xc3, 0xa9, 0x92, 0x51, 0x69, 0x6c, 0x52, 0x31, 0x9e, 0x43, 0xfb, 0x65, | ||||||
|  | 	0x34, 0x25, 0xcc, 0x39, 0x57, 0xd5, 0xff, 0x6f, 0x1b, 0xe8, 0xd7, 0x32, 0xb4, 0x0e, 0xa6, 0x81, | ||||||
|  | 	0x17, 0xf9, 0xb9, 0x2e, 0x17, 0x35, 0xbc, 0xd4, 0xe5, 0x42, 0xe6, 0x21, 0xb4, 0xc5, 0x0f, 0x54, | ||||||
|  | 	0x8a, 0x89, 0xe6, 0xd2, 0x97, 0x4b, 0x3d, 0xbe, 0xc4, 0x9c, 0xc7, 0x9c, 0xa5, 0x60, 0xbe, 0xbd, | ||||||
|  | 	0x32, 0xe5, 0xf7, 0x09, 0x74, 0x66, 0xc2, 0x11, 0x29, 0x29, 0x52, 0xf9, 0x20, 0xb1, 0x9c, 0x12, | ||||||
|  | 	0x1c, 0x67, 0x1d, 0x16, 0x4d, 0xf4, 0x12, 0xfa, 0x4b, 0x9b, 0xf9, 0x5e, 0x32, 0xb2, 0xbd, 0xd4, | ||||||
|  | 	0xda, 0xdf, 0x91, 0xb0, 0x59, 0x2d, 0xde, 0x60, 0xdf, 0x43, 0x55, 0xf0, 0x79, 0x17, 0x3a, 0xae, | ||||||
|  | 	0xf8, 0xe9, 0xa8, 0x48, 0x54, 0x32, 0x8a, 0xb9, 0x1f, 0x12, 0x46, 0xc3, 0xe2, 0xfc, 0x56, 0x46, | ||||||
|  | 	0x23, 0x43, 0x7d, 0xff, 0xb7, 0x2a, 0x54, 0x9e, 0x1f, 0x7d, 0xa9, 0x1f, 0x43, 0xaf, 0xf0, 0xd2, | ||||||
|  | 	0xd0, 0x93, 0x39, 0xb1, 0xfa, 0xf9, 0x33, 0x7a, 0x63, 0xdd, 0xb1, 0xbc, 0x09, 0x6c, 0xc5, 0x98, | ||||||
|  | 	0x85, 0x6b, 0x82, 0xc2, 0x5c, 0x7d, 0x09, 0x51, 0x98, 0xeb, 0x6e, 0x17, 0x5b, 0xfa, 0x47, 0x50, | ||||||
|  | 	0x13, 0x8f, 0x17, 0xfd, 0x96, 0x94, 0xcd, 0xbd, 0x82, 0x46, 0xbb, 0x85, 0x5d, 0xa5, 0x78, 0x00, | ||||||
|  | 	0x90, 0xbe, 0x19, 0xf4, 0xa1, 0x14, 0x5b, 0x7a, 0xf6, 0x8c, 0xf6, 0x56, 0x9c, 0x28, 0x90, 0x33, | ||||||
|  | 	0xd8, 0x2e, 0xbe, 0x03, 0xf4, 0x42, 0x1c, 0x8a, 0xb7, 0xf6, 0xd1, 0xdd, 0xb5, 0xe7, 0x59, 0xd8, | ||||||
|  | 	0xe2, 0x6b, 0x40, 0xc1, 0xae, 0x79, 0x5b, 0x28, 0xd8, 0xb5, 0xcf, 0x88, 0x2d, 0xfd, 0x1b, 0xe8, | ||||||
|  | 	0xe6, 0x2f, 0xf2, 0xfa, 0xff, 0xa5, 0xd2, 0xca, 0xf7, 0xc5, 0xe8, 0xce, 0x9a, 0x53, 0x05, 0xf8, | ||||||
|  | 	0xbe, 0xa8, 0x45, 0xbc, 0x3c, 0x24, 0x51, 0xce, 0xdc, 0xf2, 0x47, 0xb7, 0xf2, 0x9b, 0x4a, 0xeb, | ||||||
|  | 	0x31, 0xd4, 0xc4, 0x95, 0x50, 0xa5, 0x2c, 0x77, 0x43, 0x1c, 0xb5, 0xb3, 0xbb, 0xc6, 0xd6, 0xe3, | ||||||
|  | 	0xd2, 0x79, 0x8d, 0xbf, 0xc0, 0x9f, 0xfc, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x45, 0x12, 0x50, 0x50, | ||||||
|  | 	0x8e, 0x0f, 0x00, 0x00, | ||||||
| } | } | ||||||
|   | |||||||
| @@ -146,3 +146,83 @@ message Event { | |||||||
| 	repeated Container containers = 9; | 	repeated Container containers = 9; | ||||||
| 	Checkpoint checkpoint = 10; | 	Checkpoint checkpoint = 10; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | message NetworkStats { | ||||||
|  | 	string name = 1; // name of network interface | ||||||
|  | 	uint64 rx_bytes  = 2; | ||||||
|  | 	uint64 rx_Packets = 3; | ||||||
|  | 	uint64 Rx_errors  = 4; | ||||||
|  | 	uint64 Rx_dropped = 5; | ||||||
|  | 	uint64 Tx_bytes   = 6; | ||||||
|  | 	uint64 Tx_packets = 7; | ||||||
|  | 	uint64 Tx_errors  = 8; | ||||||
|  | 	uint64 Tx_dropped = 9; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message CpuUsage { | ||||||
|  | 	uint64 total_usage = 1; | ||||||
|  | 	repeated uint64 percpu_usage = 2; | ||||||
|  | 	uint64 usage_in_kernelmode = 3; | ||||||
|  | 	uint64 usage_in_usermode = 4; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message ThrottlingData { | ||||||
|  | 	uint64 periods = 1; | ||||||
|  | 	uint64 throttled_periods = 2; | ||||||
|  | 	uint64 throttled_time = 3; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message CpuStats { | ||||||
|  | 	CpuUsage cpu_usage = 1; | ||||||
|  | 	ThrottlingData throttling_data = 2; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message MemoryData { | ||||||
|  | 	uint64 usage = 1; | ||||||
|  | 	uint64 max_usage = 2; | ||||||
|  | 	uint64 failcnt = 3; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message MemoryStats { | ||||||
|  | 	uint64 cache = 1; | ||||||
|  | 	MemoryData usage = 2; | ||||||
|  | 	MemoryData swap_usage = 3; | ||||||
|  | 	MemoryData kernel_usage = 4; | ||||||
|  | 	map<string, uint64> stats = 5; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message BlkioStatsEntry { | ||||||
|  | 	uint64 major = 1; | ||||||
|  | 	uint64 minor = 2; | ||||||
|  | 	string op = 3; | ||||||
|  | 	uint64 value = 4; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message BlkioStats { | ||||||
|  | 	repeated BlkioStatsEntry io_service_bytes_recursive = 1; // number of bytes tranferred to and from the block device | ||||||
|  | 	repeated BlkioStatsEntry io_serviced_recursive = 2; | ||||||
|  | 	repeated BlkioStatsEntry io_queued_recursive = 3; | ||||||
|  | 	repeated BlkioStatsEntry io_service_time_recursive = 4; | ||||||
|  | 	repeated BlkioStatsEntry io_wait_time_recursive = 5; | ||||||
|  | 	repeated BlkioStatsEntry io_merged_recursive = 6; | ||||||
|  | 	repeated BlkioStatsEntry io_time_recursive = 7; | ||||||
|  | 	repeated BlkioStatsEntry sectors_recursive = 8; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message HugetlbStats { | ||||||
|  | 	uint64 usage = 1; | ||||||
|  | 	uint64 max_usage = 2; | ||||||
|  | 	uint64 failcnt = 3; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message CgroupStats { | ||||||
|  | 	CpuStats cpu_stats = 1; | ||||||
|  | 	MemoryStats memory_stats  = 2; | ||||||
|  | 	BlkioStats blkio_stats = 3; | ||||||
|  | 	map<string, HugetlbStats> hugetlb_stats = 4; // the map is in the format "size of hugepage: stats of the hugepage" | ||||||
|  | } | ||||||
|  |  | ||||||
|  | message Stats { | ||||||
|  | 	repeated NetworkStats network_stats = 1; | ||||||
|  | 	CgroupStats cgroup_stats = 2; | ||||||
|  | }; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Alexander Morozov
					Alexander Morozov