2 * collectd - src/plugin.h
3 * Copyright (C) 2005-2014 Florian octo Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian octo Forster <octo at collectd.org>
25 * Sebastian Harl <sh at tokkee.org>
32 #include "configfile.h"
33 #include "meta_data.h"
34 #include "utils_time.h"
40 #define PLUGIN_FLAGS_GLOBAL 0x0001
42 #define DATA_MAX_NAME_LEN 64
44 #define DS_TYPE_COUNTER 0
45 #define DS_TYPE_GAUGE 1
46 #define DS_TYPE_DERIVE 2
47 #define DS_TYPE_ABSOLUTE 3
49 #define DS_TYPE_TO_STRING(t) (t == DS_TYPE_COUNTER) ? "counter" : \
50 (t == DS_TYPE_GAUGE) ? "gauge" : \
51 (t == DS_TYPE_DERIVE) ? "derive" : \
52 (t == DS_TYPE_ABSOLUTE) ? "absolute" : \
60 # define LOG_WARNING 4
72 #define NOTIF_MAX_MSG_LEN 256
74 #define NOTIF_FAILURE 1
75 #define NOTIF_WARNING 2
78 #define plugin_interval (plugin_get_ctx().interval)
83 typedef unsigned long long counter_t;
84 typedef double gauge_t;
85 typedef int64_t derive_t;
86 typedef uint64_t absolute_t;
95 typedef union value_u value_t;
103 char host[DATA_MAX_NAME_LEN];
104 char plugin[DATA_MAX_NAME_LEN];
105 char plugin_instance[DATA_MAX_NAME_LEN];
106 char type[DATA_MAX_NAME_LEN];
107 char type_instance[DATA_MAX_NAME_LEN];
110 typedef struct value_list_s value_list_t;
112 #define VALUE_LIST_INIT { NULL, 0, 0, plugin_get_interval (), \
113 "localhost", "", "", "", "", NULL }
114 #define VALUE_LIST_STATIC { NULL, 0, 0, 0, "localhost", "", "", "", "", NULL }
118 char name[DATA_MAX_NAME_LEN];
123 typedef struct data_source_s data_source_t;
127 char type[DATA_MAX_NAME_LEN];
131 typedef struct data_set_s data_set_t;
133 enum notification_meta_type_e
137 NM_TYPE_UNSIGNED_INT,
142 typedef struct notification_meta_s
144 char name[DATA_MAX_NAME_LEN];
145 enum notification_meta_type_e type;
148 const char *nm_string;
149 int64_t nm_signed_int;
150 uint64_t nm_unsigned_int;
154 struct notification_meta_s *next;
155 } notification_meta_t;
157 typedef struct notification_s
161 char message[NOTIF_MAX_MSG_LEN];
162 char host[DATA_MAX_NAME_LEN];
163 char plugin[DATA_MAX_NAME_LEN];
164 char plugin_instance[DATA_MAX_NAME_LEN];
165 char type[DATA_MAX_NAME_LEN];
166 char type_instance[DATA_MAX_NAME_LEN];
167 notification_meta_t *meta;
173 void (*free_func) (void *);
175 typedef struct user_data_s user_data_t;
180 cdtime_t flush_interval;
181 cdtime_t flush_timeout;
183 typedef struct plugin_ctx_s plugin_ctx_t;
188 typedef int (*plugin_init_cb) (void);
189 typedef int (*plugin_read_cb) (user_data_t *);
190 typedef int (*plugin_write_cb) (const data_set_t *, const value_list_t *,
192 typedef int (*plugin_flush_cb) (cdtime_t timeout, const char *identifier,
194 /* "missing" callback. Returns less than zero on failure, zero if other
195 * callbacks should be called, greater than zero if no more callbacks should be
197 typedef int (*plugin_missing_cb) (const value_list_t *, user_data_t *);
198 typedef void (*plugin_log_cb) (int severity, const char *message,
200 typedef int (*plugin_shutdown_cb) (void);
201 typedef int (*plugin_notification_cb) (const notification_t *,
209 * Sets the current `plugindir'
212 * `dir' Path to the plugin directory
215 * If `dir' is NULL the compiled in default `PLUGINDIR' is used.
217 void plugin_set_dir (const char *dir);
224 * Searches the current `plugindir' (see `plugin_set_dir') for the plugin
225 * named $type and loads it. Afterwards the plugin's `module_register'
226 * function is called, which then calls `plugin_register' to register callback
230 * `name' Name of the plugin to load.
231 * `flags' Hints on how to handle this plugin.
234 * Returns zero upon success, a value greater than zero if no plugin was found
235 * and a value below zero if an error occurs.
238 * Re-loading an already loaded module is detected and zero is returned in
241 int plugin_load (const char *name, uint32_t flags);
243 void plugin_init_all (void);
244 void plugin_read_all (void);
245 int plugin_read_all_once (void);
246 void plugin_shutdown_all (void);
253 * Calls the write function of the given plugin with the provided data set and
254 * value list. It differs from `plugin_dispatch_value' in that it does not
255 * update the cache, does not do threshold checking, call the chain subsystem
256 * and so on. It looks up the requested plugin and invokes the function, end
260 * plugin Name of the plugin. If NULL, the value is sent to all registered
262 * ds Pointer to the data_set_t structure. If NULL, the data set is
263 * looked up according to the `type' member in the `vl' argument.
264 * vl The actual value to be processed. Must not be NULL.
267 * Returns zero upon success or non-zero if an error occurred. If `plugin' is
268 * NULL and more than one plugin is called, an error is only returned if *all*
272 * This is the function used by the `write' built-in target. May be used by
273 * other target plugins.
275 int plugin_write (const char *plugin,
276 const data_set_t *ds, const value_list_t *vl);
278 int plugin_flush (const char *plugin, cdtime_t timeout, const char *identifier);
281 * The `plugin_register_*' functions are used to make `config', `init',
282 * `read', `write' and `shutdown' functions known to the plugin
283 * infrastructure. Also, the data-formats are made public like this.
285 int plugin_register_config (const char *name,
286 int (*callback) (const char *key, const char *val),
287 const char **keys, int keys_num);
288 int plugin_register_complex_config (const char *type,
289 int (*callback) (oconfig_item_t *));
290 int plugin_register_init (const char *name,
291 plugin_init_cb callback);
292 int plugin_register_read (const char *name,
293 int (*callback) (void));
294 /* "user_data" will be freed automatically, unless
295 * "plugin_register_complex_read" returns an error (non-zero). */
296 int plugin_register_complex_read (const char *group, const char *name,
297 plugin_read_cb callback,
299 user_data_t *user_data);
300 int plugin_register_write (const char *name,
301 plugin_write_cb callback, user_data_t *user_data);
302 int plugin_register_flush (const char *name,
303 plugin_flush_cb callback, user_data_t *user_data);
304 int plugin_register_missing (const char *name,
305 plugin_missing_cb callback, user_data_t *user_data);
306 int plugin_register_shutdown (const char *name,
307 plugin_shutdown_cb callback);
308 int plugin_register_data_set (const data_set_t *ds);
309 int plugin_register_log (const char *name,
310 plugin_log_cb callback, user_data_t *user_data);
311 int plugin_register_notification (const char *name,
312 plugin_notification_cb callback, user_data_t *user_data);
314 int plugin_unregister_config (const char *name);
315 int plugin_unregister_complex_config (const char *name);
316 int plugin_unregister_init (const char *name);
317 int plugin_unregister_read (const char *name);
318 int plugin_unregister_read_group (const char *group);
319 int plugin_unregister_write (const char *name);
320 int plugin_unregister_flush (const char *name);
321 int plugin_unregister_missing (const char *name);
322 int plugin_unregister_shutdown (const char *name);
323 int plugin_unregister_data_set (const char *name);
324 int plugin_unregister_log (const char *name);
325 int plugin_unregister_notification (const char *name);
329 * plugin_log_available_writers
332 * This function can be called to output a list of _all_ registered
333 * writers to the logfacility.
334 * Since some writers dynamically build their name it can be hard for
335 * the configuring person to know it. This function will fill this gap.
337 void plugin_log_available_writers (void);
341 * plugin_dispatch_values
344 * This function is called by reading processes with the values they've
345 * aquired. The function fetches the data-set definition (that has been
346 * registered using `plugin_register_data_set') and calls _all_ registered
350 * `vl' Value list of the values that have been read by a `read'
353 int plugin_dispatch_values (value_list_t const *vl);
357 * plugin_dispatch_multivalue
360 * plugin_dispatch_multivalue (vl, 1, DS_TYPE_GAUGE,
366 * Takes a list of type instances and values and dispatches that in a batch,
367 * making sure that all values have the same time stamp. If "store_percentage"
368 * is set to true, the "type" is set to "percent" and a percentage is
369 * calculated and dispatched, rather than the absolute values. Values that are
370 * NaN are dispatched as NaN and will not influence the total.
372 * The variadic arguments is a list of type_instance / type pairs, that are
373 * interpreted as type "char const *" and type, encoded by their corresponding
376 * - "gauge_t" when "DS_TYPE_GAUGE"
377 * - "absolute_t" when "DS_TYPE_ABSOLUTE"
378 * - "derive_t" when "DS_TYPE_DERIVE"
379 * - "counter_t" when "DS_TYPE_COUNTER"
381 * The last argument must be
382 * a NULL pointer to signal end-of-list.
385 * The number of values it failed to dispatch (zero on success).
387 __attribute__((sentinel))
388 int plugin_dispatch_multivalue (value_list_t const *vl,
389 _Bool store_percentage, int store_type, ...);
391 int plugin_dispatch_missing (const value_list_t *vl);
393 int plugin_dispatch_notification (const notification_t *notif);
395 void plugin_log (int level, const char *format, ...)
396 __attribute__ ((format(printf,2,3)));
398 /* These functions return the parsed severity or less than zero on failure. */
399 int parse_log_severity (const char *severity);
400 int parse_notif_severity (const char *severity);
402 #define ERROR(...) plugin_log (LOG_ERR, __VA_ARGS__)
403 #define WARNING(...) plugin_log (LOG_WARNING, __VA_ARGS__)
404 #define NOTICE(...) plugin_log (LOG_NOTICE, __VA_ARGS__)
405 #define INFO(...) plugin_log (LOG_INFO, __VA_ARGS__)
407 # define DEBUG(...) plugin_log (LOG_DEBUG, __VA_ARGS__)
408 #else /* COLLECT_DEBUG */
409 # define DEBUG(...) /* noop */
410 #endif /* ! COLLECT_DEBUG */
412 const data_set_t *plugin_get_ds (const char *name);
414 int plugin_notification_meta_add_string (notification_t *n,
417 int plugin_notification_meta_add_signed_int (notification_t *n,
420 int plugin_notification_meta_add_unsigned_int (notification_t *n,
423 int plugin_notification_meta_add_double (notification_t *n,
426 int plugin_notification_meta_add_boolean (notification_t *n,
430 int plugin_notification_meta_copy (notification_t *dst,
431 const notification_t *src);
433 int plugin_notification_meta_free (notification_meta_t *n);
436 * Plugin context management.
439 void plugin_init_ctx (void);
441 plugin_ctx_t plugin_get_ctx (void);
442 plugin_ctx_t plugin_set_ctx (plugin_ctx_t ctx);
446 * plugin_get_interval
449 * This function returns the current value of the plugin's interval. The
450 * return value will be strictly greater than zero in all cases. If
451 * everything else fails, it will fall back to 10 seconds.
453 cdtime_t plugin_get_interval (void);
456 * Context-aware thread management.
459 int plugin_thread_create (pthread_t *thread, const pthread_attr_t *attr,
460 void *(*start_routine) (void *), void *arg);
463 * Plugins need to implement this
466 void module_register (void);
468 #endif /* PLUGIN_H */