diff options
author | Ray Kinsella <mdr@ashroe.eu> | 2021-05-21 16:17:39 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-05-26 06:45:40 +0000 |
commit | dbf90d499bb9e36e3bbb57a0b964003e3eb183c5 (patch) | |
tree | 0d80d4cf62a09a41c9adfd97ae77f13b6994d502 /src/plugins/perfmon/cli.c | |
parent | a2d6d352c6926d2f8d4e50aeb1ec59802f32b37b (diff) |
perfmon: revert raw column support
Revert raw column from the perfmon plugin.
Type: refactor
Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
Change-Id: If127f57ee2022cc1c0ea5177f1655a792f195f1d
Diffstat (limited to 'src/plugins/perfmon/cli.c')
-rw-r--r-- | src/plugins/perfmon/cli.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/plugins/perfmon/cli.c b/src/plugins/perfmon/cli.c index f6678772d84..3305480031d 100644 --- a/src/plugins/perfmon/cli.c +++ b/src/plugins/perfmon/cli.c @@ -275,19 +275,10 @@ show_perfmon_stats_command_fn (vlib_main_t *vm, unformat_input_t *input, perfmon_instance_t *in; u8 *s = 0; int n_row = 0; - u8 raw = 0; if (b == 0) return clib_error_return (0, "no bundle selected"); - while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) - { - if (unformat (input, "raw")) - raw = 1; - else - break; - } - n_instances = vec_len (it->instances); vec_validate (readings, n_instances - 1); @@ -314,13 +305,6 @@ show_perfmon_stats_command_fn (vlib_main_t *vm, unformat_input_t *input, char **hdr = b->column_headers; while (hdr[0]) table_format_cell (t, -1, n_row++, "%s", hdr++[0]); - - if (b->raw_column_headers && raw) - { - hdr = b->raw_column_headers; - while (hdr[0]) - table_format_cell (t, -1, n_row++, "%s", hdr++[0]); - } } int col = 0; @@ -358,9 +342,6 @@ show_perfmon_stats_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_output (vm, "%U\n", format_table, t); table_free (t); - if (raw) - vlib_cli_output (vm, "Sample time is %.4f seconds \n", pm->sample_time); - if (b->footer) vlib_cli_output (vm, "\n%s\n", b->footer); |