From 63d2954f91bb3c288cfcfdf3caebd4b9324a7525 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Tue, 10 Aug 2021 14:18:33 +0300 Subject: [PATCH] Cache valuemap.get request --- pkg/zabbix/cache.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/zabbix/cache.go b/pkg/zabbix/cache.go index 70f1ab3..13f0e8c 100644 --- a/pkg/zabbix/cache.go +++ b/pkg/zabbix/cache.go @@ -16,6 +16,7 @@ var cachedMethods = map[string]bool{ "service.get": true, "usermacro.get": true, "proxy.get": true, + "valuemap.get": true, } func IsCachedRequest(method string) bool {