From 2031f7497238fba5e94fda3299114d2d73af9b68 Mon Sep 17 00:00:00 2001 From: Or Ouziel Date: Sun, 24 Jul 2022 12:23:29 +0300 Subject: [PATCH] add Id to benchmark struct --- evaluator/evaluator.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evaluator/evaluator.go b/evaluator/evaluator.go index 90aaf9902a..a1e7890f2e 100644 --- a/evaluator/evaluator.go +++ b/evaluator/evaluator.go @@ -19,6 +19,7 @@ package evaluator import ( "context" + "github.com/elastic/cloudbeat/resources/fetching" ) @@ -72,6 +73,7 @@ type Rule struct { } type Benchmark struct { + Id string `json:"id"` Name string `json:"name"` Version string `json:"version"` }