From 03525cdad8c31acf07974db714ebc8619e6a16fa Mon Sep 17 00:00:00 2001 From: = Date: Thu, 28 Oct 2021 16:38:33 +0200 Subject: [PATCH] Enable the metrics store --- cmd/apiary.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/apiary.go b/cmd/apiary.go index df833f8..cc60b39 100644 --- a/cmd/apiary.go +++ b/cmd/apiary.go @@ -82,6 +82,8 @@ func ActionServe(c *cli.Context) error { return fmt.Errorf("Invalid store configured") } + s = store.NewMetricsCollectingStore(s) + // Setup honeypot hs, err := ssh.NewHoneypotServer(cfg.Honeypot, s) if err != nil {