diff options
Diffstat (limited to 'libglusterfs/src/xlator.h')
-rw-r--r-- | libglusterfs/src/xlator.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libglusterfs/src/xlator.h b/libglusterfs/src/xlator.h index 81199bd1809..8a5ee819e5c 100644 --- a/libglusterfs/src/xlator.h +++ b/libglusterfs/src/xlator.h @@ -982,6 +982,8 @@ struct _xlator { int32_t (*init) (xlator_t *this); int32_t (*reconfigure) (xlator_t *this, dict_t *options); int32_t (*mem_acct_init) (xlator_t *this); + int32_t (*dump_metrics) (xlator_t *this, int fd); + event_notify_fn_t notify; gf_loglevel_t loglevel; /* Log level for translator */ @@ -1071,6 +1073,9 @@ typedef struct { optional. called during translator initialization */ int32_t (*mem_acct_init) (xlator_t *this); + /* dump_metrics(): used for providing internal metrics. optional */ + int32_t (*dump_metrics) (xlator_t *this, int fd); + /* notify(): used for handling the notification of events from either the parent or child in the graph. optional. */ event_notify_fn_t notify; |