From adb3ff1f6cdd3c9c8667831a4768eed8a74e415f Mon Sep 17 00:00:00 2001 From: Blerim Sheqa Date: Thu, 20 Dec 2018 16:28:31 +0100 Subject: [PATCH] Patch dashboard exporter regarding elastic/beats/pull/8954 --- .../elastic/beats/dev-tools/cmd/dashboards/export_dashboards.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/github.com/elastic/beats/dev-tools/cmd/dashboards/export_dashboards.go b/vendor/github.com/elastic/beats/dev-tools/cmd/dashboards/export_dashboards.go index 421e0060..a5338099 100644 --- a/vendor/github.com/elastic/beats/dev-tools/cmd/dashboards/export_dashboards.go +++ b/vendor/github.com/elastic/beats/dev-tools/cmd/dashboards/export_dashboards.go @@ -117,7 +117,7 @@ func decodeValue(data common.MapStr, key string) { return } s := v.(string) - var d common.MapStr + var d interface{} json.Unmarshal([]byte(s), &d) data.Put(key, d)