diff options
author | Ray Kinsella <mdr@ashroe.eu> | 2021-01-21 18:18:45 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-03-16 21:36:47 +0000 |
commit | 5e798bce421aaae093ef795c0812420c83cddda6 (patch) | |
tree | e2895b34bee308a866e69297eccaa67d113d5760 /src/plugins/perfmon/perfmon.h | |
parent | 718359881ddae4569de0d029faa60fea05920922 (diff) |
perfmon: add support for raw and timestamps
Add perfmon plugin support to output raw counter and timestamps, both
are useful for debug.
Type: improvement
Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
Change-Id: Ia5a73d1f05e3464c18991c2346f0ed8b7ef63099
Diffstat (limited to 'src/plugins/perfmon/perfmon.h')
-rw-r--r-- | src/plugins/perfmon/perfmon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/perfmon/perfmon.h b/src/plugins/perfmon/perfmon.h index 61e44ea43d3..c8b8cc47716 100644 --- a/src/plugins/perfmon/perfmon.h +++ b/src/plugins/perfmon/perfmon.h @@ -93,6 +93,7 @@ typedef struct perfmon_bundle perfmon_bundle_init_fn_t *init_fn; char **column_headers; + char **raw_column_headers; format_function_t *format_fn; /* do not set manually */ @@ -133,6 +134,7 @@ typedef struct uword *source_by_name; perfmon_bundle_t *active_bundle; int is_running; + f64 sample_time; int *group_fds; int *fds_to_close; perfmon_instance_type_t *default_instance_type; |