From 7d06d898681600c9c7979532c1addbeb09b222df Mon Sep 17 00:00:00 2001 From: Lukasz Jagiello Date: Thu, 26 May 2016 01:58:47 +0000 Subject: [PATCH] (varnish plugin) Test case for uint64 value. --- plugins/inputs/varnish/varnish_test.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/inputs/varnish/varnish_test.go b/plugins/inputs/varnish/varnish_test.go index 4c5148b36..83cf1bbc2 100644 --- a/plugins/inputs/varnish/varnish_test.go +++ b/plugins/inputs/varnish/varnish_test.go @@ -121,6 +121,7 @@ var smOutput = ` MAIN.uptime 895 1.00 Child process uptime MAIN.cache_hit 95 0.00 Cache hits MAIN.cache_miss 5 0.00 Cache misses +MAIN.n_objectcore 18446744073709 . objectcore structs made MGT.uptime 896 1.00 Management process uptime MGT.child_start 1 0.00 Child process started MEMPOOL.vbc.live 0 . In use @@ -130,9 +131,10 @@ MEMPOOL.vbc.sz_wanted 88 . Size requested var parsedSmOutput = map[string]map[string]interface{}{ "MAIN": map[string]interface{}{ - "uptime": uint64(895), - "cache_hit": uint64(95), - "cache_miss": uint64(5), + "uptime": uint64(895), + "cache_hit": uint64(95), + "cache_miss": uint64(5), + "n_objectcore": uint64(18446744073709), }, "MGT": map[string]interface{}{ "uptime": uint64(896), @@ -193,7 +195,7 @@ MAIN.sess_queued 0 0.00 Sessions queued for thread MAIN.sess_dropped 0 0.00 Sessions dropped for thread MAIN.n_object 0 . object structs made MAIN.n_vampireobject 0 . unresurrected objects -MAIN.n_objectcore 0 . objectcore structs made +MAIN.n_objectcore 18446744073709 . objectcore structs made MAIN.n_objecthead 0 . objecthead structs made MAIN.n_waitinglist 0 . waitinglist structs made MAIN.n_backend 1 . Number of backends