File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 9
9
| kube_node_spec_unschedulable | Gauge | Whether a node can schedule new pods | | ` node ` =< ; node-address> ; | STABLE |
10
10
| kube_node_spec_taint | Gauge | The taint of a cluster node. | | ` node ` =< ; node-address> ; <br > ` key ` =< ; taint-key> ; <br > ` value= ` < ; taint-value> ; <br > ` effect= ` < ; taint-effect> ; | STABLE |
11
11
| kube_node_status_capacity | Gauge | The total amount of resources available for a node | ` cpu ` =< ; core> ; <br > ` ephemeral_storage ` =< ; byte> ; <br > ` pods ` =< ; integer> ; <br > ` attachable_volumes_* ` =< ; byte> ; <br > ` hugepages_* ` =< ; byte> ; <br > ` memory ` =< ; byte> ; | ` node ` =< ; node-address> ; <br > ` resource ` =< ; resource-name> ; <br > ` unit ` =< ; resource-unit> ; | STABLE |
12
+ | kube_node_status_addresses | Gauge | The addresses of a node | | ` type ` =< ; address-type> ; <br > ` address ` =< ; address-value> ; | EXPERIMENTAL |
12
13
| kube_node_status_allocatable | Gauge | The amount of resources allocatable for pods (after reserving some for system daemons) | ` cpu ` =< ; core> ; <br > ` ephemeral_storage ` =< ; byte> ; <br > ` pods ` =< ; integer> ; <br > ` attachable_volumes_* ` =< ; byte> ; <br > ` hugepages_* ` =< ; byte> ; <br > ` memory ` =< ; byte> ; | ` node ` =< ; node-address> ; <br > ` resource ` =< ; resource-name> ; <br > ` unit ` =< ; resource-unit> ; | STABLE |
13
14
| kube_node_status_condition | Gauge | The condition of a cluster node | | ` node ` =< ; node-address> ; <br > ` condition ` =< ; node-condition> ; <br > ` status ` =< ; true\| false\| unknown> ; | STABLE |
14
15
| kube_node_created | Gauge | Unix creation timestamp | seconds | ` node ` =< ; node-address> ; | STABLE |
Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ func createNodeInfoFamilyGenerator() generator.FamilyGenerator {
158
158
n .Status .NodeInfo .SystemUUID ,
159
159
}
160
160
161
+ // TODO: remove internal_ip in v3, replaced by kube_node_status_addresses
161
162
internalIP := ""
162
163
for _ , address := range n .Status .Addresses {
163
164
if address .Type == "InternalIP" {
You can’t perform that action at this time.
0 commit comments