Skip to content

Commit 890103c

Browse files
committed
updating to elastic-agent-autodiscovery v.0.6.13
1 parent d09e8bc commit 890103c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/dolmen-go/contextio v0.0.0-20200217195037-68fc5150bcd5
1414
github.com/elastic/beats/v7 v7.17.18
1515
github.com/elastic/e2e-testing v1.1.0
16-
github.com/elastic/elastic-agent-autodiscover v0.6.12
16+
github.com/elastic/elastic-agent-autodiscover v0.6.13
1717
github.com/elastic/elastic-agent-client/v7 v7.8.1
1818
github.com/elastic/elastic-agent-libs v0.9.1
1919
github.com/elastic/elastic-agent-system-metrics v0.9.2

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -819,8 +819,8 @@ github.com/elastic/e2e-testing v1.1.0 h1:Y+K215EWkf3ojAWmBK2JrxH/rITjkKM1zR8mnwI
819819
github.com/elastic/e2e-testing v1.1.0/go.mod h1:8q2d8dmwavJXISowwaoreHFBnbR/uK4qanfRGhC/W9A=
820820
github.com/elastic/ecs v1.12.0 h1:u6WZ2AWtxv5vHvTQ4EuVZdWZ51mKHQ2UIltRePcta5U=
821821
github.com/elastic/ecs v1.12.0/go.mod h1:pgiLbQsijLOJvFR8OTILLu0Ni/R/foUNg0L+T6mU9b4=
822-
github.com/elastic/elastic-agent-autodiscover v0.6.12 h1:tAKM7ImtMA+mKFrjVfAi4M1pTBvb+8EZSTaOF0RxQaA=
823-
github.com/elastic/elastic-agent-autodiscover v0.6.12/go.mod h1:7P6YVKxuBT0qE/VxuA87obwZUAEU0O44mCN3r4/6x8w=
822+
github.com/elastic/elastic-agent-autodiscover v0.6.13 h1:zBeTxV+o2efEKntY+o6iMMNJ1AVjDXUqY3o6uzIkKaw=
823+
github.com/elastic/elastic-agent-autodiscover v0.6.13/go.mod h1:7P6YVKxuBT0qE/VxuA87obwZUAEU0O44mCN3r4/6x8w=
824824
github.com/elastic/elastic-agent-client/v7 v7.8.1 h1:J9wZc/0mUvSEok0X5iR5+n60Jgb+AWooKddb3XgPWqM=
825825
github.com/elastic/elastic-agent-client/v7 v7.8.1/go.mod h1:axl1nkdqc84YRFkeJGD9jExKNPUrOrzf3DFo2m653nY=
826826
github.com/elastic/elastic-agent-libs v0.9.1 h1:vuvWNER0CS9zvHC9fT6zqEGWLPk9j/wbFbiC9GCMfps=

internal/pkg/composable/providers/kubernetes/hints.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ func GetHintsMapping(k8sMapping map[string]interface{}, logger *logp.Logger, pre
290290
}
291291
}
292292

293-
hintsExtracted, _ := utils.GenerateHints(annotations, cName, prefix, allSupportedHints)
293+
hintsExtracted, _ := utils.GenerateHints(annotations, cName, prefix, false, allSupportedHints)
294294
if len(hintsExtracted) == 0 {
295295
return hintData
296296
}

internal/pkg/composable/providers/kubernetes/pod.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func (p *pod) emitRunning(pod *kubernetes.Pod) {
212212
if !p.managed {
213213
if ann, ok := data.mapping["annotations"]; ok {
214214
annotations, _ := ann.(mapstr.M)
215-
hints, incorrecthints := utils.GenerateHints(annotations, "", p.config.Prefix, allSupportedHints)
215+
hints, incorrecthints := utils.GenerateHints(annotations, "", p.config.Prefix, true, allSupportedHints)
216216
//We check whether the provided annotation follows the supported format and vocabulary. The check happens for annotations that have prefix co.elastic
217217
for _, value := range incorrecthints {
218218
p.logger.Warnf("provided hint: %s/%s is not recognised as supported annotation for pod %s in namespace %s", p.config.Prefix, value, pod.Name, pod.ObjectMeta.Namespace)

0 commit comments

Comments
 (0)