Source
101
101
{
102
102
zbx_uint64_t itemid;
103
103
zbx_uint64_t revision;
104
104
105
105
zbx_pp_item_preproc_t *preproc;
106
106
}
107
107
zbx_pp_item_t;
108
108
109
109
void zbx_pp_item_clear(zbx_pp_item_t *item);
110
110
111
-
#define ZBX_PP_VALUE_OPT_NONE 0x0000
112
-
#define ZBX_PP_VALUE_OPT_META 0x0001
113
-
#define ZBX_PP_VALUE_OPT_LOG 0x0002
114
-
115
-
typedef struct
116
-
{
117
-
zbx_uint32_t flags;
118
-
int mtime;
119
-
int timestamp;
120
-
int severity;
121
-
int logeventid;
122
-
zbx_uint64_t lastlogsize;
123
-
char *source;
124
-
}
125
-
zbx_pp_value_opt_t;
126
-
127
-
void zbx_pp_value_opt_clear(zbx_pp_value_opt_t *opt);
128
-
129
111
#endif