diff --git a/newrelic_plugin_agent/plugins/memcached.py b/newrelic_plugin_agent/plugins/memcached.py index bf6f5f0..2ef2e6c 100644 --- a/newrelic_plugin_agent/plugins/memcached.py +++ b/newrelic_plugin_agent/plugins/memcached.py @@ -58,7 +58,7 @@ def add_datapoints(self, stats): self.command_value('Delete', 'delete', stats) self.command_value('Get', 'get', stats) self.command_value('Incr', 'incr', stats) - self.add_derive_value('Command/Requests/Set', '', stats['cmd_set']) + self.add_derive_value('Command/Requests/Set', 'requests', stats['cmd_set']) self.add_gauge_value('Connection/Count', 'connections', stats['curr_connections'])