Code

contrib/collection3: Use “{plugin_inst}/{type_inst}” for “{instance}”
[collectd.git] / contrib / collection3 / lib / Collectd / Graph / Type.pm
index 01c2417c39db7bab0e5a74fbd6f91b4724e7c60a..81add728382898ea513f68d757774f161d7c07ed 100644 (file)
@@ -250,7 +250,11 @@ sub getTitle
   my $type_instance = $ident->{'type_instance'};
   my $instance;
 
-  if (defined $type_instance)
+  if ((defined $type_instance) && (defined $plugin_instance))
+  {
+    $instance = "$plugin_instance/$type_instance";
+  }
+  elsif (defined $type_instance)
   {
     $instance = $type_instance;
   }