Red Hat Training

A Red Hat training course is available for Red Hat Virtualization

B.40. 통계 유형 속성의 이름을 kind로 변경

statistic (gauge, counter 등)의 종류를 나타내는 type 요소 및 값의 유형을 나타내는 type 속성 (integer, string 등)을 사용하여 표시되는 통계입니다.

<statistic>
  <type>GAUGE</type>
  <values type="INTEGER">
    <value>...</value>
    <value>...</value>
    ...
  </values>
</statistic>

첫 번째가 종류로 교체된 두 가지 모두에 대해 유형 개념을 사용하지 않도록 하려면 이제 종류유형 모두 요소가 됩니다.

<statistic>
  <kind>gauge</kind>
  <type>integer</type>
  <values>
    <value>...</value>
    <value>...</value>
    ...
  </values>
</statistic>