]> git.ipfire.org Git - thirdparty/collectd.git/commitdiff
daemon: Add "plugin_instance" and "type_instance" back to identifier_t.
authorFlorian Forster <octo@google.com>
Wed, 29 Jul 2020 07:53:41 +0000 (09:53 +0200)
committerFlorian Forster <octo@google.com>
Wed, 29 Jul 2020 07:58:36 +0000 (09:58 +0200)
src/daemon/plugin.h

index 39616174714b1aa36c1bd8ff593361794b4da26e..96f75d691e922c85bd51c0215469d5827cc66430 100644 (file)
@@ -79,8 +79,9 @@
 struct identifier_s {
   char *host;
   char *plugin;
+  char *plugin_instance;
   char *type;
-  char *data_source;
+  char *type_instance;
 };
 typedef struct identifier_s identifier_t;