youtubebeat/vendor/github.com/elastic/beats/metricbeat/module/couchbase/cluster/data.go

134 lines
3.7 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 cluster
import (
"encoding/json"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
)
type StorageTotals_Ram struct {
Total int64 `json:"total"`
QuotaTotal int64 `json:"quotaTotal"`
QuotaUsed int64 `json:"quotaUsed"`
Used int64 `json:"used"`
UsedByData int64 `json:"usedByData"`
QuotaUsedPerNode int64 `json:"quotaUsedPerNode"`
QuotaTotalPerNode int64 `json:"quotaTotalPerNode"`
}
type StorageTotals_Hdd struct {
Total int64 `json:"total"`
QuotaTotal int64 `json:"quotaTotal"`
Used int64 `json:"used"`
UsedByData int64 `json:"usedByData"`
Free int64 `json:"free"`
}
type StorageTotals struct {
RAM StorageTotals_Ram `json:"ram"`
Hdd StorageTotals_Hdd `json:"hdd"`
}
type Data struct {
StorageTotals StorageTotals `json:"storageTotals"`
IndexMemoryQuota int64 `json:"indexMemoryQuota"`
MemoryQuota int64 `json:"memoryQuota"`
RebalanceStatus string `json:"rebalanceStatus"`
RebalanceProgressURI string `json:"rebalanceProgressUri"`
StopRebalanceURI string `json:"stopRebalanceUri"`
NodeStatusesURI string `json:"nodeStatusesUri"`
MaxBucketCount int64 `json:"maxBucketCount"`
}
func eventMapping(content []byte) common.MapStr {
var d Data
err := json.Unmarshal(content, &d)
if err != nil {
logp.Err("Error: ", err)
}
logp.Info("Printing Data:")
event := common.MapStr{
"hdd": common.MapStr{
"quota": common.MapStr{
"total": common.MapStr{
"bytes": d.StorageTotals.Hdd.QuotaTotal,
},
},
"free": common.MapStr{
"bytes": d.StorageTotals.Hdd.Free,
},
"total": common.MapStr{
"bytes": d.StorageTotals.Hdd.Total,
},
"used": common.MapStr{
"value": common.MapStr{
"bytes": d.StorageTotals.Hdd.Used,
},
"by_data": common.MapStr{
"bytes": d.StorageTotals.Hdd.UsedByData,
},
},
},
"max_bucket_count": d.MaxBucketCount,
"quota": common.MapStr{
"index_memory": common.MapStr{
"mb": d.IndexMemoryQuota,
},
"memory": common.MapStr{
"mb": d.MemoryQuota,
},
},
"ram": common.MapStr{
"quota": common.MapStr{
"total": common.MapStr{
"value": common.MapStr{
"bytes": d.StorageTotals.RAM.QuotaTotal,
},
"per_node": common.MapStr{
"bytes": d.StorageTotals.RAM.QuotaTotalPerNode,
},
},
"used": common.MapStr{
"value": common.MapStr{
"bytes": d.StorageTotals.RAM.QuotaUsed,
},
"per_node": common.MapStr{
"bytes": d.StorageTotals.RAM.QuotaUsedPerNode,
},
},
},
"total": common.MapStr{
"bytes": d.StorageTotals.RAM.Total,
},
"used": common.MapStr{
"value": common.MapStr{
"bytes": d.StorageTotals.RAM.Used,
},
"by_data": common.MapStr{
"bytes": d.StorageTotals.RAM.UsedByData,
},
},
},
}
return event
}