Skip to content

Commit

Permalink
cms_get and cmd_set mixed up in memcached module (elastic#5189)
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusj18 authored and tsg committed Sep 25, 2017
1 parent 57f67e7 commit f1bc714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metricbeat/module/memcached/stats/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var (
"misses": c.Int("get_misses"),
},
"cmd": s.Object{
"get": c.Int("cmd_set"),
"set": c.Int("cmd_get"),
"get": c.Int("cmd_get"),
"set": c.Int("cmd_set"),
},
"read": s.Object{
"bytes": c.Int("bytes_read"),
Expand Down

0 comments on commit f1bc714

Please sign in to comment.