youtubebeat/vendor/github.com/elastic/beats/metricbeat/module/kubernetes/system/data.go

80 lines
2.2 KiB
Go

// 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 system
import (
"encoding/json"
"fmt"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/module/kubernetes"
)
func eventMapping(content []byte) ([]common.MapStr, error) {
events := []common.MapStr{}
var summary kubernetes.Summary
err := json.Unmarshal(content, &summary)
if err != nil {
return nil, fmt.Errorf("Cannot unmarshal json response: %s", err)
}
node := summary.Node
for _, syscontainer := range node.SystemContainers {
containerEvent := common.MapStr{
mb.ModuleDataKey: common.MapStr{
"node": common.MapStr{
"name": node.NodeName,
},
},
"container": syscontainer.Name,
"cpu": common.MapStr{
"usage": common.MapStr{
"nanocores": syscontainer.CPU.UsageNanoCores,
"core": common.MapStr{
"ns": syscontainer.CPU.UsageCoreNanoSeconds,
},
},
},
"memory": common.MapStr{
"usage": common.MapStr{
"bytes": syscontainer.Memory.UsageBytes,
},
"workingset": common.MapStr{
"bytes": syscontainer.Memory.WorkingSetBytes,
},
"rss": common.MapStr{
"bytes": syscontainer.Memory.RssBytes,
},
"pagefaults": syscontainer.Memory.PageFaults,
"majorpagefaults": syscontainer.Memory.MajorPageFaults,
},
}
if syscontainer.StartTime != "" {
containerEvent.Put("start_time", syscontainer.StartTime)
}
events = append(events, containerEvent)
}
return events, nil
}