metrics.pb.go 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.5
  5. // source: github.com/containerd/cgroups/cgroup1/stats/metrics.proto
  6. package stats
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type Metrics struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Hugetlb []*HugetlbStat `protobuf:"bytes,1,rep,name=hugetlb,proto3" json:"hugetlb,omitempty"`
  24. Pids *PidsStat `protobuf:"bytes,2,opt,name=pids,proto3" json:"pids,omitempty"`
  25. CPU *CPUStat `protobuf:"bytes,3,opt,name=cpu,proto3" json:"cpu,omitempty"`
  26. Memory *MemoryStat `protobuf:"bytes,4,opt,name=memory,proto3" json:"memory,omitempty"`
  27. Blkio *BlkIOStat `protobuf:"bytes,5,opt,name=blkio,proto3" json:"blkio,omitempty"`
  28. Rdma *RdmaStat `protobuf:"bytes,6,opt,name=rdma,proto3" json:"rdma,omitempty"`
  29. Network []*NetworkStat `protobuf:"bytes,7,rep,name=network,proto3" json:"network,omitempty"`
  30. CgroupStats *CgroupStats `protobuf:"bytes,8,opt,name=cgroup_stats,json=cgroupStats,proto3" json:"cgroup_stats,omitempty"`
  31. MemoryOomControl *MemoryOomControl `protobuf:"bytes,9,opt,name=memory_oom_control,json=memoryOomControl,proto3" json:"memory_oom_control,omitempty"`
  32. }
  33. func (x *Metrics) Reset() {
  34. *x = Metrics{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *Metrics) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*Metrics) ProtoMessage() {}
  45. func (x *Metrics) ProtoReflect() protoreflect.Message {
  46. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use Metrics.ProtoReflect.Descriptor instead.
  57. func (*Metrics) Descriptor() ([]byte, []int) {
  58. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *Metrics) GetHugetlb() []*HugetlbStat {
  61. if x != nil {
  62. return x.Hugetlb
  63. }
  64. return nil
  65. }
  66. func (x *Metrics) GetPids() *PidsStat {
  67. if x != nil {
  68. return x.Pids
  69. }
  70. return nil
  71. }
  72. func (x *Metrics) GetCPU() *CPUStat {
  73. if x != nil {
  74. return x.CPU
  75. }
  76. return nil
  77. }
  78. func (x *Metrics) GetMemory() *MemoryStat {
  79. if x != nil {
  80. return x.Memory
  81. }
  82. return nil
  83. }
  84. func (x *Metrics) GetBlkio() *BlkIOStat {
  85. if x != nil {
  86. return x.Blkio
  87. }
  88. return nil
  89. }
  90. func (x *Metrics) GetRdma() *RdmaStat {
  91. if x != nil {
  92. return x.Rdma
  93. }
  94. return nil
  95. }
  96. func (x *Metrics) GetNetwork() []*NetworkStat {
  97. if x != nil {
  98. return x.Network
  99. }
  100. return nil
  101. }
  102. func (x *Metrics) GetCgroupStats() *CgroupStats {
  103. if x != nil {
  104. return x.CgroupStats
  105. }
  106. return nil
  107. }
  108. func (x *Metrics) GetMemoryOomControl() *MemoryOomControl {
  109. if x != nil {
  110. return x.MemoryOomControl
  111. }
  112. return nil
  113. }
  114. type HugetlbStat struct {
  115. state protoimpl.MessageState
  116. sizeCache protoimpl.SizeCache
  117. unknownFields protoimpl.UnknownFields
  118. Usage uint64 `protobuf:"varint,1,opt,name=usage,proto3" json:"usage,omitempty"`
  119. Max uint64 `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
  120. Failcnt uint64 `protobuf:"varint,3,opt,name=failcnt,proto3" json:"failcnt,omitempty"`
  121. Pagesize string `protobuf:"bytes,4,opt,name=pagesize,proto3" json:"pagesize,omitempty"`
  122. }
  123. func (x *HugetlbStat) Reset() {
  124. *x = HugetlbStat{}
  125. if protoimpl.UnsafeEnabled {
  126. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[1]
  127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  128. ms.StoreMessageInfo(mi)
  129. }
  130. }
  131. func (x *HugetlbStat) String() string {
  132. return protoimpl.X.MessageStringOf(x)
  133. }
  134. func (*HugetlbStat) ProtoMessage() {}
  135. func (x *HugetlbStat) ProtoReflect() protoreflect.Message {
  136. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[1]
  137. if protoimpl.UnsafeEnabled && x != nil {
  138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  139. if ms.LoadMessageInfo() == nil {
  140. ms.StoreMessageInfo(mi)
  141. }
  142. return ms
  143. }
  144. return mi.MessageOf(x)
  145. }
  146. // Deprecated: Use HugetlbStat.ProtoReflect.Descriptor instead.
  147. func (*HugetlbStat) Descriptor() ([]byte, []int) {
  148. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{1}
  149. }
  150. func (x *HugetlbStat) GetUsage() uint64 {
  151. if x != nil {
  152. return x.Usage
  153. }
  154. return 0
  155. }
  156. func (x *HugetlbStat) GetMax() uint64 {
  157. if x != nil {
  158. return x.Max
  159. }
  160. return 0
  161. }
  162. func (x *HugetlbStat) GetFailcnt() uint64 {
  163. if x != nil {
  164. return x.Failcnt
  165. }
  166. return 0
  167. }
  168. func (x *HugetlbStat) GetPagesize() string {
  169. if x != nil {
  170. return x.Pagesize
  171. }
  172. return ""
  173. }
  174. type PidsStat struct {
  175. state protoimpl.MessageState
  176. sizeCache protoimpl.SizeCache
  177. unknownFields protoimpl.UnknownFields
  178. Current uint64 `protobuf:"varint,1,opt,name=current,proto3" json:"current,omitempty"`
  179. Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
  180. }
  181. func (x *PidsStat) Reset() {
  182. *x = PidsStat{}
  183. if protoimpl.UnsafeEnabled {
  184. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[2]
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. ms.StoreMessageInfo(mi)
  187. }
  188. }
  189. func (x *PidsStat) String() string {
  190. return protoimpl.X.MessageStringOf(x)
  191. }
  192. func (*PidsStat) ProtoMessage() {}
  193. func (x *PidsStat) ProtoReflect() protoreflect.Message {
  194. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[2]
  195. if protoimpl.UnsafeEnabled && x != nil {
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. if ms.LoadMessageInfo() == nil {
  198. ms.StoreMessageInfo(mi)
  199. }
  200. return ms
  201. }
  202. return mi.MessageOf(x)
  203. }
  204. // Deprecated: Use PidsStat.ProtoReflect.Descriptor instead.
  205. func (*PidsStat) Descriptor() ([]byte, []int) {
  206. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{2}
  207. }
  208. func (x *PidsStat) GetCurrent() uint64 {
  209. if x != nil {
  210. return x.Current
  211. }
  212. return 0
  213. }
  214. func (x *PidsStat) GetLimit() uint64 {
  215. if x != nil {
  216. return x.Limit
  217. }
  218. return 0
  219. }
  220. type CPUStat struct {
  221. state protoimpl.MessageState
  222. sizeCache protoimpl.SizeCache
  223. unknownFields protoimpl.UnknownFields
  224. Usage *CPUUsage `protobuf:"bytes,1,opt,name=usage,proto3" json:"usage,omitempty"`
  225. Throttling *Throttle `protobuf:"bytes,2,opt,name=throttling,proto3" json:"throttling,omitempty"`
  226. }
  227. func (x *CPUStat) Reset() {
  228. *x = CPUStat{}
  229. if protoimpl.UnsafeEnabled {
  230. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[3]
  231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  232. ms.StoreMessageInfo(mi)
  233. }
  234. }
  235. func (x *CPUStat) String() string {
  236. return protoimpl.X.MessageStringOf(x)
  237. }
  238. func (*CPUStat) ProtoMessage() {}
  239. func (x *CPUStat) ProtoReflect() protoreflect.Message {
  240. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[3]
  241. if protoimpl.UnsafeEnabled && x != nil {
  242. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  243. if ms.LoadMessageInfo() == nil {
  244. ms.StoreMessageInfo(mi)
  245. }
  246. return ms
  247. }
  248. return mi.MessageOf(x)
  249. }
  250. // Deprecated: Use CPUStat.ProtoReflect.Descriptor instead.
  251. func (*CPUStat) Descriptor() ([]byte, []int) {
  252. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{3}
  253. }
  254. func (x *CPUStat) GetUsage() *CPUUsage {
  255. if x != nil {
  256. return x.Usage
  257. }
  258. return nil
  259. }
  260. func (x *CPUStat) GetThrottling() *Throttle {
  261. if x != nil {
  262. return x.Throttling
  263. }
  264. return nil
  265. }
  266. type CPUUsage struct {
  267. state protoimpl.MessageState
  268. sizeCache protoimpl.SizeCache
  269. unknownFields protoimpl.UnknownFields
  270. // values in nanoseconds
  271. Total uint64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
  272. Kernel uint64 `protobuf:"varint,2,opt,name=kernel,proto3" json:"kernel,omitempty"`
  273. User uint64 `protobuf:"varint,3,opt,name=user,proto3" json:"user,omitempty"`
  274. PerCPU []uint64 `protobuf:"varint,4,rep,packed,name=per_cpu,json=perCpu,proto3" json:"per_cpu,omitempty"`
  275. }
  276. func (x *CPUUsage) Reset() {
  277. *x = CPUUsage{}
  278. if protoimpl.UnsafeEnabled {
  279. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[4]
  280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  281. ms.StoreMessageInfo(mi)
  282. }
  283. }
  284. func (x *CPUUsage) String() string {
  285. return protoimpl.X.MessageStringOf(x)
  286. }
  287. func (*CPUUsage) ProtoMessage() {}
  288. func (x *CPUUsage) ProtoReflect() protoreflect.Message {
  289. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[4]
  290. if protoimpl.UnsafeEnabled && x != nil {
  291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  292. if ms.LoadMessageInfo() == nil {
  293. ms.StoreMessageInfo(mi)
  294. }
  295. return ms
  296. }
  297. return mi.MessageOf(x)
  298. }
  299. // Deprecated: Use CPUUsage.ProtoReflect.Descriptor instead.
  300. func (*CPUUsage) Descriptor() ([]byte, []int) {
  301. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{4}
  302. }
  303. func (x *CPUUsage) GetTotal() uint64 {
  304. if x != nil {
  305. return x.Total
  306. }
  307. return 0
  308. }
  309. func (x *CPUUsage) GetKernel() uint64 {
  310. if x != nil {
  311. return x.Kernel
  312. }
  313. return 0
  314. }
  315. func (x *CPUUsage) GetUser() uint64 {
  316. if x != nil {
  317. return x.User
  318. }
  319. return 0
  320. }
  321. func (x *CPUUsage) GetPerCPU() []uint64 {
  322. if x != nil {
  323. return x.PerCPU
  324. }
  325. return nil
  326. }
  327. type Throttle struct {
  328. state protoimpl.MessageState
  329. sizeCache protoimpl.SizeCache
  330. unknownFields protoimpl.UnknownFields
  331. Periods uint64 `protobuf:"varint,1,opt,name=periods,proto3" json:"periods,omitempty"`
  332. ThrottledPeriods uint64 `protobuf:"varint,2,opt,name=throttled_periods,json=throttledPeriods,proto3" json:"throttled_periods,omitempty"`
  333. ThrottledTime uint64 `protobuf:"varint,3,opt,name=throttled_time,json=throttledTime,proto3" json:"throttled_time,omitempty"`
  334. }
  335. func (x *Throttle) Reset() {
  336. *x = Throttle{}
  337. if protoimpl.UnsafeEnabled {
  338. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[5]
  339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  340. ms.StoreMessageInfo(mi)
  341. }
  342. }
  343. func (x *Throttle) String() string {
  344. return protoimpl.X.MessageStringOf(x)
  345. }
  346. func (*Throttle) ProtoMessage() {}
  347. func (x *Throttle) ProtoReflect() protoreflect.Message {
  348. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[5]
  349. if protoimpl.UnsafeEnabled && x != nil {
  350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  351. if ms.LoadMessageInfo() == nil {
  352. ms.StoreMessageInfo(mi)
  353. }
  354. return ms
  355. }
  356. return mi.MessageOf(x)
  357. }
  358. // Deprecated: Use Throttle.ProtoReflect.Descriptor instead.
  359. func (*Throttle) Descriptor() ([]byte, []int) {
  360. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{5}
  361. }
  362. func (x *Throttle) GetPeriods() uint64 {
  363. if x != nil {
  364. return x.Periods
  365. }
  366. return 0
  367. }
  368. func (x *Throttle) GetThrottledPeriods() uint64 {
  369. if x != nil {
  370. return x.ThrottledPeriods
  371. }
  372. return 0
  373. }
  374. func (x *Throttle) GetThrottledTime() uint64 {
  375. if x != nil {
  376. return x.ThrottledTime
  377. }
  378. return 0
  379. }
  380. type MemoryStat struct {
  381. state protoimpl.MessageState
  382. sizeCache protoimpl.SizeCache
  383. unknownFields protoimpl.UnknownFields
  384. Cache uint64 `protobuf:"varint,1,opt,name=cache,proto3" json:"cache,omitempty"`
  385. RSS uint64 `protobuf:"varint,2,opt,name=rss,proto3" json:"rss,omitempty"`
  386. RSSHuge uint64 `protobuf:"varint,3,opt,name=rss_huge,json=rssHuge,proto3" json:"rss_huge,omitempty"`
  387. MappedFile uint64 `protobuf:"varint,4,opt,name=mapped_file,json=mappedFile,proto3" json:"mapped_file,omitempty"`
  388. Dirty uint64 `protobuf:"varint,5,opt,name=dirty,proto3" json:"dirty,omitempty"`
  389. Writeback uint64 `protobuf:"varint,6,opt,name=writeback,proto3" json:"writeback,omitempty"`
  390. PgPgIn uint64 `protobuf:"varint,7,opt,name=pg_pg_in,json=pgPgIn,proto3" json:"pg_pg_in,omitempty"`
  391. PgPgOut uint64 `protobuf:"varint,8,opt,name=pg_pg_out,json=pgPgOut,proto3" json:"pg_pg_out,omitempty"`
  392. PgFault uint64 `protobuf:"varint,9,opt,name=pg_fault,json=pgFault,proto3" json:"pg_fault,omitempty"`
  393. PgMajFault uint64 `protobuf:"varint,10,opt,name=pg_maj_fault,json=pgMajFault,proto3" json:"pg_maj_fault,omitempty"`
  394. InactiveAnon uint64 `protobuf:"varint,11,opt,name=inactive_anon,json=inactiveAnon,proto3" json:"inactive_anon,omitempty"`
  395. ActiveAnon uint64 `protobuf:"varint,12,opt,name=active_anon,json=activeAnon,proto3" json:"active_anon,omitempty"`
  396. InactiveFile uint64 `protobuf:"varint,13,opt,name=inactive_file,json=inactiveFile,proto3" json:"inactive_file,omitempty"`
  397. ActiveFile uint64 `protobuf:"varint,14,opt,name=active_file,json=activeFile,proto3" json:"active_file,omitempty"`
  398. Unevictable uint64 `protobuf:"varint,15,opt,name=unevictable,proto3" json:"unevictable,omitempty"`
  399. HierarchicalMemoryLimit uint64 `protobuf:"varint,16,opt,name=hierarchical_memory_limit,json=hierarchicalMemoryLimit,proto3" json:"hierarchical_memory_limit,omitempty"`
  400. HierarchicalSwapLimit uint64 `protobuf:"varint,17,opt,name=hierarchical_swap_limit,json=hierarchicalSwapLimit,proto3" json:"hierarchical_swap_limit,omitempty"`
  401. TotalCache uint64 `protobuf:"varint,18,opt,name=total_cache,json=totalCache,proto3" json:"total_cache,omitempty"`
  402. TotalRSS uint64 `protobuf:"varint,19,opt,name=total_rss,json=totalRss,proto3" json:"total_rss,omitempty"`
  403. TotalRSSHuge uint64 `protobuf:"varint,20,opt,name=total_rss_huge,json=totalRssHuge,proto3" json:"total_rss_huge,omitempty"`
  404. TotalMappedFile uint64 `protobuf:"varint,21,opt,name=total_mapped_file,json=totalMappedFile,proto3" json:"total_mapped_file,omitempty"`
  405. TotalDirty uint64 `protobuf:"varint,22,opt,name=total_dirty,json=totalDirty,proto3" json:"total_dirty,omitempty"`
  406. TotalWriteback uint64 `protobuf:"varint,23,opt,name=total_writeback,json=totalWriteback,proto3" json:"total_writeback,omitempty"`
  407. TotalPgPgIn uint64 `protobuf:"varint,24,opt,name=total_pg_pg_in,json=totalPgPgIn,proto3" json:"total_pg_pg_in,omitempty"`
  408. TotalPgPgOut uint64 `protobuf:"varint,25,opt,name=total_pg_pg_out,json=totalPgPgOut,proto3" json:"total_pg_pg_out,omitempty"`
  409. TotalPgFault uint64 `protobuf:"varint,26,opt,name=total_pg_fault,json=totalPgFault,proto3" json:"total_pg_fault,omitempty"`
  410. TotalPgMajFault uint64 `protobuf:"varint,27,opt,name=total_pg_maj_fault,json=totalPgMajFault,proto3" json:"total_pg_maj_fault,omitempty"`
  411. TotalInactiveAnon uint64 `protobuf:"varint,28,opt,name=total_inactive_anon,json=totalInactiveAnon,proto3" json:"total_inactive_anon,omitempty"`
  412. TotalActiveAnon uint64 `protobuf:"varint,29,opt,name=total_active_anon,json=totalActiveAnon,proto3" json:"total_active_anon,omitempty"`
  413. TotalInactiveFile uint64 `protobuf:"varint,30,opt,name=total_inactive_file,json=totalInactiveFile,proto3" json:"total_inactive_file,omitempty"`
  414. TotalActiveFile uint64 `protobuf:"varint,31,opt,name=total_active_file,json=totalActiveFile,proto3" json:"total_active_file,omitempty"`
  415. TotalUnevictable uint64 `protobuf:"varint,32,opt,name=total_unevictable,json=totalUnevictable,proto3" json:"total_unevictable,omitempty"`
  416. Usage *MemoryEntry `protobuf:"bytes,33,opt,name=usage,proto3" json:"usage,omitempty"`
  417. Swap *MemoryEntry `protobuf:"bytes,34,opt,name=swap,proto3" json:"swap,omitempty"`
  418. Kernel *MemoryEntry `protobuf:"bytes,35,opt,name=kernel,proto3" json:"kernel,omitempty"`
  419. KernelTCP *MemoryEntry `protobuf:"bytes,36,opt,name=kernel_tcp,json=kernelTcp,proto3" json:"kernel_tcp,omitempty"`
  420. }
  421. func (x *MemoryStat) Reset() {
  422. *x = MemoryStat{}
  423. if protoimpl.UnsafeEnabled {
  424. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[6]
  425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  426. ms.StoreMessageInfo(mi)
  427. }
  428. }
  429. func (x *MemoryStat) String() string {
  430. return protoimpl.X.MessageStringOf(x)
  431. }
  432. func (*MemoryStat) ProtoMessage() {}
  433. func (x *MemoryStat) ProtoReflect() protoreflect.Message {
  434. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[6]
  435. if protoimpl.UnsafeEnabled && x != nil {
  436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  437. if ms.LoadMessageInfo() == nil {
  438. ms.StoreMessageInfo(mi)
  439. }
  440. return ms
  441. }
  442. return mi.MessageOf(x)
  443. }
  444. // Deprecated: Use MemoryStat.ProtoReflect.Descriptor instead.
  445. func (*MemoryStat) Descriptor() ([]byte, []int) {
  446. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{6}
  447. }
  448. func (x *MemoryStat) GetCache() uint64 {
  449. if x != nil {
  450. return x.Cache
  451. }
  452. return 0
  453. }
  454. func (x *MemoryStat) GetRSS() uint64 {
  455. if x != nil {
  456. return x.RSS
  457. }
  458. return 0
  459. }
  460. func (x *MemoryStat) GetRSSHuge() uint64 {
  461. if x != nil {
  462. return x.RSSHuge
  463. }
  464. return 0
  465. }
  466. func (x *MemoryStat) GetMappedFile() uint64 {
  467. if x != nil {
  468. return x.MappedFile
  469. }
  470. return 0
  471. }
  472. func (x *MemoryStat) GetDirty() uint64 {
  473. if x != nil {
  474. return x.Dirty
  475. }
  476. return 0
  477. }
  478. func (x *MemoryStat) GetWriteback() uint64 {
  479. if x != nil {
  480. return x.Writeback
  481. }
  482. return 0
  483. }
  484. func (x *MemoryStat) GetPgPgIn() uint64 {
  485. if x != nil {
  486. return x.PgPgIn
  487. }
  488. return 0
  489. }
  490. func (x *MemoryStat) GetPgPgOut() uint64 {
  491. if x != nil {
  492. return x.PgPgOut
  493. }
  494. return 0
  495. }
  496. func (x *MemoryStat) GetPgFault() uint64 {
  497. if x != nil {
  498. return x.PgFault
  499. }
  500. return 0
  501. }
  502. func (x *MemoryStat) GetPgMajFault() uint64 {
  503. if x != nil {
  504. return x.PgMajFault
  505. }
  506. return 0
  507. }
  508. func (x *MemoryStat) GetInactiveAnon() uint64 {
  509. if x != nil {
  510. return x.InactiveAnon
  511. }
  512. return 0
  513. }
  514. func (x *MemoryStat) GetActiveAnon() uint64 {
  515. if x != nil {
  516. return x.ActiveAnon
  517. }
  518. return 0
  519. }
  520. func (x *MemoryStat) GetInactiveFile() uint64 {
  521. if x != nil {
  522. return x.InactiveFile
  523. }
  524. return 0
  525. }
  526. func (x *MemoryStat) GetActiveFile() uint64 {
  527. if x != nil {
  528. return x.ActiveFile
  529. }
  530. return 0
  531. }
  532. func (x *MemoryStat) GetUnevictable() uint64 {
  533. if x != nil {
  534. return x.Unevictable
  535. }
  536. return 0
  537. }
  538. func (x *MemoryStat) GetHierarchicalMemoryLimit() uint64 {
  539. if x != nil {
  540. return x.HierarchicalMemoryLimit
  541. }
  542. return 0
  543. }
  544. func (x *MemoryStat) GetHierarchicalSwapLimit() uint64 {
  545. if x != nil {
  546. return x.HierarchicalSwapLimit
  547. }
  548. return 0
  549. }
  550. func (x *MemoryStat) GetTotalCache() uint64 {
  551. if x != nil {
  552. return x.TotalCache
  553. }
  554. return 0
  555. }
  556. func (x *MemoryStat) GetTotalRSS() uint64 {
  557. if x != nil {
  558. return x.TotalRSS
  559. }
  560. return 0
  561. }
  562. func (x *MemoryStat) GetTotalRSSHuge() uint64 {
  563. if x != nil {
  564. return x.TotalRSSHuge
  565. }
  566. return 0
  567. }
  568. func (x *MemoryStat) GetTotalMappedFile() uint64 {
  569. if x != nil {
  570. return x.TotalMappedFile
  571. }
  572. return 0
  573. }
  574. func (x *MemoryStat) GetTotalDirty() uint64 {
  575. if x != nil {
  576. return x.TotalDirty
  577. }
  578. return 0
  579. }
  580. func (x *MemoryStat) GetTotalWriteback() uint64 {
  581. if x != nil {
  582. return x.TotalWriteback
  583. }
  584. return 0
  585. }
  586. func (x *MemoryStat) GetTotalPgPgIn() uint64 {
  587. if x != nil {
  588. return x.TotalPgPgIn
  589. }
  590. return 0
  591. }
  592. func (x *MemoryStat) GetTotalPgPgOut() uint64 {
  593. if x != nil {
  594. return x.TotalPgPgOut
  595. }
  596. return 0
  597. }
  598. func (x *MemoryStat) GetTotalPgFault() uint64 {
  599. if x != nil {
  600. return x.TotalPgFault
  601. }
  602. return 0
  603. }
  604. func (x *MemoryStat) GetTotalPgMajFault() uint64 {
  605. if x != nil {
  606. return x.TotalPgMajFault
  607. }
  608. return 0
  609. }
  610. func (x *MemoryStat) GetTotalInactiveAnon() uint64 {
  611. if x != nil {
  612. return x.TotalInactiveAnon
  613. }
  614. return 0
  615. }
  616. func (x *MemoryStat) GetTotalActiveAnon() uint64 {
  617. if x != nil {
  618. return x.TotalActiveAnon
  619. }
  620. return 0
  621. }
  622. func (x *MemoryStat) GetTotalInactiveFile() uint64 {
  623. if x != nil {
  624. return x.TotalInactiveFile
  625. }
  626. return 0
  627. }
  628. func (x *MemoryStat) GetTotalActiveFile() uint64 {
  629. if x != nil {
  630. return x.TotalActiveFile
  631. }
  632. return 0
  633. }
  634. func (x *MemoryStat) GetTotalUnevictable() uint64 {
  635. if x != nil {
  636. return x.TotalUnevictable
  637. }
  638. return 0
  639. }
  640. func (x *MemoryStat) GetUsage() *MemoryEntry {
  641. if x != nil {
  642. return x.Usage
  643. }
  644. return nil
  645. }
  646. func (x *MemoryStat) GetSwap() *MemoryEntry {
  647. if x != nil {
  648. return x.Swap
  649. }
  650. return nil
  651. }
  652. func (x *MemoryStat) GetKernel() *MemoryEntry {
  653. if x != nil {
  654. return x.Kernel
  655. }
  656. return nil
  657. }
  658. func (x *MemoryStat) GetKernelTCP() *MemoryEntry {
  659. if x != nil {
  660. return x.KernelTCP
  661. }
  662. return nil
  663. }
  664. type MemoryEntry struct {
  665. state protoimpl.MessageState
  666. sizeCache protoimpl.SizeCache
  667. unknownFields protoimpl.UnknownFields
  668. Limit uint64 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
  669. Usage uint64 `protobuf:"varint,2,opt,name=usage,proto3" json:"usage,omitempty"`
  670. Max uint64 `protobuf:"varint,3,opt,name=max,proto3" json:"max,omitempty"`
  671. Failcnt uint64 `protobuf:"varint,4,opt,name=failcnt,proto3" json:"failcnt,omitempty"`
  672. }
  673. func (x *MemoryEntry) Reset() {
  674. *x = MemoryEntry{}
  675. if protoimpl.UnsafeEnabled {
  676. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[7]
  677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  678. ms.StoreMessageInfo(mi)
  679. }
  680. }
  681. func (x *MemoryEntry) String() string {
  682. return protoimpl.X.MessageStringOf(x)
  683. }
  684. func (*MemoryEntry) ProtoMessage() {}
  685. func (x *MemoryEntry) ProtoReflect() protoreflect.Message {
  686. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[7]
  687. if protoimpl.UnsafeEnabled && x != nil {
  688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  689. if ms.LoadMessageInfo() == nil {
  690. ms.StoreMessageInfo(mi)
  691. }
  692. return ms
  693. }
  694. return mi.MessageOf(x)
  695. }
  696. // Deprecated: Use MemoryEntry.ProtoReflect.Descriptor instead.
  697. func (*MemoryEntry) Descriptor() ([]byte, []int) {
  698. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{7}
  699. }
  700. func (x *MemoryEntry) GetLimit() uint64 {
  701. if x != nil {
  702. return x.Limit
  703. }
  704. return 0
  705. }
  706. func (x *MemoryEntry) GetUsage() uint64 {
  707. if x != nil {
  708. return x.Usage
  709. }
  710. return 0
  711. }
  712. func (x *MemoryEntry) GetMax() uint64 {
  713. if x != nil {
  714. return x.Max
  715. }
  716. return 0
  717. }
  718. func (x *MemoryEntry) GetFailcnt() uint64 {
  719. if x != nil {
  720. return x.Failcnt
  721. }
  722. return 0
  723. }
  724. type MemoryOomControl struct {
  725. state protoimpl.MessageState
  726. sizeCache protoimpl.SizeCache
  727. unknownFields protoimpl.UnknownFields
  728. OomKillDisable uint64 `protobuf:"varint,1,opt,name=oom_kill_disable,json=oomKillDisable,proto3" json:"oom_kill_disable,omitempty"`
  729. UnderOom uint64 `protobuf:"varint,2,opt,name=under_oom,json=underOom,proto3" json:"under_oom,omitempty"`
  730. OomKill uint64 `protobuf:"varint,3,opt,name=oom_kill,json=oomKill,proto3" json:"oom_kill,omitempty"`
  731. }
  732. func (x *MemoryOomControl) Reset() {
  733. *x = MemoryOomControl{}
  734. if protoimpl.UnsafeEnabled {
  735. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[8]
  736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  737. ms.StoreMessageInfo(mi)
  738. }
  739. }
  740. func (x *MemoryOomControl) String() string {
  741. return protoimpl.X.MessageStringOf(x)
  742. }
  743. func (*MemoryOomControl) ProtoMessage() {}
  744. func (x *MemoryOomControl) ProtoReflect() protoreflect.Message {
  745. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[8]
  746. if protoimpl.UnsafeEnabled && x != nil {
  747. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  748. if ms.LoadMessageInfo() == nil {
  749. ms.StoreMessageInfo(mi)
  750. }
  751. return ms
  752. }
  753. return mi.MessageOf(x)
  754. }
  755. // Deprecated: Use MemoryOomControl.ProtoReflect.Descriptor instead.
  756. func (*MemoryOomControl) Descriptor() ([]byte, []int) {
  757. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{8}
  758. }
  759. func (x *MemoryOomControl) GetOomKillDisable() uint64 {
  760. if x != nil {
  761. return x.OomKillDisable
  762. }
  763. return 0
  764. }
  765. func (x *MemoryOomControl) GetUnderOom() uint64 {
  766. if x != nil {
  767. return x.UnderOom
  768. }
  769. return 0
  770. }
  771. func (x *MemoryOomControl) GetOomKill() uint64 {
  772. if x != nil {
  773. return x.OomKill
  774. }
  775. return 0
  776. }
  777. type BlkIOStat struct {
  778. state protoimpl.MessageState
  779. sizeCache protoimpl.SizeCache
  780. unknownFields protoimpl.UnknownFields
  781. IoServiceBytesRecursive []*BlkIOEntry `protobuf:"bytes,1,rep,name=io_service_bytes_recursive,json=ioServiceBytesRecursive,proto3" json:"io_service_bytes_recursive,omitempty"`
  782. IoServicedRecursive []*BlkIOEntry `protobuf:"bytes,2,rep,name=io_serviced_recursive,json=ioServicedRecursive,proto3" json:"io_serviced_recursive,omitempty"`
  783. IoQueuedRecursive []*BlkIOEntry `protobuf:"bytes,3,rep,name=io_queued_recursive,json=ioQueuedRecursive,proto3" json:"io_queued_recursive,omitempty"`
  784. IoServiceTimeRecursive []*BlkIOEntry `protobuf:"bytes,4,rep,name=io_service_time_recursive,json=ioServiceTimeRecursive,proto3" json:"io_service_time_recursive,omitempty"`
  785. IoWaitTimeRecursive []*BlkIOEntry `protobuf:"bytes,5,rep,name=io_wait_time_recursive,json=ioWaitTimeRecursive,proto3" json:"io_wait_time_recursive,omitempty"`
  786. IoMergedRecursive []*BlkIOEntry `protobuf:"bytes,6,rep,name=io_merged_recursive,json=ioMergedRecursive,proto3" json:"io_merged_recursive,omitempty"`
  787. IoTimeRecursive []*BlkIOEntry `protobuf:"bytes,7,rep,name=io_time_recursive,json=ioTimeRecursive,proto3" json:"io_time_recursive,omitempty"`
  788. SectorsRecursive []*BlkIOEntry `protobuf:"bytes,8,rep,name=sectors_recursive,json=sectorsRecursive,proto3" json:"sectors_recursive,omitempty"`
  789. }
  790. func (x *BlkIOStat) Reset() {
  791. *x = BlkIOStat{}
  792. if protoimpl.UnsafeEnabled {
  793. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[9]
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. ms.StoreMessageInfo(mi)
  796. }
  797. }
  798. func (x *BlkIOStat) String() string {
  799. return protoimpl.X.MessageStringOf(x)
  800. }
  801. func (*BlkIOStat) ProtoMessage() {}
  802. func (x *BlkIOStat) ProtoReflect() protoreflect.Message {
  803. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[9]
  804. if protoimpl.UnsafeEnabled && x != nil {
  805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  806. if ms.LoadMessageInfo() == nil {
  807. ms.StoreMessageInfo(mi)
  808. }
  809. return ms
  810. }
  811. return mi.MessageOf(x)
  812. }
  813. // Deprecated: Use BlkIOStat.ProtoReflect.Descriptor instead.
  814. func (*BlkIOStat) Descriptor() ([]byte, []int) {
  815. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{9}
  816. }
  817. func (x *BlkIOStat) GetIoServiceBytesRecursive() []*BlkIOEntry {
  818. if x != nil {
  819. return x.IoServiceBytesRecursive
  820. }
  821. return nil
  822. }
  823. func (x *BlkIOStat) GetIoServicedRecursive() []*BlkIOEntry {
  824. if x != nil {
  825. return x.IoServicedRecursive
  826. }
  827. return nil
  828. }
  829. func (x *BlkIOStat) GetIoQueuedRecursive() []*BlkIOEntry {
  830. if x != nil {
  831. return x.IoQueuedRecursive
  832. }
  833. return nil
  834. }
  835. func (x *BlkIOStat) GetIoServiceTimeRecursive() []*BlkIOEntry {
  836. if x != nil {
  837. return x.IoServiceTimeRecursive
  838. }
  839. return nil
  840. }
  841. func (x *BlkIOStat) GetIoWaitTimeRecursive() []*BlkIOEntry {
  842. if x != nil {
  843. return x.IoWaitTimeRecursive
  844. }
  845. return nil
  846. }
  847. func (x *BlkIOStat) GetIoMergedRecursive() []*BlkIOEntry {
  848. if x != nil {
  849. return x.IoMergedRecursive
  850. }
  851. return nil
  852. }
  853. func (x *BlkIOStat) GetIoTimeRecursive() []*BlkIOEntry {
  854. if x != nil {
  855. return x.IoTimeRecursive
  856. }
  857. return nil
  858. }
  859. func (x *BlkIOStat) GetSectorsRecursive() []*BlkIOEntry {
  860. if x != nil {
  861. return x.SectorsRecursive
  862. }
  863. return nil
  864. }
  865. type BlkIOEntry struct {
  866. state protoimpl.MessageState
  867. sizeCache protoimpl.SizeCache
  868. unknownFields protoimpl.UnknownFields
  869. Op string `protobuf:"bytes,1,opt,name=op,proto3" json:"op,omitempty"`
  870. Device string `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
  871. Major uint64 `protobuf:"varint,3,opt,name=major,proto3" json:"major,omitempty"`
  872. Minor uint64 `protobuf:"varint,4,opt,name=minor,proto3" json:"minor,omitempty"`
  873. Value uint64 `protobuf:"varint,5,opt,name=value,proto3" json:"value,omitempty"`
  874. }
  875. func (x *BlkIOEntry) Reset() {
  876. *x = BlkIOEntry{}
  877. if protoimpl.UnsafeEnabled {
  878. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[10]
  879. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  880. ms.StoreMessageInfo(mi)
  881. }
  882. }
  883. func (x *BlkIOEntry) String() string {
  884. return protoimpl.X.MessageStringOf(x)
  885. }
  886. func (*BlkIOEntry) ProtoMessage() {}
  887. func (x *BlkIOEntry) ProtoReflect() protoreflect.Message {
  888. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[10]
  889. if protoimpl.UnsafeEnabled && x != nil {
  890. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  891. if ms.LoadMessageInfo() == nil {
  892. ms.StoreMessageInfo(mi)
  893. }
  894. return ms
  895. }
  896. return mi.MessageOf(x)
  897. }
  898. // Deprecated: Use BlkIOEntry.ProtoReflect.Descriptor instead.
  899. func (*BlkIOEntry) Descriptor() ([]byte, []int) {
  900. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{10}
  901. }
  902. func (x *BlkIOEntry) GetOp() string {
  903. if x != nil {
  904. return x.Op
  905. }
  906. return ""
  907. }
  908. func (x *BlkIOEntry) GetDevice() string {
  909. if x != nil {
  910. return x.Device
  911. }
  912. return ""
  913. }
  914. func (x *BlkIOEntry) GetMajor() uint64 {
  915. if x != nil {
  916. return x.Major
  917. }
  918. return 0
  919. }
  920. func (x *BlkIOEntry) GetMinor() uint64 {
  921. if x != nil {
  922. return x.Minor
  923. }
  924. return 0
  925. }
  926. func (x *BlkIOEntry) GetValue() uint64 {
  927. if x != nil {
  928. return x.Value
  929. }
  930. return 0
  931. }
  932. type RdmaStat struct {
  933. state protoimpl.MessageState
  934. sizeCache protoimpl.SizeCache
  935. unknownFields protoimpl.UnknownFields
  936. Current []*RdmaEntry `protobuf:"bytes,1,rep,name=current,proto3" json:"current,omitempty"`
  937. Limit []*RdmaEntry `protobuf:"bytes,2,rep,name=limit,proto3" json:"limit,omitempty"`
  938. }
  939. func (x *RdmaStat) Reset() {
  940. *x = RdmaStat{}
  941. if protoimpl.UnsafeEnabled {
  942. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[11]
  943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  944. ms.StoreMessageInfo(mi)
  945. }
  946. }
  947. func (x *RdmaStat) String() string {
  948. return protoimpl.X.MessageStringOf(x)
  949. }
  950. func (*RdmaStat) ProtoMessage() {}
  951. func (x *RdmaStat) ProtoReflect() protoreflect.Message {
  952. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[11]
  953. if protoimpl.UnsafeEnabled && x != nil {
  954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  955. if ms.LoadMessageInfo() == nil {
  956. ms.StoreMessageInfo(mi)
  957. }
  958. return ms
  959. }
  960. return mi.MessageOf(x)
  961. }
  962. // Deprecated: Use RdmaStat.ProtoReflect.Descriptor instead.
  963. func (*RdmaStat) Descriptor() ([]byte, []int) {
  964. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{11}
  965. }
  966. func (x *RdmaStat) GetCurrent() []*RdmaEntry {
  967. if x != nil {
  968. return x.Current
  969. }
  970. return nil
  971. }
  972. func (x *RdmaStat) GetLimit() []*RdmaEntry {
  973. if x != nil {
  974. return x.Limit
  975. }
  976. return nil
  977. }
  978. type RdmaEntry struct {
  979. state protoimpl.MessageState
  980. sizeCache protoimpl.SizeCache
  981. unknownFields protoimpl.UnknownFields
  982. Device string `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
  983. HcaHandles uint32 `protobuf:"varint,2,opt,name=hca_handles,json=hcaHandles,proto3" json:"hca_handles,omitempty"`
  984. HcaObjects uint32 `protobuf:"varint,3,opt,name=hca_objects,json=hcaObjects,proto3" json:"hca_objects,omitempty"`
  985. }
  986. func (x *RdmaEntry) Reset() {
  987. *x = RdmaEntry{}
  988. if protoimpl.UnsafeEnabled {
  989. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[12]
  990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  991. ms.StoreMessageInfo(mi)
  992. }
  993. }
  994. func (x *RdmaEntry) String() string {
  995. return protoimpl.X.MessageStringOf(x)
  996. }
  997. func (*RdmaEntry) ProtoMessage() {}
  998. func (x *RdmaEntry) ProtoReflect() protoreflect.Message {
  999. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[12]
  1000. if protoimpl.UnsafeEnabled && x != nil {
  1001. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1002. if ms.LoadMessageInfo() == nil {
  1003. ms.StoreMessageInfo(mi)
  1004. }
  1005. return ms
  1006. }
  1007. return mi.MessageOf(x)
  1008. }
  1009. // Deprecated: Use RdmaEntry.ProtoReflect.Descriptor instead.
  1010. func (*RdmaEntry) Descriptor() ([]byte, []int) {
  1011. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{12}
  1012. }
  1013. func (x *RdmaEntry) GetDevice() string {
  1014. if x != nil {
  1015. return x.Device
  1016. }
  1017. return ""
  1018. }
  1019. func (x *RdmaEntry) GetHcaHandles() uint32 {
  1020. if x != nil {
  1021. return x.HcaHandles
  1022. }
  1023. return 0
  1024. }
  1025. func (x *RdmaEntry) GetHcaObjects() uint32 {
  1026. if x != nil {
  1027. return x.HcaObjects
  1028. }
  1029. return 0
  1030. }
  1031. type NetworkStat struct {
  1032. state protoimpl.MessageState
  1033. sizeCache protoimpl.SizeCache
  1034. unknownFields protoimpl.UnknownFields
  1035. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1036. RxBytes uint64 `protobuf:"varint,2,opt,name=rx_bytes,json=rxBytes,proto3" json:"rx_bytes,omitempty"`
  1037. RxPackets uint64 `protobuf:"varint,3,opt,name=rx_packets,json=rxPackets,proto3" json:"rx_packets,omitempty"`
  1038. RxErrors uint64 `protobuf:"varint,4,opt,name=rx_errors,json=rxErrors,proto3" json:"rx_errors,omitempty"`
  1039. RxDropped uint64 `protobuf:"varint,5,opt,name=rx_dropped,json=rxDropped,proto3" json:"rx_dropped,omitempty"`
  1040. TxBytes uint64 `protobuf:"varint,6,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"`
  1041. TxPackets uint64 `protobuf:"varint,7,opt,name=tx_packets,json=txPackets,proto3" json:"tx_packets,omitempty"`
  1042. TxErrors uint64 `protobuf:"varint,8,opt,name=tx_errors,json=txErrors,proto3" json:"tx_errors,omitempty"`
  1043. TxDropped uint64 `protobuf:"varint,9,opt,name=tx_dropped,json=txDropped,proto3" json:"tx_dropped,omitempty"`
  1044. }
  1045. func (x *NetworkStat) Reset() {
  1046. *x = NetworkStat{}
  1047. if protoimpl.UnsafeEnabled {
  1048. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[13]
  1049. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1050. ms.StoreMessageInfo(mi)
  1051. }
  1052. }
  1053. func (x *NetworkStat) String() string {
  1054. return protoimpl.X.MessageStringOf(x)
  1055. }
  1056. func (*NetworkStat) ProtoMessage() {}
  1057. func (x *NetworkStat) ProtoReflect() protoreflect.Message {
  1058. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[13]
  1059. if protoimpl.UnsafeEnabled && x != nil {
  1060. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1061. if ms.LoadMessageInfo() == nil {
  1062. ms.StoreMessageInfo(mi)
  1063. }
  1064. return ms
  1065. }
  1066. return mi.MessageOf(x)
  1067. }
  1068. // Deprecated: Use NetworkStat.ProtoReflect.Descriptor instead.
  1069. func (*NetworkStat) Descriptor() ([]byte, []int) {
  1070. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{13}
  1071. }
  1072. func (x *NetworkStat) GetName() string {
  1073. if x != nil {
  1074. return x.Name
  1075. }
  1076. return ""
  1077. }
  1078. func (x *NetworkStat) GetRxBytes() uint64 {
  1079. if x != nil {
  1080. return x.RxBytes
  1081. }
  1082. return 0
  1083. }
  1084. func (x *NetworkStat) GetRxPackets() uint64 {
  1085. if x != nil {
  1086. return x.RxPackets
  1087. }
  1088. return 0
  1089. }
  1090. func (x *NetworkStat) GetRxErrors() uint64 {
  1091. if x != nil {
  1092. return x.RxErrors
  1093. }
  1094. return 0
  1095. }
  1096. func (x *NetworkStat) GetRxDropped() uint64 {
  1097. if x != nil {
  1098. return x.RxDropped
  1099. }
  1100. return 0
  1101. }
  1102. func (x *NetworkStat) GetTxBytes() uint64 {
  1103. if x != nil {
  1104. return x.TxBytes
  1105. }
  1106. return 0
  1107. }
  1108. func (x *NetworkStat) GetTxPackets() uint64 {
  1109. if x != nil {
  1110. return x.TxPackets
  1111. }
  1112. return 0
  1113. }
  1114. func (x *NetworkStat) GetTxErrors() uint64 {
  1115. if x != nil {
  1116. return x.TxErrors
  1117. }
  1118. return 0
  1119. }
  1120. func (x *NetworkStat) GetTxDropped() uint64 {
  1121. if x != nil {
  1122. return x.TxDropped
  1123. }
  1124. return 0
  1125. }
  1126. // CgroupStats exports per-cgroup statistics.
  1127. type CgroupStats struct {
  1128. state protoimpl.MessageState
  1129. sizeCache protoimpl.SizeCache
  1130. unknownFields protoimpl.UnknownFields
  1131. // number of tasks sleeping
  1132. NrSleeping uint64 `protobuf:"varint,1,opt,name=nr_sleeping,json=nrSleeping,proto3" json:"nr_sleeping,omitempty"`
  1133. // number of tasks running
  1134. NrRunning uint64 `protobuf:"varint,2,opt,name=nr_running,json=nrRunning,proto3" json:"nr_running,omitempty"`
  1135. // number of tasks in stopped state
  1136. NrStopped uint64 `protobuf:"varint,3,opt,name=nr_stopped,json=nrStopped,proto3" json:"nr_stopped,omitempty"`
  1137. // number of tasks in uninterruptible state
  1138. NrUninterruptible uint64 `protobuf:"varint,4,opt,name=nr_uninterruptible,json=nrUninterruptible,proto3" json:"nr_uninterruptible,omitempty"`
  1139. // number of tasks waiting on IO
  1140. NrIoWait uint64 `protobuf:"varint,5,opt,name=nr_io_wait,json=nrIoWait,proto3" json:"nr_io_wait,omitempty"`
  1141. }
  1142. func (x *CgroupStats) Reset() {
  1143. *x = CgroupStats{}
  1144. if protoimpl.UnsafeEnabled {
  1145. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[14]
  1146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1147. ms.StoreMessageInfo(mi)
  1148. }
  1149. }
  1150. func (x *CgroupStats) String() string {
  1151. return protoimpl.X.MessageStringOf(x)
  1152. }
  1153. func (*CgroupStats) ProtoMessage() {}
  1154. func (x *CgroupStats) ProtoReflect() protoreflect.Message {
  1155. mi := &file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[14]
  1156. if protoimpl.UnsafeEnabled && x != nil {
  1157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1158. if ms.LoadMessageInfo() == nil {
  1159. ms.StoreMessageInfo(mi)
  1160. }
  1161. return ms
  1162. }
  1163. return mi.MessageOf(x)
  1164. }
  1165. // Deprecated: Use CgroupStats.ProtoReflect.Descriptor instead.
  1166. func (*CgroupStats) Descriptor() ([]byte, []int) {
  1167. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP(), []int{14}
  1168. }
  1169. func (x *CgroupStats) GetNrSleeping() uint64 {
  1170. if x != nil {
  1171. return x.NrSleeping
  1172. }
  1173. return 0
  1174. }
  1175. func (x *CgroupStats) GetNrRunning() uint64 {
  1176. if x != nil {
  1177. return x.NrRunning
  1178. }
  1179. return 0
  1180. }
  1181. func (x *CgroupStats) GetNrStopped() uint64 {
  1182. if x != nil {
  1183. return x.NrStopped
  1184. }
  1185. return 0
  1186. }
  1187. func (x *CgroupStats) GetNrUninterruptible() uint64 {
  1188. if x != nil {
  1189. return x.NrUninterruptible
  1190. }
  1191. return 0
  1192. }
  1193. func (x *CgroupStats) GetNrIoWait() uint64 {
  1194. if x != nil {
  1195. return x.NrIoWait
  1196. }
  1197. return 0
  1198. }
  1199. var File_github_com_containerd_cgroups_cgroup1_stats_metrics_proto protoreflect.FileDescriptor
  1200. var file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDesc = []byte{
  1201. 0x0a, 0x39, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x6e,
  1202. 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2f, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f,
  1203. 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2f, 0x6d, 0x65,
  1204. 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x69, 0x6f, 0x2e,
  1205. 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75,
  1206. 0x70, 0x73, 0x2e, 0x76, 0x31, 0x22, 0xcd, 0x04, 0x0a, 0x07, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
  1207. 0x73, 0x12, 0x3f, 0x0a, 0x07, 0x68, 0x75, 0x67, 0x65, 0x74, 0x6c, 0x62, 0x18, 0x01, 0x20, 0x03,
  1208. 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
  1209. 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x75,
  1210. 0x67, 0x65, 0x74, 0x6c, 0x62, 0x53, 0x74, 0x61, 0x74, 0x52, 0x07, 0x68, 0x75, 0x67, 0x65, 0x74,
  1211. 0x6c, 0x62, 0x12, 0x36, 0x0a, 0x04, 0x70, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  1212. 0x32, 0x22, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64,
  1213. 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x69, 0x64, 0x73,
  1214. 0x53, 0x74, 0x61, 0x74, 0x52, 0x04, 0x70, 0x69, 0x64, 0x73, 0x12, 0x33, 0x0a, 0x03, 0x63, 0x70,
  1215. 0x75, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e,
  1216. 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e,
  1217. 0x76, 0x31, 0x2e, 0x43, 0x50, 0x55, 0x53, 0x74, 0x61, 0x74, 0x52, 0x03, 0x63, 0x70, 0x75, 0x12,
  1218. 0x3c, 0x0a, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1219. 0x24, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e,
  1220. 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x72,
  1221. 0x79, 0x53, 0x74, 0x61, 0x74, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x12, 0x39, 0x0a,
  1222. 0x05, 0x62, 0x6c, 0x6b, 0x69, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x69,
  1223. 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72,
  1224. 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x53, 0x74, 0x61,
  1225. 0x74, 0x52, 0x05, 0x62, 0x6c, 0x6b, 0x69, 0x6f, 0x12, 0x36, 0x0a, 0x04, 0x72, 0x64, 0x6d, 0x61,
  1226. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
  1227. 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76,
  1228. 0x31, 0x2e, 0x52, 0x64, 0x6d, 0x61, 0x53, 0x74, 0x61, 0x74, 0x52, 0x04, 0x72, 0x64, 0x6d, 0x61,
  1229. 0x12, 0x3f, 0x0a, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x03, 0x28,
  1230. 0x0b, 0x32, 0x25, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72,
  1231. 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74,
  1232. 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
  1233. 0x6b, 0x12, 0x48, 0x0a, 0x0c, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x74,
  1234. 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e,
  1235. 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e,
  1236. 0x76, 0x31, 0x2e, 0x43, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x0b,
  1237. 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x58, 0x0a, 0x12, 0x6d,
  1238. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6f, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
  1239. 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e,
  1240. 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e,
  1241. 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x4f, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x74,
  1242. 0x72, 0x6f, 0x6c, 0x52, 0x10, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x4f, 0x6f, 0x6d, 0x43, 0x6f,
  1243. 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x22, 0x6b, 0x0a, 0x0b, 0x48, 0x75, 0x67, 0x65, 0x74, 0x6c, 0x62,
  1244. 0x53, 0x74, 0x61, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20,
  1245. 0x01, 0x28, 0x04, 0x52, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x61,
  1246. 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x6d, 0x61, 0x78, 0x12, 0x18, 0x0a, 0x07,
  1247. 0x66, 0x61, 0x69, 0x6c, 0x63, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66,
  1248. 0x61, 0x69, 0x6c, 0x63, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x73, 0x69,
  1249. 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x73, 0x69,
  1250. 0x7a, 0x65, 0x22, 0x3a, 0x0a, 0x08, 0x50, 0x69, 0x64, 0x73, 0x53, 0x74, 0x61, 0x74, 0x12, 0x18,
  1251. 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
  1252. 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69,
  1253. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x87,
  1254. 0x01, 0x0a, 0x07, 0x43, 0x50, 0x55, 0x53, 0x74, 0x61, 0x74, 0x12, 0x38, 0x0a, 0x05, 0x75, 0x73,
  1255. 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x69, 0x6f, 0x2e, 0x63,
  1256. 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70,
  1257. 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x50, 0x55, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x75,
  1258. 0x73, 0x61, 0x67, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x69,
  1259. 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f,
  1260. 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73,
  1261. 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x0a, 0x74, 0x68,
  1262. 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x69, 0x6e, 0x67, 0x22, 0x65, 0x0a, 0x08, 0x43, 0x50, 0x55, 0x55,
  1263. 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20,
  1264. 0x01, 0x28, 0x04, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6b, 0x65,
  1265. 0x72, 0x6e, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6b, 0x65, 0x72, 0x6e,
  1266. 0x65, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  1267. 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x70,
  1268. 0x75, 0x18, 0x04, 0x20, 0x03, 0x28, 0x04, 0x52, 0x06, 0x70, 0x65, 0x72, 0x43, 0x70, 0x75, 0x22,
  1269. 0x78, 0x0a, 0x08, 0x54, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70,
  1270. 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x70, 0x65,
  1271. 0x72, 0x69, 0x6f, 0x64, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c,
  1272. 0x65, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  1273. 0x52, 0x10, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x50, 0x65, 0x72, 0x69, 0x6f,
  1274. 0x64, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x74, 0x68, 0x72, 0x6f, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x5f,
  1275. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x74, 0x68, 0x72, 0x6f,
  1276. 0x74, 0x74, 0x6c, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x94, 0x0b, 0x0a, 0x0a, 0x4d, 0x65,
  1277. 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x61, 0x63, 0x68,
  1278. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x63, 0x61, 0x63, 0x68, 0x65, 0x12, 0x10,
  1279. 0x0a, 0x03, 0x72, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x72, 0x73, 0x73,
  1280. 0x12, 0x19, 0x0a, 0x08, 0x72, 0x73, 0x73, 0x5f, 0x68, 0x75, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01,
  1281. 0x28, 0x04, 0x52, 0x07, 0x72, 0x73, 0x73, 0x48, 0x75, 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6d,
  1282. 0x61, 0x70, 0x70, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  1283. 0x52, 0x0a, 0x6d, 0x61, 0x70, 0x70, 0x65, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x14, 0x0a, 0x05,
  1284. 0x64, 0x69, 0x72, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x64, 0x69, 0x72,
  1285. 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x77, 0x72, 0x69, 0x74, 0x65, 0x62, 0x61, 0x63, 0x6b, 0x18,
  1286. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x77, 0x72, 0x69, 0x74, 0x65, 0x62, 0x61, 0x63, 0x6b,
  1287. 0x12, 0x18, 0x0a, 0x08, 0x70, 0x67, 0x5f, 0x70, 0x67, 0x5f, 0x69, 0x6e, 0x18, 0x07, 0x20, 0x01,
  1288. 0x28, 0x04, 0x52, 0x06, 0x70, 0x67, 0x50, 0x67, 0x49, 0x6e, 0x12, 0x1a, 0x0a, 0x09, 0x70, 0x67,
  1289. 0x5f, 0x70, 0x67, 0x5f, 0x6f, 0x75, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x70,
  1290. 0x67, 0x50, 0x67, 0x4f, 0x75, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x67, 0x5f, 0x66, 0x61, 0x75,
  1291. 0x6c, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x70, 0x67, 0x46, 0x61, 0x75, 0x6c,
  1292. 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x67, 0x5f, 0x6d, 0x61, 0x6a, 0x5f, 0x66, 0x61, 0x75, 0x6c,
  1293. 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x70, 0x67, 0x4d, 0x61, 0x6a, 0x46, 0x61,
  1294. 0x75, 0x6c, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f,
  1295. 0x61, 0x6e, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x69, 0x6e, 0x61, 0x63,
  1296. 0x74, 0x69, 0x76, 0x65, 0x41, 0x6e, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69,
  1297. 0x76, 0x65, 0x5f, 0x61, 0x6e, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61,
  1298. 0x63, 0x74, 0x69, 0x76, 0x65, 0x41, 0x6e, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x61,
  1299. 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04,
  1300. 0x52, 0x0c, 0x69, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1f,
  1301. 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x0e, 0x20,
  1302. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12,
  1303. 0x20, 0x0a, 0x0b, 0x75, 0x6e, 0x65, 0x76, 0x69, 0x63, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x0f,
  1304. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x75, 0x6e, 0x65, 0x76, 0x69, 0x63, 0x74, 0x61, 0x62, 0x6c,
  1305. 0x65, 0x12, 0x3a, 0x0a, 0x19, 0x68, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x69, 0x63, 0x61,
  1306. 0x6c, 0x5f, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x10,
  1307. 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x68, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x69, 0x63,
  1308. 0x61, 0x6c, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x36, 0x0a,
  1309. 0x17, 0x68, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x77,
  1310. 0x61, 0x70, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15,
  1311. 0x68, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x69, 0x63, 0x61, 0x6c, 0x53, 0x77, 0x61, 0x70,
  1312. 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63,
  1313. 0x61, 0x63, 0x68, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61,
  1314. 0x6c, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
  1315. 0x72, 0x73, 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  1316. 0x52, 0x73, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x73, 0x73,
  1317. 0x5f, 0x68, 0x75, 0x67, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x74, 0x6f, 0x74,
  1318. 0x61, 0x6c, 0x52, 0x73, 0x73, 0x48, 0x75, 0x67, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x74, 0x6f, 0x74,
  1319. 0x61, 0x6c, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x15,
  1320. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x4d, 0x61, 0x70, 0x70, 0x65,
  1321. 0x64, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64,
  1322. 0x69, 0x72, 0x74, 0x79, 0x18, 0x16, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61,
  1323. 0x6c, 0x44, 0x69, 0x72, 0x74, 0x79, 0x12, 0x27, 0x0a, 0x0f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
  1324. 0x77, 0x72, 0x69, 0x74, 0x65, 0x62, 0x61, 0x63, 0x6b, 0x18, 0x17, 0x20, 0x01, 0x28, 0x04, 0x52,
  1325. 0x0e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x57, 0x72, 0x69, 0x74, 0x65, 0x62, 0x61, 0x63, 0x6b, 0x12,
  1326. 0x23, 0x0a, 0x0e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x67, 0x5f, 0x70, 0x67, 0x5f, 0x69,
  1327. 0x6e, 0x18, 0x18, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x67,
  1328. 0x50, 0x67, 0x49, 0x6e, 0x12, 0x25, 0x0a, 0x0f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x67,
  1329. 0x5f, 0x70, 0x67, 0x5f, 0x6f, 0x75, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x74,
  1330. 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x67, 0x50, 0x67, 0x4f, 0x75, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x74,
  1331. 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x67, 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18, 0x1a, 0x20,
  1332. 0x01, 0x28, 0x04, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x67, 0x46, 0x61, 0x75, 0x6c,
  1333. 0x74, 0x12, 0x2b, 0x0a, 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x67, 0x5f, 0x6d, 0x61,
  1334. 0x6a, 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x74,
  1335. 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x67, 0x4d, 0x61, 0x6a, 0x46, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x2e,
  1336. 0x0a, 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
  1337. 0x5f, 0x61, 0x6e, 0x6f, 0x6e, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x74, 0x6f, 0x74,
  1338. 0x61, 0x6c, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x41, 0x6e, 0x6f, 0x6e, 0x12, 0x2a,
  1339. 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x61,
  1340. 0x6e, 0x6f, 0x6e, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  1341. 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x41, 0x6e, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x74, 0x6f,
  1342. 0x74, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x69, 0x6c,
  1343. 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x49, 0x6e,
  1344. 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x74, 0x6f,
  1345. 0x74, 0x61, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18,
  1346. 0x1f, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x63, 0x74, 0x69,
  1347. 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
  1348. 0x75, 0x6e, 0x65, 0x76, 0x69, 0x63, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x20, 0x20, 0x01, 0x28,
  1349. 0x04, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x55, 0x6e, 0x65, 0x76, 0x69, 0x63, 0x74, 0x61,
  1350. 0x62, 0x6c, 0x65, 0x12, 0x3b, 0x0a, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x21, 0x20, 0x01,
  1351. 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
  1352. 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65,
  1353. 0x6d, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65,
  1354. 0x12, 0x39, 0x0a, 0x04, 0x73, 0x77, 0x61, 0x70, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25,
  1355. 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63,
  1356. 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
  1357. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x73, 0x77, 0x61, 0x70, 0x12, 0x3d, 0x0a, 0x06, 0x6b,
  1358. 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x69, 0x6f,
  1359. 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f,
  1360. 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x74,
  1361. 0x72, 0x79, 0x52, 0x06, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x12, 0x44, 0x0a, 0x0a, 0x6b, 0x65,
  1362. 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x63, 0x70, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25,
  1363. 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63,
  1364. 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
  1365. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x54, 0x63, 0x70,
  1366. 0x22, 0x65, 0x0a, 0x0b, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  1367. 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05,
  1368. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
  1369. 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  1370. 0x61, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x6d, 0x61, 0x78, 0x12, 0x18, 0x0a,
  1371. 0x07, 0x66, 0x61, 0x69, 0x6c, 0x63, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
  1372. 0x66, 0x61, 0x69, 0x6c, 0x63, 0x6e, 0x74, 0x22, 0x74, 0x0a, 0x10, 0x4d, 0x65, 0x6d, 0x6f, 0x72,
  1373. 0x79, 0x4f, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x6f,
  1374. 0x6f, 0x6d, 0x5f, 0x6b, 0x69, 0x6c, 0x6c, 0x5f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18,
  1375. 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6f, 0x6f, 0x6d, 0x4b, 0x69, 0x6c, 0x6c, 0x44, 0x69,
  1376. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x6f,
  1377. 0x6f, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x4f,
  1378. 0x6f, 0x6d, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x6f, 0x6d, 0x5f, 0x6b, 0x69, 0x6c, 0x6c, 0x18, 0x03,
  1379. 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x6f, 0x6f, 0x6d, 0x4b, 0x69, 0x6c, 0x6c, 0x22, 0xd5, 0x05,
  1380. 0x0a, 0x09, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x53, 0x74, 0x61, 0x74, 0x12, 0x61, 0x0a, 0x1a, 0x69,
  1381. 0x6f, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f,
  1382. 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1383. 0x24, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e,
  1384. 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f,
  1385. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x17, 0x69, 0x6f, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
  1386. 0x42, 0x79, 0x74, 0x65, 0x73, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x58,
  1387. 0x0a, 0x15, 0x69, 0x6f, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x64, 0x5f, 0x72, 0x65,
  1388. 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,
  1389. 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67,
  1390. 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x45, 0x6e,
  1391. 0x74, 0x72, 0x79, 0x52, 0x13, 0x69, 0x6f, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x64, 0x52,
  1392. 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x54, 0x0a, 0x13, 0x69, 0x6f, 0x5f, 0x71,
  1393. 0x75, 0x65, 0x75, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18,
  1394. 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61,
  1395. 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31,
  1396. 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x69, 0x6f, 0x51,
  1397. 0x75, 0x65, 0x75, 0x65, 0x64, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x5f,
  1398. 0x0a, 0x19, 0x69, 0x6f, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  1399. 0x65, 0x5f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28,
  1400. 0x0b, 0x32, 0x24, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72,
  1401. 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b,
  1402. 0x49, 0x4f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x16, 0x69, 0x6f, 0x53, 0x65, 0x72, 0x76, 0x69,
  1403. 0x63, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12,
  1404. 0x59, 0x0a, 0x16, 0x69, 0x6f, 0x5f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f,
  1405. 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1406. 0x24, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e,
  1407. 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f,
  1408. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x69, 0x6f, 0x57, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d,
  1409. 0x65, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12, 0x54, 0x0a, 0x13, 0x69, 0x6f,
  1410. 0x5f, 0x6d, 0x65, 0x72, 0x67, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76,
  1411. 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e,
  1412. 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e,
  1413. 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x69,
  1414. 0x6f, 0x4d, 0x65, 0x72, 0x67, 0x65, 0x64, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65,
  1415. 0x12, 0x50, 0x0a, 0x11, 0x69, 0x6f, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x75,
  1416. 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x69, 0x6f,
  1417. 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f,
  1418. 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x45, 0x6e, 0x74, 0x72,
  1419. 0x79, 0x52, 0x0f, 0x69, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69,
  1420. 0x76, 0x65, 0x12, 0x51, 0x0a, 0x11, 0x73, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x5f, 0x72, 0x65,
  1421. 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,
  1422. 0x69, 0x6f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67,
  1423. 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x45, 0x6e,
  1424. 0x74, 0x72, 0x79, 0x52, 0x10, 0x73, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x63, 0x75,
  1425. 0x72, 0x73, 0x69, 0x76, 0x65, 0x22, 0x76, 0x0a, 0x0a, 0x42, 0x6c, 0x6b, 0x49, 0x4f, 0x45, 0x6e,
  1426. 0x74, 0x72, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1427. 0x02, 0x6f, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20,
  1428. 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6d,
  1429. 0x61, 0x6a, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6d, 0x61, 0x6a, 0x6f,
  1430. 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  1431. 0x52, 0x05, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1432. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x84, 0x01,
  1433. 0x0a, 0x08, 0x52, 0x64, 0x6d, 0x61, 0x53, 0x74, 0x61, 0x74, 0x12, 0x3d, 0x0a, 0x07, 0x63, 0x75,
  1434. 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x69, 0x6f,
  1435. 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f,
  1436. 0x75, 0x70, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x64, 0x6d, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1437. 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x39, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
  1438. 0x69, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x69, 0x6f, 0x2e, 0x63, 0x6f,
  1439. 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73,
  1440. 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x64, 0x6d, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x6c,
  1441. 0x69, 0x6d, 0x69, 0x74, 0x22, 0x65, 0x0a, 0x09, 0x52, 0x64, 0x6d, 0x61, 0x45, 0x6e, 0x74, 0x72,
  1442. 0x79, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  1443. 0x09, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x68, 0x63, 0x61,
  1444. 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a,
  1445. 0x68, 0x63, 0x61, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x68, 0x63,
  1446. 0x61, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
  1447. 0x0a, 0x68, 0x63, 0x61, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x22, 0x8d, 0x02, 0x0a, 0x0b,
  1448. 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  1449. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1450. 0x19, 0x0a, 0x08, 0x72, 0x78, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  1451. 0x04, 0x52, 0x07, 0x72, 0x78, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x78,
  1452. 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
  1453. 0x72, 0x78, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x78, 0x5f,
  1454. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x72, 0x78,
  1455. 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x78, 0x5f, 0x64, 0x72, 0x6f,
  1456. 0x70, 0x70, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x72, 0x78, 0x44, 0x72,
  1457. 0x6f, 0x70, 0x70, 0x65, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x78, 0x5f, 0x62, 0x79, 0x74, 0x65,
  1458. 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x74, 0x78, 0x42, 0x79, 0x74, 0x65, 0x73,
  1459. 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x78, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x18, 0x07,
  1460. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x74, 0x78, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12,
  1461. 0x1b, 0x0a, 0x09, 0x74, 0x78, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x08, 0x20, 0x01,
  1462. 0x28, 0x04, 0x52, 0x08, 0x74, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 0x1d, 0x0a, 0x0a,
  1463. 0x74, 0x78, 0x5f, 0x64, 0x72, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04,
  1464. 0x52, 0x09, 0x74, 0x78, 0x44, 0x72, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x22, 0xb9, 0x01, 0x0a, 0x0b,
  1465. 0x43, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e,
  1466. 0x72, 0x5f, 0x73, 0x6c, 0x65, 0x65, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
  1467. 0x52, 0x0a, 0x6e, 0x72, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x0a, 0x0a,
  1468. 0x6e, 0x72, 0x5f, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  1469. 0x52, 0x09, 0x6e, 0x72, 0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x6e,
  1470. 0x72, 0x5f, 0x73, 0x74, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  1471. 0x09, 0x6e, 0x72, 0x53, 0x74, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x12, 0x2d, 0x0a, 0x12, 0x6e, 0x72,
  1472. 0x5f, 0x75, 0x6e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x72, 0x75, 0x70, 0x74, 0x69, 0x62, 0x6c, 0x65,
  1473. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x6e, 0x72, 0x55, 0x6e, 0x69, 0x6e, 0x74, 0x65,
  1474. 0x72, 0x72, 0x75, 0x70, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x6e, 0x72, 0x5f,
  1475. 0x69, 0x6f, 0x5f, 0x77, 0x61, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e,
  1476. 0x72, 0x49, 0x6f, 0x57, 0x61, 0x69, 0x74, 0x42, 0x2d, 0x5a, 0x2b, 0x67, 0x69, 0x74, 0x68, 0x75,
  1477. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64,
  1478. 0x2f, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x63, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x31,
  1479. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1480. }
  1481. var (
  1482. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescOnce sync.Once
  1483. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescData = file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDesc
  1484. )
  1485. func file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescGZIP() []byte {
  1486. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescOnce.Do(func() {
  1487. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescData)
  1488. })
  1489. return file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDescData
  1490. }
  1491. var file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
  1492. var file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_goTypes = []interface{}{
  1493. (*Metrics)(nil), // 0: io.containerd.cgroups.v1.Metrics
  1494. (*HugetlbStat)(nil), // 1: io.containerd.cgroups.v1.HugetlbStat
  1495. (*PidsStat)(nil), // 2: io.containerd.cgroups.v1.PidsStat
  1496. (*CPUStat)(nil), // 3: io.containerd.cgroups.v1.CPUStat
  1497. (*CPUUsage)(nil), // 4: io.containerd.cgroups.v1.CPUUsage
  1498. (*Throttle)(nil), // 5: io.containerd.cgroups.v1.Throttle
  1499. (*MemoryStat)(nil), // 6: io.containerd.cgroups.v1.MemoryStat
  1500. (*MemoryEntry)(nil), // 7: io.containerd.cgroups.v1.MemoryEntry
  1501. (*MemoryOomControl)(nil), // 8: io.containerd.cgroups.v1.MemoryOomControl
  1502. (*BlkIOStat)(nil), // 9: io.containerd.cgroups.v1.BlkIOStat
  1503. (*BlkIOEntry)(nil), // 10: io.containerd.cgroups.v1.BlkIOEntry
  1504. (*RdmaStat)(nil), // 11: io.containerd.cgroups.v1.RdmaStat
  1505. (*RdmaEntry)(nil), // 12: io.containerd.cgroups.v1.RdmaEntry
  1506. (*NetworkStat)(nil), // 13: io.containerd.cgroups.v1.NetworkStat
  1507. (*CgroupStats)(nil), // 14: io.containerd.cgroups.v1.CgroupStats
  1508. }
  1509. var file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_depIdxs = []int32{
  1510. 1, // 0: io.containerd.cgroups.v1.Metrics.hugetlb:type_name -> io.containerd.cgroups.v1.HugetlbStat
  1511. 2, // 1: io.containerd.cgroups.v1.Metrics.pids:type_name -> io.containerd.cgroups.v1.PidsStat
  1512. 3, // 2: io.containerd.cgroups.v1.Metrics.cpu:type_name -> io.containerd.cgroups.v1.CPUStat
  1513. 6, // 3: io.containerd.cgroups.v1.Metrics.memory:type_name -> io.containerd.cgroups.v1.MemoryStat
  1514. 9, // 4: io.containerd.cgroups.v1.Metrics.blkio:type_name -> io.containerd.cgroups.v1.BlkIOStat
  1515. 11, // 5: io.containerd.cgroups.v1.Metrics.rdma:type_name -> io.containerd.cgroups.v1.RdmaStat
  1516. 13, // 6: io.containerd.cgroups.v1.Metrics.network:type_name -> io.containerd.cgroups.v1.NetworkStat
  1517. 14, // 7: io.containerd.cgroups.v1.Metrics.cgroup_stats:type_name -> io.containerd.cgroups.v1.CgroupStats
  1518. 8, // 8: io.containerd.cgroups.v1.Metrics.memory_oom_control:type_name -> io.containerd.cgroups.v1.MemoryOomControl
  1519. 4, // 9: io.containerd.cgroups.v1.CPUStat.usage:type_name -> io.containerd.cgroups.v1.CPUUsage
  1520. 5, // 10: io.containerd.cgroups.v1.CPUStat.throttling:type_name -> io.containerd.cgroups.v1.Throttle
  1521. 7, // 11: io.containerd.cgroups.v1.MemoryStat.usage:type_name -> io.containerd.cgroups.v1.MemoryEntry
  1522. 7, // 12: io.containerd.cgroups.v1.MemoryStat.swap:type_name -> io.containerd.cgroups.v1.MemoryEntry
  1523. 7, // 13: io.containerd.cgroups.v1.MemoryStat.kernel:type_name -> io.containerd.cgroups.v1.MemoryEntry
  1524. 7, // 14: io.containerd.cgroups.v1.MemoryStat.kernel_tcp:type_name -> io.containerd.cgroups.v1.MemoryEntry
  1525. 10, // 15: io.containerd.cgroups.v1.BlkIOStat.io_service_bytes_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1526. 10, // 16: io.containerd.cgroups.v1.BlkIOStat.io_serviced_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1527. 10, // 17: io.containerd.cgroups.v1.BlkIOStat.io_queued_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1528. 10, // 18: io.containerd.cgroups.v1.BlkIOStat.io_service_time_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1529. 10, // 19: io.containerd.cgroups.v1.BlkIOStat.io_wait_time_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1530. 10, // 20: io.containerd.cgroups.v1.BlkIOStat.io_merged_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1531. 10, // 21: io.containerd.cgroups.v1.BlkIOStat.io_time_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1532. 10, // 22: io.containerd.cgroups.v1.BlkIOStat.sectors_recursive:type_name -> io.containerd.cgroups.v1.BlkIOEntry
  1533. 12, // 23: io.containerd.cgroups.v1.RdmaStat.current:type_name -> io.containerd.cgroups.v1.RdmaEntry
  1534. 12, // 24: io.containerd.cgroups.v1.RdmaStat.limit:type_name -> io.containerd.cgroups.v1.RdmaEntry
  1535. 25, // [25:25] is the sub-list for method output_type
  1536. 25, // [25:25] is the sub-list for method input_type
  1537. 25, // [25:25] is the sub-list for extension type_name
  1538. 25, // [25:25] is the sub-list for extension extendee
  1539. 0, // [0:25] is the sub-list for field type_name
  1540. }
  1541. func init() { file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_init() }
  1542. func file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_init() {
  1543. if File_github_com_containerd_cgroups_cgroup1_stats_metrics_proto != nil {
  1544. return
  1545. }
  1546. if !protoimpl.UnsafeEnabled {
  1547. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1548. switch v := v.(*Metrics); i {
  1549. case 0:
  1550. return &v.state
  1551. case 1:
  1552. return &v.sizeCache
  1553. case 2:
  1554. return &v.unknownFields
  1555. default:
  1556. return nil
  1557. }
  1558. }
  1559. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1560. switch v := v.(*HugetlbStat); i {
  1561. case 0:
  1562. return &v.state
  1563. case 1:
  1564. return &v.sizeCache
  1565. case 2:
  1566. return &v.unknownFields
  1567. default:
  1568. return nil
  1569. }
  1570. }
  1571. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1572. switch v := v.(*PidsStat); i {
  1573. case 0:
  1574. return &v.state
  1575. case 1:
  1576. return &v.sizeCache
  1577. case 2:
  1578. return &v.unknownFields
  1579. default:
  1580. return nil
  1581. }
  1582. }
  1583. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1584. switch v := v.(*CPUStat); i {
  1585. case 0:
  1586. return &v.state
  1587. case 1:
  1588. return &v.sizeCache
  1589. case 2:
  1590. return &v.unknownFields
  1591. default:
  1592. return nil
  1593. }
  1594. }
  1595. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1596. switch v := v.(*CPUUsage); i {
  1597. case 0:
  1598. return &v.state
  1599. case 1:
  1600. return &v.sizeCache
  1601. case 2:
  1602. return &v.unknownFields
  1603. default:
  1604. return nil
  1605. }
  1606. }
  1607. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1608. switch v := v.(*Throttle); i {
  1609. case 0:
  1610. return &v.state
  1611. case 1:
  1612. return &v.sizeCache
  1613. case 2:
  1614. return &v.unknownFields
  1615. default:
  1616. return nil
  1617. }
  1618. }
  1619. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1620. switch v := v.(*MemoryStat); i {
  1621. case 0:
  1622. return &v.state
  1623. case 1:
  1624. return &v.sizeCache
  1625. case 2:
  1626. return &v.unknownFields
  1627. default:
  1628. return nil
  1629. }
  1630. }
  1631. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1632. switch v := v.(*MemoryEntry); i {
  1633. case 0:
  1634. return &v.state
  1635. case 1:
  1636. return &v.sizeCache
  1637. case 2:
  1638. return &v.unknownFields
  1639. default:
  1640. return nil
  1641. }
  1642. }
  1643. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1644. switch v := v.(*MemoryOomControl); i {
  1645. case 0:
  1646. return &v.state
  1647. case 1:
  1648. return &v.sizeCache
  1649. case 2:
  1650. return &v.unknownFields
  1651. default:
  1652. return nil
  1653. }
  1654. }
  1655. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1656. switch v := v.(*BlkIOStat); i {
  1657. case 0:
  1658. return &v.state
  1659. case 1:
  1660. return &v.sizeCache
  1661. case 2:
  1662. return &v.unknownFields
  1663. default:
  1664. return nil
  1665. }
  1666. }
  1667. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1668. switch v := v.(*BlkIOEntry); i {
  1669. case 0:
  1670. return &v.state
  1671. case 1:
  1672. return &v.sizeCache
  1673. case 2:
  1674. return &v.unknownFields
  1675. default:
  1676. return nil
  1677. }
  1678. }
  1679. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1680. switch v := v.(*RdmaStat); i {
  1681. case 0:
  1682. return &v.state
  1683. case 1:
  1684. return &v.sizeCache
  1685. case 2:
  1686. return &v.unknownFields
  1687. default:
  1688. return nil
  1689. }
  1690. }
  1691. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1692. switch v := v.(*RdmaEntry); i {
  1693. case 0:
  1694. return &v.state
  1695. case 1:
  1696. return &v.sizeCache
  1697. case 2:
  1698. return &v.unknownFields
  1699. default:
  1700. return nil
  1701. }
  1702. }
  1703. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1704. switch v := v.(*NetworkStat); i {
  1705. case 0:
  1706. return &v.state
  1707. case 1:
  1708. return &v.sizeCache
  1709. case 2:
  1710. return &v.unknownFields
  1711. default:
  1712. return nil
  1713. }
  1714. }
  1715. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1716. switch v := v.(*CgroupStats); i {
  1717. case 0:
  1718. return &v.state
  1719. case 1:
  1720. return &v.sizeCache
  1721. case 2:
  1722. return &v.unknownFields
  1723. default:
  1724. return nil
  1725. }
  1726. }
  1727. }
  1728. type x struct{}
  1729. out := protoimpl.TypeBuilder{
  1730. File: protoimpl.DescBuilder{
  1731. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1732. RawDescriptor: file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDesc,
  1733. NumEnums: 0,
  1734. NumMessages: 15,
  1735. NumExtensions: 0,
  1736. NumServices: 0,
  1737. },
  1738. GoTypes: file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_goTypes,
  1739. DependencyIndexes: file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_depIdxs,
  1740. MessageInfos: file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_msgTypes,
  1741. }.Build()
  1742. File_github_com_containerd_cgroups_cgroup1_stats_metrics_proto = out.File
  1743. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_rawDesc = nil
  1744. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_goTypes = nil
  1745. file_github_com_containerd_cgroups_cgroup1_stats_metrics_proto_depIdxs = nil
  1746. }