expected.yaml 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. resourceMetrics:
  2. - resource:
  3. attributes:
  4. - key: vcenter.cluster.name
  5. value:
  6. stringValue: Cluster
  7. scopeMetrics:
  8. - metrics:
  9. - description: The effective CPU available to the cluster. This value excludes CPU from hosts in maintenance mode or are unresponsive.
  10. name: vcenter.cluster.cpu.effective
  11. sum:
  12. aggregationTemporality: 2
  13. dataPoints:
  14. - asInt: "252846"
  15. startTimeUnixNano: "1000000"
  16. timeUnixNano: "2000000"
  17. unit: '{MHz}'
  18. - description: The amount of CPU available to the cluster.
  19. name: vcenter.cluster.cpu.limit
  20. sum:
  21. aggregationTemporality: 2
  22. dataPoints:
  23. - asInt: "280044"
  24. startTimeUnixNano: "1000000"
  25. timeUnixNano: "2000000"
  26. unit: '{MHz}'
  27. - description: The number of hosts in the cluster.
  28. name: vcenter.cluster.host.count
  29. sum:
  30. aggregationTemporality: 2
  31. dataPoints:
  32. - asInt: "0"
  33. attributes:
  34. - key: effective
  35. value:
  36. boolValue: false
  37. startTimeUnixNano: "1000000"
  38. timeUnixNano: "2000000"
  39. - asInt: "3"
  40. attributes:
  41. - key: effective
  42. value:
  43. boolValue: true
  44. startTimeUnixNano: "1000000"
  45. timeUnixNano: "2000000"
  46. unit: '{hosts}'
  47. - description: The effective memory of the cluster. This value excludes memory from hosts in maintenance mode or are unresponsive.
  48. name: vcenter.cluster.memory.effective
  49. sum:
  50. aggregationTemporality: 2
  51. dataPoints:
  52. - asInt: "2140347"
  53. startTimeUnixNano: "1000000"
  54. timeUnixNano: "2000000"
  55. unit: By
  56. - description: The available memory of the cluster.
  57. name: vcenter.cluster.memory.limit
  58. sum:
  59. aggregationTemporality: 2
  60. dataPoints:
  61. - asInt: "2468289376256"
  62. startTimeUnixNano: "1000000"
  63. timeUnixNano: "2000000"
  64. unit: By
  65. - description: the number of virtual machines in the cluster.
  66. name: vcenter.cluster.vm.count
  67. sum:
  68. aggregationTemporality: 2
  69. dataPoints:
  70. - asInt: "0"
  71. attributes:
  72. - key: power_state
  73. value:
  74. stringValue: "off"
  75. startTimeUnixNano: "1000000"
  76. timeUnixNano: "2000000"
  77. - asInt: "1"
  78. attributes:
  79. - key: power_state
  80. value:
  81. stringValue: "on"
  82. startTimeUnixNano: "1000000"
  83. timeUnixNano: "2000000"
  84. unit: '{virtual_machines}'
  85. scope:
  86. name: otelcol/vcenterreceiver
  87. version: latest
  88. - resource:
  89. attributes:
  90. - key: vcenter.cluster.name
  91. value:
  92. stringValue: Cluster
  93. - key: vcenter.datastore.name
  94. value:
  95. stringValue: vsanDatastore
  96. scopeMetrics:
  97. - metrics:
  98. - description: The amount of space in the datastore.
  99. name: vcenter.datastore.disk.usage
  100. sum:
  101. aggregationTemporality: 2
  102. dataPoints:
  103. - asInt: "51693551508648"
  104. attributes:
  105. - key: disk_state
  106. value:
  107. stringValue: available
  108. startTimeUnixNano: "1000000"
  109. timeUnixNano: "2000000"
  110. - asInt: "5917763748696"
  111. attributes:
  112. - key: disk_state
  113. value:
  114. stringValue: used
  115. startTimeUnixNano: "1000000"
  116. timeUnixNano: "2000000"
  117. unit: By
  118. - description: The utilization of the datastore.
  119. gauge:
  120. dataPoints:
  121. - asDouble: 10.271877533539964
  122. startTimeUnixNano: "1000000"
  123. timeUnixNano: "2000000"
  124. name: vcenter.datastore.disk.utilization
  125. unit: '%'
  126. scope:
  127. name: otelcol/vcenterreceiver
  128. version: latest
  129. - resource:
  130. attributes:
  131. - key: vcenter.cluster.name
  132. value:
  133. stringValue: Cluster
  134. - key: vcenter.host.name
  135. value:
  136. stringValue: esxi-27971.cf5e88ac.australia-southeast1.gve.goog
  137. scopeMetrics:
  138. - metrics:
  139. - description: The amount of CPU used by the host.
  140. name: vcenter.host.cpu.usage
  141. sum:
  142. aggregationTemporality: 2
  143. dataPoints:
  144. - asInt: "6107"
  145. startTimeUnixNano: "1000000"
  146. timeUnixNano: "2000000"
  147. unit: MHz
  148. - description: The CPU utilization of the host system.
  149. gauge:
  150. dataPoints:
  151. - asDouble: 6.542186227878476
  152. startTimeUnixNano: "1000000"
  153. timeUnixNano: "2000000"
  154. name: vcenter.host.cpu.utilization
  155. unit: '%'
  156. - description: The latency of operations to the host system's disk.
  157. gauge:
  158. dataPoints:
  159. - asInt: "781"
  160. attributes:
  161. - key: direction
  162. value:
  163. stringValue: read
  164. startTimeUnixNano: "6000000"
  165. timeUnixNano: "1000000"
  166. - asInt: "789"
  167. attributes:
  168. - key: direction
  169. value:
  170. stringValue: read
  171. startTimeUnixNano: "6000000"
  172. timeUnixNano: "2000000"
  173. - asInt: "645"
  174. attributes:
  175. - key: direction
  176. value:
  177. stringValue: read
  178. startTimeUnixNano: "6000000"
  179. timeUnixNano: "3000000"
  180. - asInt: "781"
  181. attributes:
  182. - key: direction
  183. value:
  184. stringValue: read
  185. startTimeUnixNano: "6000000"
  186. timeUnixNano: "4000000"
  187. - asInt: "782"
  188. attributes:
  189. - key: direction
  190. value:
  191. stringValue: read
  192. startTimeUnixNano: "6000000"
  193. timeUnixNano: "5000000"
  194. - asInt: "781"
  195. attributes:
  196. - key: direction
  197. value:
  198. stringValue: write
  199. startTimeUnixNano: "6000000"
  200. timeUnixNano: "1000000"
  201. - asInt: "789"
  202. attributes:
  203. - key: direction
  204. value:
  205. stringValue: write
  206. startTimeUnixNano: "6000000"
  207. timeUnixNano: "2000000"
  208. - asInt: "645"
  209. attributes:
  210. - key: direction
  211. value:
  212. stringValue: write
  213. startTimeUnixNano: "6000000"
  214. timeUnixNano: "3000000"
  215. - asInt: "781"
  216. attributes:
  217. - key: direction
  218. value:
  219. stringValue: write
  220. startTimeUnixNano: "6000000"
  221. timeUnixNano: "4000000"
  222. - asInt: "782"
  223. attributes:
  224. - key: direction
  225. value:
  226. stringValue: write
  227. startTimeUnixNano: "6000000"
  228. timeUnixNano: "5000000"
  229. name: vcenter.host.disk.latency.avg
  230. unit: ms
  231. - description: Highest latency value across all disks used by the host.
  232. gauge:
  233. dataPoints:
  234. - asInt: "899"
  235. startTimeUnixNano: "6000000"
  236. timeUnixNano: "1000000"
  237. - asInt: "899"
  238. startTimeUnixNano: "6000000"
  239. timeUnixNano: "2000000"
  240. - asInt: "905"
  241. startTimeUnixNano: "6000000"
  242. timeUnixNano: "3000000"
  243. - asInt: "1000"
  244. startTimeUnixNano: "6000000"
  245. timeUnixNano: "4000000"
  246. - asInt: "1002"
  247. startTimeUnixNano: "6000000"
  248. timeUnixNano: "5000000"
  249. name: vcenter.host.disk.latency.max
  250. unit: ms
  251. - description: Average number of kilobytes read from or written to the disk each second.
  252. name: vcenter.host.disk.throughput
  253. sum:
  254. aggregationTemporality: 2
  255. dataPoints:
  256. - asInt: "0"
  257. attributes:
  258. - key: direction
  259. value:
  260. stringValue: read
  261. startTimeUnixNano: "6000000"
  262. timeUnixNano: "1000000"
  263. - asInt: "0"
  264. attributes:
  265. - key: direction
  266. value:
  267. stringValue: read
  268. startTimeUnixNano: "6000000"
  269. timeUnixNano: "2000000"
  270. - asInt: "0"
  271. attributes:
  272. - key: direction
  273. value:
  274. stringValue: read
  275. startTimeUnixNano: "6000000"
  276. timeUnixNano: "3000000"
  277. - asInt: "2"
  278. attributes:
  279. - key: direction
  280. value:
  281. stringValue: read
  282. startTimeUnixNano: "6000000"
  283. timeUnixNano: "4000000"
  284. - asInt: "1"
  285. attributes:
  286. - key: direction
  287. value:
  288. stringValue: read
  289. startTimeUnixNano: "6000000"
  290. timeUnixNano: "5000000"
  291. - asInt: "7"
  292. attributes:
  293. - key: direction
  294. value:
  295. stringValue: read
  296. startTimeUnixNano: "6000000"
  297. timeUnixNano: "1000000"
  298. - asInt: "0"
  299. attributes:
  300. - key: direction
  301. value:
  302. stringValue: read
  303. startTimeUnixNano: "6000000"
  304. timeUnixNano: "2000000"
  305. - asInt: "0"
  306. attributes:
  307. - key: direction
  308. value:
  309. stringValue: read
  310. startTimeUnixNano: "6000000"
  311. timeUnixNano: "3000000"
  312. - asInt: "4"
  313. attributes:
  314. - key: direction
  315. value:
  316. stringValue: read
  317. startTimeUnixNano: "6000000"
  318. timeUnixNano: "4000000"
  319. - asInt: "2"
  320. attributes:
  321. - key: direction
  322. value:
  323. stringValue: read
  324. startTimeUnixNano: "6000000"
  325. timeUnixNano: "5000000"
  326. - asInt: "28"
  327. attributes:
  328. - key: direction
  329. value:
  330. stringValue: read
  331. startTimeUnixNano: "6000000"
  332. timeUnixNano: "1000000"
  333. - asInt: "45"
  334. attributes:
  335. - key: direction
  336. value:
  337. stringValue: read
  338. startTimeUnixNano: "6000000"
  339. timeUnixNano: "2000000"
  340. - asInt: "88"
  341. attributes:
  342. - key: direction
  343. value:
  344. stringValue: read
  345. startTimeUnixNano: "6000000"
  346. timeUnixNano: "3000000"
  347. - asInt: "92"
  348. attributes:
  349. - key: direction
  350. value:
  351. stringValue: read
  352. startTimeUnixNano: "6000000"
  353. timeUnixNano: "4000000"
  354. - asInt: "31"
  355. attributes:
  356. - key: direction
  357. value:
  358. stringValue: read
  359. startTimeUnixNano: "6000000"
  360. timeUnixNano: "5000000"
  361. - asInt: "4"
  362. attributes:
  363. - key: direction
  364. value:
  365. stringValue: read
  366. startTimeUnixNano: "6000000"
  367. timeUnixNano: "1000000"
  368. - asInt: "0"
  369. attributes:
  370. - key: direction
  371. value:
  372. stringValue: read
  373. startTimeUnixNano: "6000000"
  374. timeUnixNano: "2000000"
  375. - asInt: "1"
  376. attributes:
  377. - key: direction
  378. value:
  379. stringValue: read
  380. startTimeUnixNano: "6000000"
  381. timeUnixNano: "3000000"
  382. - asInt: "2"
  383. attributes:
  384. - key: direction
  385. value:
  386. stringValue: read
  387. startTimeUnixNano: "6000000"
  388. timeUnixNano: "4000000"
  389. - asInt: "0"
  390. attributes:
  391. - key: direction
  392. value:
  393. stringValue: read
  394. startTimeUnixNano: "6000000"
  395. timeUnixNano: "5000000"
  396. - asInt: "6"
  397. attributes:
  398. - key: direction
  399. value:
  400. stringValue: read
  401. startTimeUnixNano: "6000000"
  402. timeUnixNano: "1000000"
  403. - asInt: "6"
  404. attributes:
  405. - key: direction
  406. value:
  407. stringValue: read
  408. startTimeUnixNano: "6000000"
  409. timeUnixNano: "2000000"
  410. - asInt: "4"
  411. attributes:
  412. - key: direction
  413. value:
  414. stringValue: read
  415. startTimeUnixNano: "6000000"
  416. timeUnixNano: "3000000"
  417. - asInt: "8"
  418. attributes:
  419. - key: direction
  420. value:
  421. stringValue: read
  422. startTimeUnixNano: "6000000"
  423. timeUnixNano: "4000000"
  424. - asInt: "19"
  425. attributes:
  426. - key: direction
  427. value:
  428. stringValue: read
  429. startTimeUnixNano: "6000000"
  430. timeUnixNano: "5000000"
  431. - asInt: "0"
  432. attributes:
  433. - key: direction
  434. value:
  435. stringValue: read
  436. startTimeUnixNano: "6000000"
  437. timeUnixNano: "1000000"
  438. - asInt: "0"
  439. attributes:
  440. - key: direction
  441. value:
  442. stringValue: read
  443. startTimeUnixNano: "6000000"
  444. timeUnixNano: "2000000"
  445. - asInt: "0"
  446. attributes:
  447. - key: direction
  448. value:
  449. stringValue: read
  450. startTimeUnixNano: "6000000"
  451. timeUnixNano: "3000000"
  452. - asInt: "1"
  453. attributes:
  454. - key: direction
  455. value:
  456. stringValue: read
  457. startTimeUnixNano: "6000000"
  458. timeUnixNano: "4000000"
  459. - asInt: "0"
  460. attributes:
  461. - key: direction
  462. value:
  463. stringValue: read
  464. startTimeUnixNano: "6000000"
  465. timeUnixNano: "5000000"
  466. - asInt: "4"
  467. attributes:
  468. - key: direction
  469. value:
  470. stringValue: read
  471. startTimeUnixNano: "6000000"
  472. timeUnixNano: "1000000"
  473. - asInt: "25"
  474. attributes:
  475. - key: direction
  476. value:
  477. stringValue: read
  478. startTimeUnixNano: "6000000"
  479. timeUnixNano: "2000000"
  480. - asInt: "76"
  481. attributes:
  482. - key: direction
  483. value:
  484. stringValue: read
  485. startTimeUnixNano: "6000000"
  486. timeUnixNano: "3000000"
  487. - asInt: "63"
  488. attributes:
  489. - key: direction
  490. value:
  491. stringValue: read
  492. startTimeUnixNano: "6000000"
  493. timeUnixNano: "4000000"
  494. - asInt: "0"
  495. attributes:
  496. - key: direction
  497. value:
  498. stringValue: read
  499. startTimeUnixNano: "6000000"
  500. timeUnixNano: "5000000"
  501. - asInt: "0"
  502. attributes:
  503. - key: direction
  504. value:
  505. stringValue: read
  506. startTimeUnixNano: "6000000"
  507. timeUnixNano: "1000000"
  508. - asInt: "0"
  509. attributes:
  510. - key: direction
  511. value:
  512. stringValue: read
  513. startTimeUnixNano: "6000000"
  514. timeUnixNano: "2000000"
  515. - asInt: "0"
  516. attributes:
  517. - key: direction
  518. value:
  519. stringValue: read
  520. startTimeUnixNano: "6000000"
  521. timeUnixNano: "3000000"
  522. - asInt: "0"
  523. attributes:
  524. - key: direction
  525. value:
  526. stringValue: read
  527. startTimeUnixNano: "6000000"
  528. timeUnixNano: "4000000"
  529. - asInt: "0"
  530. attributes:
  531. - key: direction
  532. value:
  533. stringValue: read
  534. startTimeUnixNano: "6000000"
  535. timeUnixNano: "5000000"
  536. - asInt: "5"
  537. attributes:
  538. - key: direction
  539. value:
  540. stringValue: read
  541. startTimeUnixNano: "6000000"
  542. timeUnixNano: "1000000"
  543. - asInt: "10"
  544. attributes:
  545. - key: direction
  546. value:
  547. stringValue: read
  548. startTimeUnixNano: "6000000"
  549. timeUnixNano: "2000000"
  550. - asInt: "5"
  551. attributes:
  552. - key: direction
  553. value:
  554. stringValue: read
  555. startTimeUnixNano: "6000000"
  556. timeUnixNano: "3000000"
  557. - asInt: "7"
  558. attributes:
  559. - key: direction
  560. value:
  561. stringValue: read
  562. startTimeUnixNano: "6000000"
  563. timeUnixNano: "4000000"
  564. - asInt: "6"
  565. attributes:
  566. - key: direction
  567. value:
  568. stringValue: read
  569. startTimeUnixNano: "6000000"
  570. timeUnixNano: "5000000"
  571. - asInt: "0"
  572. attributes:
  573. - key: direction
  574. value:
  575. stringValue: read
  576. startTimeUnixNano: "6000000"
  577. timeUnixNano: "1000000"
  578. - asInt: "2"
  579. attributes:
  580. - key: direction
  581. value:
  582. stringValue: read
  583. startTimeUnixNano: "6000000"
  584. timeUnixNano: "2000000"
  585. - asInt: "0"
  586. attributes:
  587. - key: direction
  588. value:
  589. stringValue: read
  590. startTimeUnixNano: "6000000"
  591. timeUnixNano: "3000000"
  592. - asInt: "2"
  593. attributes:
  594. - key: direction
  595. value:
  596. stringValue: read
  597. startTimeUnixNano: "6000000"
  598. timeUnixNano: "4000000"
  599. - asInt: "0"
  600. attributes:
  601. - key: direction
  602. value:
  603. stringValue: read
  604. startTimeUnixNano: "6000000"
  605. timeUnixNano: "5000000"
  606. - asInt: "781"
  607. attributes:
  608. - key: direction
  609. value:
  610. stringValue: write
  611. startTimeUnixNano: "6000000"
  612. timeUnixNano: "1000000"
  613. - asInt: "789"
  614. attributes:
  615. - key: direction
  616. value:
  617. stringValue: write
  618. startTimeUnixNano: "6000000"
  619. timeUnixNano: "2000000"
  620. - asInt: "645"
  621. attributes:
  622. - key: direction
  623. value:
  624. stringValue: write
  625. startTimeUnixNano: "6000000"
  626. timeUnixNano: "3000000"
  627. - asInt: "781"
  628. attributes:
  629. - key: direction
  630. value:
  631. stringValue: write
  632. startTimeUnixNano: "6000000"
  633. timeUnixNano: "4000000"
  634. - asInt: "782"
  635. attributes:
  636. - key: direction
  637. value:
  638. stringValue: write
  639. startTimeUnixNano: "6000000"
  640. timeUnixNano: "5000000"
  641. unit: '{KiBy/s}'
  642. - description: The amount of memory the host system is using.
  643. name: vcenter.host.memory.usage
  644. sum:
  645. aggregationTemporality: 2
  646. dataPoints:
  647. - asInt: "140833"
  648. startTimeUnixNano: "1000000"
  649. timeUnixNano: "2000000"
  650. unit: MiBy
  651. - description: The percentage of the host system's memory capacity that is being utilized.
  652. gauge:
  653. dataPoints:
  654. - asDouble: 17.948557824655133
  655. startTimeUnixNano: "1000000"
  656. timeUnixNano: "2000000"
  657. name: vcenter.host.memory.utilization
  658. unit: '%'
  659. - description: The number of packets transmitted and received, as measured over the most recent 20s interval.
  660. name: vcenter.host.network.packet.count
  661. sum:
  662. aggregationTemporality: 2
  663. dataPoints:
  664. - asInt: "42110"
  665. attributes:
  666. - key: direction
  667. value:
  668. stringValue: received
  669. startTimeUnixNano: "6000000"
  670. timeUnixNano: "1000000"
  671. - asInt: "42686"
  672. attributes:
  673. - key: direction
  674. value:
  675. stringValue: received
  676. startTimeUnixNano: "6000000"
  677. timeUnixNano: "2000000"
  678. - asInt: "44277"
  679. attributes:
  680. - key: direction
  681. value:
  682. stringValue: received
  683. startTimeUnixNano: "6000000"
  684. timeUnixNano: "3000000"
  685. - asInt: "43122"
  686. attributes:
  687. - key: direction
  688. value:
  689. stringValue: received
  690. startTimeUnixNano: "6000000"
  691. timeUnixNano: "4000000"
  692. - asInt: "42703"
  693. attributes:
  694. - key: direction
  695. value:
  696. stringValue: received
  697. startTimeUnixNano: "6000000"
  698. timeUnixNano: "5000000"
  699. - asInt: "13316"
  700. attributes:
  701. - key: direction
  702. value:
  703. stringValue: received
  704. startTimeUnixNano: "6000000"
  705. timeUnixNano: "1000000"
  706. - asInt: "14473"
  707. attributes:
  708. - key: direction
  709. value:
  710. stringValue: received
  711. startTimeUnixNano: "6000000"
  712. timeUnixNano: "2000000"
  713. - asInt: "19662"
  714. attributes:
  715. - key: direction
  716. value:
  717. stringValue: received
  718. startTimeUnixNano: "6000000"
  719. timeUnixNano: "3000000"
  720. - asInt: "15478"
  721. attributes:
  722. - key: direction
  723. value:
  724. stringValue: received
  725. startTimeUnixNano: "6000000"
  726. timeUnixNano: "4000000"
  727. - asInt: "14458"
  728. attributes:
  729. - key: direction
  730. value:
  731. stringValue: received
  732. startTimeUnixNano: "6000000"
  733. timeUnixNano: "5000000"
  734. - asInt: "116"
  735. attributes:
  736. - key: direction
  737. value:
  738. stringValue: received
  739. startTimeUnixNano: "6000000"
  740. timeUnixNano: "1000000"
  741. - asInt: "114"
  742. attributes:
  743. - key: direction
  744. value:
  745. stringValue: received
  746. startTimeUnixNano: "6000000"
  747. timeUnixNano: "2000000"
  748. - asInt: "113"
  749. attributes:
  750. - key: direction
  751. value:
  752. stringValue: received
  753. startTimeUnixNano: "6000000"
  754. timeUnixNano: "3000000"
  755. - asInt: "112"
  756. attributes:
  757. - key: direction
  758. value:
  759. stringValue: received
  760. startTimeUnixNano: "6000000"
  761. timeUnixNano: "4000000"
  762. - asInt: "120"
  763. attributes:
  764. - key: direction
  765. value:
  766. stringValue: received
  767. startTimeUnixNano: "6000000"
  768. timeUnixNano: "5000000"
  769. - asInt: "55647"
  770. attributes:
  771. - key: direction
  772. value:
  773. stringValue: received
  774. startTimeUnixNano: "6000000"
  775. timeUnixNano: "1000000"
  776. - asInt: "57376"
  777. attributes:
  778. - key: direction
  779. value:
  780. stringValue: received
  781. startTimeUnixNano: "6000000"
  782. timeUnixNano: "2000000"
  783. - asInt: "64156"
  784. attributes:
  785. - key: direction
  786. value:
  787. stringValue: received
  788. startTimeUnixNano: "6000000"
  789. timeUnixNano: "3000000"
  790. - asInt: "58814"
  791. attributes:
  792. - key: direction
  793. value:
  794. stringValue: received
  795. startTimeUnixNano: "6000000"
  796. timeUnixNano: "4000000"
  797. - asInt: "57390"
  798. attributes:
  799. - key: direction
  800. value:
  801. stringValue: received
  802. startTimeUnixNano: "6000000"
  803. timeUnixNano: "5000000"
  804. - asInt: "105"
  805. attributes:
  806. - key: direction
  807. value:
  808. stringValue: received
  809. startTimeUnixNano: "6000000"
  810. timeUnixNano: "1000000"
  811. - asInt: "103"
  812. attributes:
  813. - key: direction
  814. value:
  815. stringValue: received
  816. startTimeUnixNano: "6000000"
  817. timeUnixNano: "2000000"
  818. - asInt: "104"
  819. attributes:
  820. - key: direction
  821. value:
  822. stringValue: received
  823. startTimeUnixNano: "6000000"
  824. timeUnixNano: "3000000"
  825. - asInt: "102"
  826. attributes:
  827. - key: direction
  828. value:
  829. stringValue: received
  830. startTimeUnixNano: "6000000"
  831. timeUnixNano: "4000000"
  832. - asInt: "109"
  833. attributes:
  834. - key: direction
  835. value:
  836. stringValue: received
  837. startTimeUnixNano: "6000000"
  838. timeUnixNano: "5000000"
  839. - asInt: "40810"
  840. attributes:
  841. - key: direction
  842. value:
  843. stringValue: transmitted
  844. startTimeUnixNano: "6000000"
  845. timeUnixNano: "1000000"
  846. - asInt: "41703"
  847. attributes:
  848. - key: direction
  849. value:
  850. stringValue: transmitted
  851. startTimeUnixNano: "6000000"
  852. timeUnixNano: "2000000"
  853. - asInt: "42960"
  854. attributes:
  855. - key: direction
  856. value:
  857. stringValue: transmitted
  858. startTimeUnixNano: "6000000"
  859. timeUnixNano: "3000000"
  860. - asInt: "42206"
  861. attributes:
  862. - key: direction
  863. value:
  864. stringValue: transmitted
  865. startTimeUnixNano: "6000000"
  866. timeUnixNano: "4000000"
  867. - asInt: "41480"
  868. attributes:
  869. - key: direction
  870. value:
  871. stringValue: transmitted
  872. startTimeUnixNano: "6000000"
  873. timeUnixNano: "5000000"
  874. - asInt: "11182"
  875. attributes:
  876. - key: direction
  877. value:
  878. stringValue: transmitted
  879. startTimeUnixNano: "6000000"
  880. timeUnixNano: "1000000"
  881. - asInt: "13009"
  882. attributes:
  883. - key: direction
  884. value:
  885. stringValue: transmitted
  886. startTimeUnixNano: "6000000"
  887. timeUnixNano: "2000000"
  888. - asInt: "16489"
  889. attributes:
  890. - key: direction
  891. value:
  892. stringValue: transmitted
  893. startTimeUnixNano: "6000000"
  894. timeUnixNano: "3000000"
  895. - asInt: "12398"
  896. attributes:
  897. - key: direction
  898. value:
  899. stringValue: transmitted
  900. startTimeUnixNano: "6000000"
  901. timeUnixNano: "4000000"
  902. - asInt: "12984"
  903. attributes:
  904. - key: direction
  905. value:
  906. stringValue: transmitted
  907. startTimeUnixNano: "6000000"
  908. timeUnixNano: "5000000"
  909. - asInt: "51992"
  910. attributes:
  911. - key: direction
  912. value:
  913. stringValue: transmitted
  914. startTimeUnixNano: "6000000"
  915. timeUnixNano: "1000000"
  916. - asInt: "54712"
  917. attributes:
  918. - key: direction
  919. value:
  920. stringValue: transmitted
  921. startTimeUnixNano: "6000000"
  922. timeUnixNano: "2000000"
  923. - asInt: "59449"
  924. attributes:
  925. - key: direction
  926. value:
  927. stringValue: transmitted
  928. startTimeUnixNano: "6000000"
  929. timeUnixNano: "3000000"
  930. - asInt: "54604"
  931. attributes:
  932. - key: direction
  933. value:
  934. stringValue: transmitted
  935. startTimeUnixNano: "6000000"
  936. timeUnixNano: "4000000"
  937. - asInt: "54464"
  938. attributes:
  939. - key: direction
  940. value:
  941. stringValue: transmitted
  942. startTimeUnixNano: "6000000"
  943. timeUnixNano: "5000000"
  944. - asInt: "0"
  945. attributes:
  946. - key: direction
  947. value:
  948. stringValue: transmitted
  949. startTimeUnixNano: "6000000"
  950. timeUnixNano: "1000000"
  951. - asInt: "0"
  952. attributes:
  953. - key: direction
  954. value:
  955. stringValue: transmitted
  956. startTimeUnixNano: "6000000"
  957. timeUnixNano: "2000000"
  958. - asInt: "0"
  959. attributes:
  960. - key: direction
  961. value:
  962. stringValue: transmitted
  963. startTimeUnixNano: "6000000"
  964. timeUnixNano: "3000000"
  965. - asInt: "0"
  966. attributes:
  967. - key: direction
  968. value:
  969. stringValue: transmitted
  970. startTimeUnixNano: "6000000"
  971. timeUnixNano: "4000000"
  972. - asInt: "0"
  973. attributes:
  974. - key: direction
  975. value:
  976. stringValue: transmitted
  977. startTimeUnixNano: "6000000"
  978. timeUnixNano: "5000000"
  979. - asInt: "0"
  980. attributes:
  981. - key: direction
  982. value:
  983. stringValue: transmitted
  984. startTimeUnixNano: "6000000"
  985. timeUnixNano: "1000000"
  986. - asInt: "0"
  987. attributes:
  988. - key: direction
  989. value:
  990. stringValue: transmitted
  991. startTimeUnixNano: "6000000"
  992. timeUnixNano: "2000000"
  993. - asInt: "0"
  994. attributes:
  995. - key: direction
  996. value:
  997. stringValue: transmitted
  998. startTimeUnixNano: "6000000"
  999. timeUnixNano: "3000000"
  1000. - asInt: "0"
  1001. attributes:
  1002. - key: direction
  1003. value:
  1004. stringValue: transmitted
  1005. startTimeUnixNano: "6000000"
  1006. timeUnixNano: "4000000"
  1007. - asInt: "0"
  1008. attributes:
  1009. - key: direction
  1010. value:
  1011. stringValue: transmitted
  1012. startTimeUnixNano: "6000000"
  1013. timeUnixNano: "5000000"
  1014. unit: '{packets/sec}'
  1015. - description: The summation of packet errors on the host network.
  1016. name: vcenter.host.network.packet.errors
  1017. sum:
  1018. aggregationTemporality: 2
  1019. dataPoints:
  1020. - asInt: "0"
  1021. attributes:
  1022. - key: direction
  1023. value:
  1024. stringValue: received
  1025. startTimeUnixNano: "6000000"
  1026. timeUnixNano: "1000000"
  1027. - asInt: "0"
  1028. attributes:
  1029. - key: direction
  1030. value:
  1031. stringValue: received
  1032. startTimeUnixNano: "6000000"
  1033. timeUnixNano: "2000000"
  1034. - asInt: "0"
  1035. attributes:
  1036. - key: direction
  1037. value:
  1038. stringValue: received
  1039. startTimeUnixNano: "6000000"
  1040. timeUnixNano: "3000000"
  1041. - asInt: "0"
  1042. attributes:
  1043. - key: direction
  1044. value:
  1045. stringValue: received
  1046. startTimeUnixNano: "6000000"
  1047. timeUnixNano: "4000000"
  1048. - asInt: "0"
  1049. attributes:
  1050. - key: direction
  1051. value:
  1052. stringValue: received
  1053. startTimeUnixNano: "6000000"
  1054. timeUnixNano: "5000000"
  1055. - asInt: "0"
  1056. attributes:
  1057. - key: direction
  1058. value:
  1059. stringValue: received
  1060. startTimeUnixNano: "6000000"
  1061. timeUnixNano: "1000000"
  1062. - asInt: "0"
  1063. attributes:
  1064. - key: direction
  1065. value:
  1066. stringValue: received
  1067. startTimeUnixNano: "6000000"
  1068. timeUnixNano: "2000000"
  1069. - asInt: "0"
  1070. attributes:
  1071. - key: direction
  1072. value:
  1073. stringValue: received
  1074. startTimeUnixNano: "6000000"
  1075. timeUnixNano: "3000000"
  1076. - asInt: "0"
  1077. attributes:
  1078. - key: direction
  1079. value:
  1080. stringValue: received
  1081. startTimeUnixNano: "6000000"
  1082. timeUnixNano: "4000000"
  1083. - asInt: "0"
  1084. attributes:
  1085. - key: direction
  1086. value:
  1087. stringValue: received
  1088. startTimeUnixNano: "6000000"
  1089. timeUnixNano: "5000000"
  1090. - asInt: "0"
  1091. attributes:
  1092. - key: direction
  1093. value:
  1094. stringValue: received
  1095. startTimeUnixNano: "6000000"
  1096. timeUnixNano: "1000000"
  1097. - asInt: "0"
  1098. attributes:
  1099. - key: direction
  1100. value:
  1101. stringValue: received
  1102. startTimeUnixNano: "6000000"
  1103. timeUnixNano: "2000000"
  1104. - asInt: "0"
  1105. attributes:
  1106. - key: direction
  1107. value:
  1108. stringValue: received
  1109. startTimeUnixNano: "6000000"
  1110. timeUnixNano: "3000000"
  1111. - asInt: "0"
  1112. attributes:
  1113. - key: direction
  1114. value:
  1115. stringValue: received
  1116. startTimeUnixNano: "6000000"
  1117. timeUnixNano: "4000000"
  1118. - asInt: "0"
  1119. attributes:
  1120. - key: direction
  1121. value:
  1122. stringValue: received
  1123. startTimeUnixNano: "6000000"
  1124. timeUnixNano: "5000000"
  1125. - asInt: "0"
  1126. attributes:
  1127. - key: direction
  1128. value:
  1129. stringValue: received
  1130. startTimeUnixNano: "6000000"
  1131. timeUnixNano: "1000000"
  1132. - asInt: "0"
  1133. attributes:
  1134. - key: direction
  1135. value:
  1136. stringValue: received
  1137. startTimeUnixNano: "6000000"
  1138. timeUnixNano: "2000000"
  1139. - asInt: "0"
  1140. attributes:
  1141. - key: direction
  1142. value:
  1143. stringValue: received
  1144. startTimeUnixNano: "6000000"
  1145. timeUnixNano: "3000000"
  1146. - asInt: "0"
  1147. attributes:
  1148. - key: direction
  1149. value:
  1150. stringValue: received
  1151. startTimeUnixNano: "6000000"
  1152. timeUnixNano: "4000000"
  1153. - asInt: "0"
  1154. attributes:
  1155. - key: direction
  1156. value:
  1157. stringValue: received
  1158. startTimeUnixNano: "6000000"
  1159. timeUnixNano: "5000000"
  1160. - asInt: "0"
  1161. attributes:
  1162. - key: direction
  1163. value:
  1164. stringValue: received
  1165. startTimeUnixNano: "6000000"
  1166. timeUnixNano: "1000000"
  1167. - asInt: "0"
  1168. attributes:
  1169. - key: direction
  1170. value:
  1171. stringValue: received
  1172. startTimeUnixNano: "6000000"
  1173. timeUnixNano: "2000000"
  1174. - asInt: "0"
  1175. attributes:
  1176. - key: direction
  1177. value:
  1178. stringValue: received
  1179. startTimeUnixNano: "6000000"
  1180. timeUnixNano: "3000000"
  1181. - asInt: "0"
  1182. attributes:
  1183. - key: direction
  1184. value:
  1185. stringValue: received
  1186. startTimeUnixNano: "6000000"
  1187. timeUnixNano: "4000000"
  1188. - asInt: "0"
  1189. attributes:
  1190. - key: direction
  1191. value:
  1192. stringValue: received
  1193. startTimeUnixNano: "6000000"
  1194. timeUnixNano: "5000000"
  1195. - asInt: "0"
  1196. attributes:
  1197. - key: direction
  1198. value:
  1199. stringValue: transmitted
  1200. startTimeUnixNano: "6000000"
  1201. timeUnixNano: "1000000"
  1202. - asInt: "0"
  1203. attributes:
  1204. - key: direction
  1205. value:
  1206. stringValue: transmitted
  1207. startTimeUnixNano: "6000000"
  1208. timeUnixNano: "2000000"
  1209. - asInt: "0"
  1210. attributes:
  1211. - key: direction
  1212. value:
  1213. stringValue: transmitted
  1214. startTimeUnixNano: "6000000"
  1215. timeUnixNano: "3000000"
  1216. - asInt: "0"
  1217. attributes:
  1218. - key: direction
  1219. value:
  1220. stringValue: transmitted
  1221. startTimeUnixNano: "6000000"
  1222. timeUnixNano: "4000000"
  1223. - asInt: "0"
  1224. attributes:
  1225. - key: direction
  1226. value:
  1227. stringValue: transmitted
  1228. startTimeUnixNano: "6000000"
  1229. timeUnixNano: "5000000"
  1230. - asInt: "0"
  1231. attributes:
  1232. - key: direction
  1233. value:
  1234. stringValue: transmitted
  1235. startTimeUnixNano: "6000000"
  1236. timeUnixNano: "1000000"
  1237. - asInt: "0"
  1238. attributes:
  1239. - key: direction
  1240. value:
  1241. stringValue: transmitted
  1242. startTimeUnixNano: "6000000"
  1243. timeUnixNano: "2000000"
  1244. - asInt: "0"
  1245. attributes:
  1246. - key: direction
  1247. value:
  1248. stringValue: transmitted
  1249. startTimeUnixNano: "6000000"
  1250. timeUnixNano: "3000000"
  1251. - asInt: "0"
  1252. attributes:
  1253. - key: direction
  1254. value:
  1255. stringValue: transmitted
  1256. startTimeUnixNano: "6000000"
  1257. timeUnixNano: "4000000"
  1258. - asInt: "0"
  1259. attributes:
  1260. - key: direction
  1261. value:
  1262. stringValue: transmitted
  1263. startTimeUnixNano: "6000000"
  1264. timeUnixNano: "5000000"
  1265. - asInt: "0"
  1266. attributes:
  1267. - key: direction
  1268. value:
  1269. stringValue: transmitted
  1270. startTimeUnixNano: "6000000"
  1271. timeUnixNano: "1000000"
  1272. - asInt: "0"
  1273. attributes:
  1274. - key: direction
  1275. value:
  1276. stringValue: transmitted
  1277. startTimeUnixNano: "6000000"
  1278. timeUnixNano: "2000000"
  1279. - asInt: "0"
  1280. attributes:
  1281. - key: direction
  1282. value:
  1283. stringValue: transmitted
  1284. startTimeUnixNano: "6000000"
  1285. timeUnixNano: "3000000"
  1286. - asInt: "0"
  1287. attributes:
  1288. - key: direction
  1289. value:
  1290. stringValue: transmitted
  1291. startTimeUnixNano: "6000000"
  1292. timeUnixNano: "4000000"
  1293. - asInt: "0"
  1294. attributes:
  1295. - key: direction
  1296. value:
  1297. stringValue: transmitted
  1298. startTimeUnixNano: "6000000"
  1299. timeUnixNano: "5000000"
  1300. - asInt: "0"
  1301. attributes:
  1302. - key: direction
  1303. value:
  1304. stringValue: transmitted
  1305. startTimeUnixNano: "6000000"
  1306. timeUnixNano: "1000000"
  1307. - asInt: "0"
  1308. attributes:
  1309. - key: direction
  1310. value:
  1311. stringValue: transmitted
  1312. startTimeUnixNano: "6000000"
  1313. timeUnixNano: "2000000"
  1314. - asInt: "0"
  1315. attributes:
  1316. - key: direction
  1317. value:
  1318. stringValue: transmitted
  1319. startTimeUnixNano: "6000000"
  1320. timeUnixNano: "3000000"
  1321. - asInt: "0"
  1322. attributes:
  1323. - key: direction
  1324. value:
  1325. stringValue: transmitted
  1326. startTimeUnixNano: "6000000"
  1327. timeUnixNano: "4000000"
  1328. - asInt: "0"
  1329. attributes:
  1330. - key: direction
  1331. value:
  1332. stringValue: transmitted
  1333. startTimeUnixNano: "6000000"
  1334. timeUnixNano: "5000000"
  1335. - asInt: "0"
  1336. attributes:
  1337. - key: direction
  1338. value:
  1339. stringValue: transmitted
  1340. startTimeUnixNano: "6000000"
  1341. timeUnixNano: "1000000"
  1342. - asInt: "0"
  1343. attributes:
  1344. - key: direction
  1345. value:
  1346. stringValue: transmitted
  1347. startTimeUnixNano: "6000000"
  1348. timeUnixNano: "2000000"
  1349. - asInt: "0"
  1350. attributes:
  1351. - key: direction
  1352. value:
  1353. stringValue: transmitted
  1354. startTimeUnixNano: "6000000"
  1355. timeUnixNano: "3000000"
  1356. - asInt: "0"
  1357. attributes:
  1358. - key: direction
  1359. value:
  1360. stringValue: transmitted
  1361. startTimeUnixNano: "6000000"
  1362. timeUnixNano: "4000000"
  1363. - asInt: "0"
  1364. attributes:
  1365. - key: direction
  1366. value:
  1367. stringValue: transmitted
  1368. startTimeUnixNano: "6000000"
  1369. timeUnixNano: "5000000"
  1370. unit: '{errors}'
  1371. - description: The amount of data that was transmitted or received over the network by the host.
  1372. name: vcenter.host.network.throughput
  1373. sum:
  1374. aggregationTemporality: 2
  1375. dataPoints:
  1376. - asInt: "0"
  1377. attributes:
  1378. - key: direction
  1379. value:
  1380. stringValue: received
  1381. startTimeUnixNano: "6000000"
  1382. timeUnixNano: "1000000"
  1383. - asInt: "0"
  1384. attributes:
  1385. - key: direction
  1386. value:
  1387. stringValue: received
  1388. startTimeUnixNano: "6000000"
  1389. timeUnixNano: "2000000"
  1390. - asInt: "0"
  1391. attributes:
  1392. - key: direction
  1393. value:
  1394. stringValue: received
  1395. startTimeUnixNano: "6000000"
  1396. timeUnixNano: "3000000"
  1397. - asInt: "0"
  1398. attributes:
  1399. - key: direction
  1400. value:
  1401. stringValue: received
  1402. startTimeUnixNano: "6000000"
  1403. timeUnixNano: "4000000"
  1404. - asInt: "0"
  1405. attributes:
  1406. - key: direction
  1407. value:
  1408. stringValue: received
  1409. startTimeUnixNano: "6000000"
  1410. timeUnixNano: "5000000"
  1411. - asInt: "928"
  1412. attributes:
  1413. - key: direction
  1414. value:
  1415. stringValue: received
  1416. startTimeUnixNano: "6000000"
  1417. timeUnixNano: "1000000"
  1418. - asInt: "1120"
  1419. attributes:
  1420. - key: direction
  1421. value:
  1422. stringValue: received
  1423. startTimeUnixNano: "6000000"
  1424. timeUnixNano: "2000000"
  1425. - asInt: "1646"
  1426. attributes:
  1427. - key: direction
  1428. value:
  1429. stringValue: received
  1430. startTimeUnixNano: "6000000"
  1431. timeUnixNano: "3000000"
  1432. - asInt: "1291"
  1433. attributes:
  1434. - key: direction
  1435. value:
  1436. stringValue: received
  1437. startTimeUnixNano: "6000000"
  1438. timeUnixNano: "4000000"
  1439. - asInt: "1058"
  1440. attributes:
  1441. - key: direction
  1442. value:
  1443. stringValue: received
  1444. startTimeUnixNano: "6000000"
  1445. timeUnixNano: "5000000"
  1446. - asInt: "570"
  1447. attributes:
  1448. - key: direction
  1449. value:
  1450. stringValue: received
  1451. startTimeUnixNano: "6000000"
  1452. timeUnixNano: "1000000"
  1453. - asInt: "768"
  1454. attributes:
  1455. - key: direction
  1456. value:
  1457. stringValue: received
  1458. startTimeUnixNano: "6000000"
  1459. timeUnixNano: "2000000"
  1460. - asInt: "1269"
  1461. attributes:
  1462. - key: direction
  1463. value:
  1464. stringValue: received
  1465. startTimeUnixNano: "6000000"
  1466. timeUnixNano: "3000000"
  1467. - asInt: "927"
  1468. attributes:
  1469. - key: direction
  1470. value:
  1471. stringValue: received
  1472. startTimeUnixNano: "6000000"
  1473. timeUnixNano: "4000000"
  1474. - asInt: "681"
  1475. attributes:
  1476. - key: direction
  1477. value:
  1478. stringValue: received
  1479. startTimeUnixNano: "6000000"
  1480. timeUnixNano: "5000000"
  1481. - asInt: "357"
  1482. attributes:
  1483. - key: direction
  1484. value:
  1485. stringValue: received
  1486. startTimeUnixNano: "6000000"
  1487. timeUnixNano: "1000000"
  1488. - asInt: "351"
  1489. attributes:
  1490. - key: direction
  1491. value:
  1492. stringValue: received
  1493. startTimeUnixNano: "6000000"
  1494. timeUnixNano: "2000000"
  1495. - asInt: "376"
  1496. attributes:
  1497. - key: direction
  1498. value:
  1499. stringValue: received
  1500. startTimeUnixNano: "6000000"
  1501. timeUnixNano: "3000000"
  1502. - asInt: "363"
  1503. attributes:
  1504. - key: direction
  1505. value:
  1506. stringValue: received
  1507. startTimeUnixNano: "6000000"
  1508. timeUnixNano: "4000000"
  1509. - asInt: "376"
  1510. attributes:
  1511. - key: direction
  1512. value:
  1513. stringValue: received
  1514. startTimeUnixNano: "6000000"
  1515. timeUnixNano: "5000000"
  1516. - asInt: "0"
  1517. attributes:
  1518. - key: direction
  1519. value:
  1520. stringValue: received
  1521. startTimeUnixNano: "6000000"
  1522. timeUnixNano: "1000000"
  1523. - asInt: "0"
  1524. attributes:
  1525. - key: direction
  1526. value:
  1527. stringValue: received
  1528. startTimeUnixNano: "6000000"
  1529. timeUnixNano: "2000000"
  1530. - asInt: "0"
  1531. attributes:
  1532. - key: direction
  1533. value:
  1534. stringValue: received
  1535. startTimeUnixNano: "6000000"
  1536. timeUnixNano: "3000000"
  1537. - asInt: "0"
  1538. attributes:
  1539. - key: direction
  1540. value:
  1541. stringValue: received
  1542. startTimeUnixNano: "6000000"
  1543. timeUnixNano: "4000000"
  1544. - asInt: "0"
  1545. attributes:
  1546. - key: direction
  1547. value:
  1548. stringValue: received
  1549. startTimeUnixNano: "6000000"
  1550. timeUnixNano: "5000000"
  1551. - asInt: "411"
  1552. attributes:
  1553. - key: direction
  1554. value:
  1555. stringValue: transmitted
  1556. startTimeUnixNano: "6000000"
  1557. timeUnixNano: "1000000"
  1558. - asInt: "422"
  1559. attributes:
  1560. - key: direction
  1561. value:
  1562. stringValue: transmitted
  1563. startTimeUnixNano: "6000000"
  1564. timeUnixNano: "2000000"
  1565. - asInt: "551"
  1566. attributes:
  1567. - key: direction
  1568. value:
  1569. stringValue: transmitted
  1570. startTimeUnixNano: "6000000"
  1571. timeUnixNano: "3000000"
  1572. - asInt: "617"
  1573. attributes:
  1574. - key: direction
  1575. value:
  1576. stringValue: transmitted
  1577. startTimeUnixNano: "6000000"
  1578. timeUnixNano: "4000000"
  1579. - asInt: "488"
  1580. attributes:
  1581. - key: direction
  1582. value:
  1583. stringValue: transmitted
  1584. startTimeUnixNano: "6000000"
  1585. timeUnixNano: "5000000"
  1586. - asInt: "3064"
  1587. attributes:
  1588. - key: direction
  1589. value:
  1590. stringValue: transmitted
  1591. startTimeUnixNano: "6000000"
  1592. timeUnixNano: "1000000"
  1593. - asInt: "2537"
  1594. attributes:
  1595. - key: direction
  1596. value:
  1597. stringValue: transmitted
  1598. startTimeUnixNano: "6000000"
  1599. timeUnixNano: "2000000"
  1600. - asInt: "4373"
  1601. attributes:
  1602. - key: direction
  1603. value:
  1604. stringValue: transmitted
  1605. startTimeUnixNano: "6000000"
  1606. timeUnixNano: "3000000"
  1607. - asInt: "3746"
  1608. attributes:
  1609. - key: direction
  1610. value:
  1611. stringValue: transmitted
  1612. startTimeUnixNano: "6000000"
  1613. timeUnixNano: "4000000"
  1614. - asInt: "2569"
  1615. attributes:
  1616. - key: direction
  1617. value:
  1618. stringValue: transmitted
  1619. startTimeUnixNano: "6000000"
  1620. timeUnixNano: "5000000"
  1621. - asInt: "0"
  1622. attributes:
  1623. - key: direction
  1624. value:
  1625. stringValue: transmitted
  1626. startTimeUnixNano: "6000000"
  1627. timeUnixNano: "1000000"
  1628. - asInt: "0"
  1629. attributes:
  1630. - key: direction
  1631. value:
  1632. stringValue: transmitted
  1633. startTimeUnixNano: "6000000"
  1634. timeUnixNano: "2000000"
  1635. - asInt: "0"
  1636. attributes:
  1637. - key: direction
  1638. value:
  1639. stringValue: transmitted
  1640. startTimeUnixNano: "6000000"
  1641. timeUnixNano: "3000000"
  1642. - asInt: "0"
  1643. attributes:
  1644. - key: direction
  1645. value:
  1646. stringValue: transmitted
  1647. startTimeUnixNano: "6000000"
  1648. timeUnixNano: "4000000"
  1649. - asInt: "0"
  1650. attributes:
  1651. - key: direction
  1652. value:
  1653. stringValue: transmitted
  1654. startTimeUnixNano: "6000000"
  1655. timeUnixNano: "5000000"
  1656. - asInt: "3475"
  1657. attributes:
  1658. - key: direction
  1659. value:
  1660. stringValue: transmitted
  1661. startTimeUnixNano: "6000000"
  1662. timeUnixNano: "1000000"
  1663. - asInt: "2959"
  1664. attributes:
  1665. - key: direction
  1666. value:
  1667. stringValue: transmitted
  1668. startTimeUnixNano: "6000000"
  1669. timeUnixNano: "2000000"
  1670. - asInt: "4924"
  1671. attributes:
  1672. - key: direction
  1673. value:
  1674. stringValue: transmitted
  1675. startTimeUnixNano: "6000000"
  1676. timeUnixNano: "3000000"
  1677. - asInt: "4364"
  1678. attributes:
  1679. - key: direction
  1680. value:
  1681. stringValue: transmitted
  1682. startTimeUnixNano: "6000000"
  1683. timeUnixNano: "4000000"
  1684. - asInt: "3058"
  1685. attributes:
  1686. - key: direction
  1687. value:
  1688. stringValue: transmitted
  1689. startTimeUnixNano: "6000000"
  1690. timeUnixNano: "5000000"
  1691. - asInt: "0"
  1692. attributes:
  1693. - key: direction
  1694. value:
  1695. stringValue: transmitted
  1696. startTimeUnixNano: "6000000"
  1697. timeUnixNano: "1000000"
  1698. - asInt: "0"
  1699. attributes:
  1700. - key: direction
  1701. value:
  1702. stringValue: transmitted
  1703. startTimeUnixNano: "6000000"
  1704. timeUnixNano: "2000000"
  1705. - asInt: "0"
  1706. attributes:
  1707. - key: direction
  1708. value:
  1709. stringValue: transmitted
  1710. startTimeUnixNano: "6000000"
  1711. timeUnixNano: "3000000"
  1712. - asInt: "0"
  1713. attributes:
  1714. - key: direction
  1715. value:
  1716. stringValue: transmitted
  1717. startTimeUnixNano: "6000000"
  1718. timeUnixNano: "4000000"
  1719. - asInt: "0"
  1720. attributes:
  1721. - key: direction
  1722. value:
  1723. stringValue: transmitted
  1724. startTimeUnixNano: "6000000"
  1725. timeUnixNano: "5000000"
  1726. unit: '{KiBy/s}'
  1727. - description: The sum of the data transmitted and received for all the NIC instances of the host.
  1728. name: vcenter.host.network.usage
  1729. sum:
  1730. aggregationTemporality: 2
  1731. dataPoints:
  1732. - asInt: "769"
  1733. startTimeUnixNano: "6000000"
  1734. timeUnixNano: "1000000"
  1735. - asInt: "773"
  1736. startTimeUnixNano: "6000000"
  1737. timeUnixNano: "2000000"
  1738. - asInt: "927"
  1739. startTimeUnixNano: "6000000"
  1740. timeUnixNano: "3000000"
  1741. - asInt: "980"
  1742. startTimeUnixNano: "6000000"
  1743. timeUnixNano: "4000000"
  1744. - asInt: "864"
  1745. startTimeUnixNano: "6000000"
  1746. timeUnixNano: "5000000"
  1747. - asInt: "0"
  1748. startTimeUnixNano: "6000000"
  1749. timeUnixNano: "1000000"
  1750. - asInt: "0"
  1751. startTimeUnixNano: "6000000"
  1752. timeUnixNano: "2000000"
  1753. - asInt: "0"
  1754. startTimeUnixNano: "6000000"
  1755. timeUnixNano: "3000000"
  1756. - asInt: "0"
  1757. startTimeUnixNano: "6000000"
  1758. timeUnixNano: "4000000"
  1759. - asInt: "0"
  1760. startTimeUnixNano: "6000000"
  1761. timeUnixNano: "5000000"
  1762. - asInt: "0"
  1763. startTimeUnixNano: "6000000"
  1764. timeUnixNano: "1000000"
  1765. - asInt: "0"
  1766. startTimeUnixNano: "6000000"
  1767. timeUnixNano: "2000000"
  1768. - asInt: "0"
  1769. startTimeUnixNano: "6000000"
  1770. timeUnixNano: "3000000"
  1771. - asInt: "0"
  1772. startTimeUnixNano: "6000000"
  1773. timeUnixNano: "4000000"
  1774. - asInt: "0"
  1775. startTimeUnixNano: "6000000"
  1776. timeUnixNano: "5000000"
  1777. - asInt: "3634"
  1778. startTimeUnixNano: "6000000"
  1779. timeUnixNano: "1000000"
  1780. - asInt: "3305"
  1781. startTimeUnixNano: "6000000"
  1782. timeUnixNano: "2000000"
  1783. - asInt: "5642"
  1784. startTimeUnixNano: "6000000"
  1785. timeUnixNano: "3000000"
  1786. - asInt: "4674"
  1787. startTimeUnixNano: "6000000"
  1788. timeUnixNano: "4000000"
  1789. - asInt: "3251"
  1790. startTimeUnixNano: "6000000"
  1791. timeUnixNano: "5000000"
  1792. - asInt: "4404"
  1793. startTimeUnixNano: "6000000"
  1794. timeUnixNano: "1000000"
  1795. - asInt: "4079"
  1796. startTimeUnixNano: "6000000"
  1797. timeUnixNano: "2000000"
  1798. - asInt: "6570"
  1799. startTimeUnixNano: "6000000"
  1800. timeUnixNano: "3000000"
  1801. - asInt: "5655"
  1802. startTimeUnixNano: "6000000"
  1803. timeUnixNano: "4000000"
  1804. - asInt: "4117"
  1805. startTimeUnixNano: "6000000"
  1806. timeUnixNano: "5000000"
  1807. unit: '{KiBy/s}'
  1808. scope:
  1809. name: otelcol/vcenterreceiver
  1810. version: latest
  1811. - resource:
  1812. attributes:
  1813. - key: vcenter.resource_pool.inventory_path
  1814. value:
  1815. stringValue: /Datacenter/host/Cluster/Resources
  1816. - key: vcenter.resource_pool.name
  1817. value:
  1818. stringValue: Resources
  1819. scopeMetrics:
  1820. - metrics:
  1821. - description: The amount of shares of CPU in the resource pool.
  1822. name: vcenter.resource_pool.cpu.shares
  1823. sum:
  1824. aggregationTemporality: 2
  1825. dataPoints:
  1826. - asInt: "4000"
  1827. startTimeUnixNano: "1000000"
  1828. timeUnixNano: "2000000"
  1829. unit: '{shares}'
  1830. - description: The usage of the CPU used by the resource pool.
  1831. name: vcenter.resource_pool.cpu.usage
  1832. sum:
  1833. aggregationTemporality: 2
  1834. dataPoints:
  1835. - asInt: "13791"
  1836. startTimeUnixNano: "1000000"
  1837. timeUnixNano: "2000000"
  1838. unit: '{MHz}'
  1839. - description: The amount of shares of memory in the resource pool.
  1840. name: vcenter.resource_pool.memory.shares
  1841. sum:
  1842. aggregationTemporality: 2
  1843. dataPoints:
  1844. - asInt: "163840"
  1845. startTimeUnixNano: "1000000"
  1846. timeUnixNano: "2000000"
  1847. unit: '{shares}'
  1848. - description: The usage of the memory by the resource pool.
  1849. name: vcenter.resource_pool.memory.usage
  1850. sum:
  1851. aggregationTemporality: 2
  1852. dataPoints:
  1853. - asInt: "40543"
  1854. startTimeUnixNano: "1000000"
  1855. timeUnixNano: "2000000"
  1856. unit: MiBy
  1857. scope:
  1858. name: otelcol/vcenterreceiver
  1859. version: latest
  1860. - resource:
  1861. attributes:
  1862. - key: vcenter.cluster.name
  1863. value:
  1864. stringValue: Cluster
  1865. - key: vcenter.host.name
  1866. value:
  1867. stringValue: esxi-27971.cf5e88ac.australia-southeast1.gve.goog
  1868. - key: vcenter.vm.id
  1869. value:
  1870. stringValue: 5000bbe0-993e-5813-c56a-198eaa62fb61
  1871. - key: vcenter.vm.name
  1872. value:
  1873. stringValue: CentOS 7
  1874. scopeMetrics:
  1875. - metrics:
  1876. - description: The amount of CPU used by the VM.
  1877. name: vcenter.vm.cpu.usage
  1878. sum:
  1879. aggregationTemporality: 2
  1880. dataPoints:
  1881. - asInt: "12"
  1882. startTimeUnixNano: "1000000"
  1883. timeUnixNano: "2000000"
  1884. unit: MHz
  1885. - description: The CPU utilization of the VM.
  1886. gauge:
  1887. dataPoints:
  1888. - asDouble: 0.11569610489780177
  1889. startTimeUnixNano: "1000000"
  1890. timeUnixNano: "2000000"
  1891. name: vcenter.vm.cpu.utilization
  1892. unit: '%'
  1893. - description: The latency of operations to the virtual machine's disk.
  1894. gauge:
  1895. dataPoints:
  1896. - asInt: "0"
  1897. attributes:
  1898. - key: direction
  1899. value:
  1900. stringValue: read
  1901. - key: disk_type
  1902. value:
  1903. stringValue: virtual
  1904. startTimeUnixNano: "2000000"
  1905. timeUnixNano: "1000000"
  1906. - asInt: "0"
  1907. attributes:
  1908. - key: direction
  1909. value:
  1910. stringValue: write
  1911. - key: disk_type
  1912. value:
  1913. stringValue: virtual
  1914. startTimeUnixNano: "2000000"
  1915. timeUnixNano: "1000000"
  1916. name: vcenter.vm.disk.latency.avg
  1917. unit: ms
  1918. - description: The highest reported total latency (device and kernel times) over an interval of 20 seconds.
  1919. gauge:
  1920. dataPoints:
  1921. - asInt: "899"
  1922. startTimeUnixNano: "2000000"
  1923. timeUnixNano: "1000000"
  1924. name: vcenter.vm.disk.latency.max
  1925. unit: ms
  1926. - description: The amount of storage space used by the virtual machine.
  1927. name: vcenter.vm.disk.usage
  1928. sum:
  1929. aggregationTemporality: 2
  1930. dataPoints:
  1931. - asInt: "258847277056"
  1932. attributes:
  1933. - key: disk_state
  1934. value:
  1935. stringValue: available
  1936. startTimeUnixNano: "1000000"
  1937. timeUnixNano: "2000000"
  1938. - asInt: "16311648256"
  1939. attributes:
  1940. - key: disk_state
  1941. value:
  1942. stringValue: used
  1943. startTimeUnixNano: "1000000"
  1944. timeUnixNano: "2000000"
  1945. unit: By
  1946. - description: The utilization of storage on the virtual machine.
  1947. gauge:
  1948. dataPoints:
  1949. - asDouble: 5.9280825572001286
  1950. startTimeUnixNano: "1000000"
  1951. timeUnixNano: "2000000"
  1952. name: vcenter.vm.disk.utilization
  1953. unit: '%'
  1954. - description: The amount of memory that is ballooned due to virtualization.
  1955. name: vcenter.vm.memory.ballooned
  1956. sum:
  1957. aggregationTemporality: 2
  1958. dataPoints:
  1959. - asInt: "0"
  1960. startTimeUnixNano: "1000000"
  1961. timeUnixNano: "2000000"
  1962. unit: MiBy
  1963. - description: The portion of memory that is granted to this VM from the host's swap space.
  1964. name: vcenter.vm.memory.swapped
  1965. sum:
  1966. aggregationTemporality: 2
  1967. dataPoints:
  1968. - asInt: "0"
  1969. startTimeUnixNano: "1000000"
  1970. timeUnixNano: "2000000"
  1971. unit: MiBy
  1972. - description: The amount of memory swapped to fast disk device such as SSD.
  1973. name: vcenter.vm.memory.swapped_ssd
  1974. sum:
  1975. aggregationTemporality: 2
  1976. dataPoints:
  1977. - asInt: "0"
  1978. startTimeUnixNano: "1000000"
  1979. timeUnixNano: "2000000"
  1980. unit: KiBy
  1981. - description: The amount of memory that is used by the virtual machine.
  1982. name: vcenter.vm.memory.usage
  1983. sum:
  1984. aggregationTemporality: 2
  1985. dataPoints:
  1986. - asInt: "163"
  1987. startTimeUnixNano: "1000000"
  1988. timeUnixNano: "2000000"
  1989. unit: MiBy
  1990. - description: The amount of packets that was received or transmitted over the instance's network.
  1991. name: vcenter.vm.network.packet.count
  1992. sum:
  1993. aggregationTemporality: 2
  1994. dataPoints:
  1995. - asInt: "0"
  1996. attributes:
  1997. - key: direction
  1998. value:
  1999. stringValue: received
  2000. startTimeUnixNano: "2000000"
  2001. timeUnixNano: "1000000"
  2002. - asInt: "0"
  2003. attributes:
  2004. - key: direction
  2005. value:
  2006. stringValue: received
  2007. startTimeUnixNano: "2000000"
  2008. timeUnixNano: "1000000"
  2009. - asInt: "0"
  2010. attributes:
  2011. - key: direction
  2012. value:
  2013. stringValue: received
  2014. startTimeUnixNano: "2000000"
  2015. timeUnixNano: "1000000"
  2016. - asInt: "0"
  2017. attributes:
  2018. - key: direction
  2019. value:
  2020. stringValue: received
  2021. startTimeUnixNano: "2000000"
  2022. timeUnixNano: "1000000"
  2023. - asInt: "0"
  2024. attributes:
  2025. - key: direction
  2026. value:
  2027. stringValue: received
  2028. startTimeUnixNano: "2000000"
  2029. timeUnixNano: "1000000"
  2030. - asInt: "0"
  2031. attributes:
  2032. - key: direction
  2033. value:
  2034. stringValue: received
  2035. startTimeUnixNano: "2000000"
  2036. timeUnixNano: "1000000"
  2037. - asInt: "0"
  2038. attributes:
  2039. - key: direction
  2040. value:
  2041. stringValue: transmitted
  2042. startTimeUnixNano: "2000000"
  2043. timeUnixNano: "1000000"
  2044. - asInt: "0"
  2045. attributes:
  2046. - key: direction
  2047. value:
  2048. stringValue: transmitted
  2049. startTimeUnixNano: "2000000"
  2050. timeUnixNano: "1000000"
  2051. - asInt: "0"
  2052. attributes:
  2053. - key: direction
  2054. value:
  2055. stringValue: transmitted
  2056. startTimeUnixNano: "2000000"
  2057. timeUnixNano: "1000000"
  2058. - asInt: "0"
  2059. attributes:
  2060. - key: direction
  2061. value:
  2062. stringValue: transmitted
  2063. startTimeUnixNano: "2000000"
  2064. timeUnixNano: "1000000"
  2065. - asInt: "0"
  2066. attributes:
  2067. - key: direction
  2068. value:
  2069. stringValue: transmitted
  2070. startTimeUnixNano: "2000000"
  2071. timeUnixNano: "1000000"
  2072. - asInt: "0"
  2073. attributes:
  2074. - key: direction
  2075. value:
  2076. stringValue: transmitted
  2077. startTimeUnixNano: "2000000"
  2078. timeUnixNano: "1000000"
  2079. unit: '{packets/sec}'
  2080. - description: The amount of data that was transmitted or received over the network of the virtual machine.
  2081. name: vcenter.vm.network.throughput
  2082. sum:
  2083. aggregationTemporality: 2
  2084. dataPoints:
  2085. - asInt: "0"
  2086. attributes:
  2087. - key: direction
  2088. value:
  2089. stringValue: received
  2090. startTimeUnixNano: "2000000"
  2091. timeUnixNano: "1000000"
  2092. - asInt: "0"
  2093. attributes:
  2094. - key: direction
  2095. value:
  2096. stringValue: received
  2097. startTimeUnixNano: "2000000"
  2098. timeUnixNano: "1000000"
  2099. - asInt: "0"
  2100. attributes:
  2101. - key: direction
  2102. value:
  2103. stringValue: received
  2104. startTimeUnixNano: "2000000"
  2105. timeUnixNano: "1000000"
  2106. - asInt: "0"
  2107. attributes:
  2108. - key: direction
  2109. value:
  2110. stringValue: received
  2111. startTimeUnixNano: "2000000"
  2112. timeUnixNano: "1000000"
  2113. - asInt: "0"
  2114. attributes:
  2115. - key: direction
  2116. value:
  2117. stringValue: received
  2118. startTimeUnixNano: "2000000"
  2119. timeUnixNano: "1000000"
  2120. - asInt: "0"
  2121. attributes:
  2122. - key: direction
  2123. value:
  2124. stringValue: received
  2125. startTimeUnixNano: "2000000"
  2126. timeUnixNano: "1000000"
  2127. - asInt: "0"
  2128. attributes:
  2129. - key: direction
  2130. value:
  2131. stringValue: transmitted
  2132. startTimeUnixNano: "2000000"
  2133. timeUnixNano: "1000000"
  2134. - asInt: "0"
  2135. attributes:
  2136. - key: direction
  2137. value:
  2138. stringValue: transmitted
  2139. startTimeUnixNano: "2000000"
  2140. timeUnixNano: "1000000"
  2141. - asInt: "0"
  2142. attributes:
  2143. - key: direction
  2144. value:
  2145. stringValue: transmitted
  2146. startTimeUnixNano: "2000000"
  2147. timeUnixNano: "1000000"
  2148. - asInt: "0"
  2149. attributes:
  2150. - key: direction
  2151. value:
  2152. stringValue: transmitted
  2153. startTimeUnixNano: "2000000"
  2154. timeUnixNano: "1000000"
  2155. - asInt: "0"
  2156. attributes:
  2157. - key: direction
  2158. value:
  2159. stringValue: transmitted
  2160. startTimeUnixNano: "2000000"
  2161. timeUnixNano: "1000000"
  2162. - asInt: "0"
  2163. attributes:
  2164. - key: direction
  2165. value:
  2166. stringValue: transmitted
  2167. startTimeUnixNano: "2000000"
  2168. timeUnixNano: "1000000"
  2169. unit: By/sec
  2170. - description: The network utilization combined transmit and receive rates during an interval.
  2171. name: vcenter.vm.network.usage
  2172. sum:
  2173. aggregationTemporality: 2
  2174. dataPoints:
  2175. - asInt: "0"
  2176. startTimeUnixNano: "2000000"
  2177. timeUnixNano: "1000000"
  2178. - asInt: "0"
  2179. startTimeUnixNano: "2000000"
  2180. timeUnixNano: "1000000"
  2181. - asInt: "0"
  2182. startTimeUnixNano: "2000000"
  2183. timeUnixNano: "1000000"
  2184. - asInt: "0"
  2185. startTimeUnixNano: "2000000"
  2186. timeUnixNano: "1000000"
  2187. - asInt: "0"
  2188. startTimeUnixNano: "2000000"
  2189. timeUnixNano: "1000000"
  2190. - asInt: "0"
  2191. startTimeUnixNano: "2000000"
  2192. timeUnixNano: "1000000"
  2193. unit: '{KiBy/s}'
  2194. scope:
  2195. name: otelcol/vcenterreceiver
  2196. version: latest