sigs.k8s.io/cluster-api@v1.7.1/config/metrics/templates/common_metrics.yaml (about)

     1      - name: created
     2        help: Unix creation timestamp.
     3        each:
     4          gauge:
     5            path:
     6            - metadata
     7            - creationTimestamp
     8          type: Gauge
     9      - name: annotation_paused
    10        help: Whether the ${RESOURCE} is paused and any of its resources will not be processed by the controllers.
    11        each:
    12          info:
    13            path:
    14            - metadata
    15            - annotations
    16            - cluster.x-k8s.io/paused
    17            labelsFromPath:
    18              paused_value: []
    19          type: Info
    20      - name: status_condition
    21        help: The condition of a ${RESOURCE}.
    22        each:
    23          stateSet:
    24            labelName: status
    25            labelsFromPath:
    26              type:
    27              - type
    28            list:
    29            - 'True'
    30            - 'False'
    31            - Unknown
    32            path:
    33            - status
    34            - conditions
    35            valueFrom:
    36            - status
    37          type: StateSet
    38      - name: status_condition_last_transition_time
    39        help: The condition last transition time of a ${RESOURCE}.
    40        each:
    41          gauge:
    42            labelsFromPath:
    43              type:
    44              - type
    45              status:
    46              - status
    47            path:
    48            - status
    49            - conditions
    50            valueFrom:
    51            - lastTransitionTime
    52          type: Gauge