docker/helpers.go (30 lines of code) (raw):

// Licensed to Elasticsearch B.V. under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Elasticsearch B.V. licenses this file to you under // the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package docker import ( "strings" "github.com/elastic/elastic-agent-autodiscover/utils" "github.com/elastic/elastic-agent-libs/mapstr" "github.com/elastic/elastic-agent-libs/safemapstr" ) // ExtractContainerName strips the `/` characters that frequently appear in container names func ExtractContainerName(names []string) string { output := names[0] if len(names) > 1 { for _, name := range names { if strings.Count(output, "/") > strings.Count(name, "/") { output = name } } } return strings.Trim(output, "/") } // DeDotLabels returns a new mapstr.M containing a copy of the labels // where the dots have been converted into nested structure, avoiding // possible mapping errors func DeDotLabels(labels map[string]string, dedot bool) mapstr.M { outputLabels := mapstr.M{} for k, v := range labels { if dedot { // This is necessary so that ES does not interpret '.' fields as new // nested JSON objects, and also makes this compatible with ES 2.x. label := utils.DeDot(k) _, _ = outputLabels.Put(label, v) } else { // If we don't dedot we ensure there are no mapping errors with safemapstr _ = safemapstr.Put(outputLabels, k, v) } } return outputLabels }