(t *testing.T)
| 32 | ) |
| 33 | |
| 34 | func TestIPVSCollector(t *testing.T) { |
| 35 | testcases := []struct { |
| 36 | labels string |
| 37 | expects []string |
| 38 | err error |
| 39 | }{ |
| 40 | { |
| 41 | "<none>", |
| 42 | []string{ |
| 43 | prometheus.NewDesc("node_ipvs_connections_total", "The total number of connections made.", nil, nil).String(), |
| 44 | prometheus.NewDesc("node_ipvs_incoming_packets_total", "The total number of incoming packets.", nil, nil).String(), |
| 45 | prometheus.NewDesc("node_ipvs_outgoing_packets_total", "The total number of outgoing packets.", nil, nil).String(), |
| 46 | prometheus.NewDesc("node_ipvs_incoming_bytes_total", "The total amount of incoming data.", nil, nil).String(), |
| 47 | prometheus.NewDesc("node_ipvs_outgoing_bytes_total", "The total amount of outgoing data.", nil, nil).String(), |
| 48 | prometheus.NewDesc("node_ipvs_backend_connections_active", "The current active connections by local and remote address.", []string{"local_address", "local_port", "remote_address", "remote_port", "proto", "local_mark"}, nil).String(), |
| 49 | prometheus.NewDesc("node_ipvs_backend_connections_inactive", "The current inactive connections by local and remote address.", []string{"local_address", "local_port", "remote_address", "remote_port", "proto", "local_mark"}, nil).String(), |
| 50 | prometheus.NewDesc("node_ipvs_backend_weight", "The current backend weight by local and remote address.", []string{"local_address", "local_port", "remote_address", "remote_port", "proto", "local_mark"}, nil).String(), |
| 51 | }, |
| 52 | nil, |
| 53 | }, |
| 54 | { |
| 55 | "", |
| 56 | []string{ |
| 57 | prometheus.NewDesc("node_ipvs_connections_total", "The total number of connections made.", nil, nil).String(), |
| 58 | prometheus.NewDesc("node_ipvs_incoming_packets_total", "The total number of incoming packets.", nil, nil).String(), |
| 59 | prometheus.NewDesc("node_ipvs_outgoing_packets_total", "The total number of outgoing packets.", nil, nil).String(), |
| 60 | prometheus.NewDesc("node_ipvs_incoming_bytes_total", "The total amount of incoming data.", nil, nil).String(), |
| 61 | prometheus.NewDesc("node_ipvs_outgoing_bytes_total", "The total amount of outgoing data.", nil, nil).String(), |
| 62 | prometheus.NewDesc("node_ipvs_backend_connections_active", "The current active connections by local and remote address.", nil, nil).String(), |
| 63 | prometheus.NewDesc("node_ipvs_backend_connections_inactive", "The current inactive connections by local and remote address.", nil, nil).String(), |
| 64 | prometheus.NewDesc("node_ipvs_backend_weight", "The current backend weight by local and remote address.", nil, nil).String(), |
| 65 | }, |
| 66 | nil, |
| 67 | }, |
| 68 | { |
| 69 | "local_port", |
| 70 | []string{ |
| 71 | prometheus.NewDesc("node_ipvs_connections_total", "The total number of connections made.", nil, nil).String(), |
| 72 | prometheus.NewDesc("node_ipvs_incoming_packets_total", "The total number of incoming packets.", nil, nil).String(), |
| 73 | prometheus.NewDesc("node_ipvs_outgoing_packets_total", "The total number of outgoing packets.", nil, nil).String(), |
| 74 | prometheus.NewDesc("node_ipvs_incoming_bytes_total", "The total amount of incoming data.", nil, nil).String(), |
| 75 | prometheus.NewDesc("node_ipvs_outgoing_bytes_total", "The total amount of outgoing data.", nil, nil).String(), |
| 76 | prometheus.NewDesc("node_ipvs_backend_connections_active", "The current active connections by local and remote address.", []string{"local_port"}, nil).String(), |
| 77 | prometheus.NewDesc("node_ipvs_backend_connections_inactive", "The current inactive connections by local and remote address.", []string{"local_port"}, nil).String(), |
| 78 | prometheus.NewDesc("node_ipvs_backend_weight", "The current backend weight by local and remote address.", []string{"local_port"}, nil).String(), |
| 79 | }, |
| 80 | nil, |
| 81 | }, |
| 82 | { |
| 83 | "local_address,local_port", |
| 84 | []string{ |
| 85 | prometheus.NewDesc("node_ipvs_connections_total", "The total number of connections made.", nil, nil).String(), |
| 86 | prometheus.NewDesc("node_ipvs_incoming_packets_total", "The total number of incoming packets.", nil, nil).String(), |
| 87 | prometheus.NewDesc("node_ipvs_outgoing_packets_total", "The total number of outgoing packets.", nil, nil).String(), |
| 88 | prometheus.NewDesc("node_ipvs_incoming_bytes_total", "The total amount of incoming data.", nil, nil).String(), |
| 89 | prometheus.NewDesc("node_ipvs_outgoing_bytes_total", "The total amount of outgoing data.", nil, nil).String(), |
| 90 | prometheus.NewDesc("node_ipvs_backend_connections_active", "The current active connections by local and remote address.", []string{"local_address", "local_port"}, nil).String(), |
| 91 | prometheus.NewDesc("node_ipvs_backend_connections_inactive", "The current inactive connections by local and remote address.", []string{"local_address", "local_port"}, nil).String(), |
nothing calls this directly
no test coverage detected