313 lines
7.8 KiB
Go
313 lines
7.8 KiB
Go
// Copyright 2014 Google Inc. All Rights Reserved.
|
|
//
|
|
// Licensed 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 bigquery
|
|
|
|
import (
|
|
"os"
|
|
|
|
info "github.com/google/cadvisor/info/v1"
|
|
"github.com/google/cadvisor/storage"
|
|
"github.com/google/cadvisor/storage/bigquery/client"
|
|
|
|
bigquery "google.golang.org/api/bigquery/v2"
|
|
)
|
|
|
|
func init() {
|
|
storage.RegisterStorageDriver("bigquery", new)
|
|
}
|
|
|
|
type bigqueryStorage struct {
|
|
client *client.Client
|
|
machineName string
|
|
}
|
|
|
|
const (
|
|
// Bigquery schema types
|
|
typeTimestamp string = "TIMESTAMP"
|
|
typeString string = "STRING"
|
|
typeInteger string = "INTEGER"
|
|
|
|
colTimestamp string = "timestamp"
|
|
colMachineName string = "machine"
|
|
colContainerName string = "container_name"
|
|
colCpuCumulativeUsage string = "cpu_cumulative_usage"
|
|
// Cumulative Cpu usage in system and user mode
|
|
colCpuCumulativeUsageSystem string = "cpu_cumulative_usage_system"
|
|
colCpuCumulativeUsageUser string = "cpu_cumulative_usage_user"
|
|
// Memory usage
|
|
colMemoryUsage string = "memory_usage"
|
|
// Working set size
|
|
colMemoryWorkingSet string = "memory_working_set"
|
|
// Container page fault
|
|
colMemoryContainerPgfault string = "memory_container_pgfault"
|
|
// Constainer major page fault
|
|
colMemoryContainerPgmajfault string = "memory_container_pgmajfault"
|
|
// Hierarchical page fault
|
|
colMemoryHierarchicalPgfault string = "memory_hierarchical_pgfault"
|
|
// Hierarchical major page fault
|
|
colMemoryHierarchicalPgmajfault string = "memory_hierarchical_pgmajfault"
|
|
// Cumulative count of bytes received.
|
|
colRxBytes string = "rx_bytes"
|
|
// Cumulative count of receive errors encountered.
|
|
colRxErrors string = "rx_errors"
|
|
// Cumulative count of bytes transmitted.
|
|
colTxBytes string = "tx_bytes"
|
|
// Cumulative count of transmit errors encountered.
|
|
colTxErrors string = "tx_errors"
|
|
// Filesystem device.
|
|
colFsDevice = "fs_device"
|
|
// Filesystem limit.
|
|
colFsLimit = "fs_limit"
|
|
// Filesystem available space.
|
|
colFsUsage = "fs_usage"
|
|
)
|
|
|
|
func new() (storage.StorageDriver, error) {
|
|
hostname, err := os.Hostname()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return newStorage(
|
|
hostname,
|
|
*storage.ArgDbTable,
|
|
*storage.ArgDbName,
|
|
)
|
|
}
|
|
|
|
// TODO(jnagal): Infer schema through reflection. (See bigquery/client/example)
|
|
func (self *bigqueryStorage) GetSchema() *bigquery.TableSchema {
|
|
fields := make([]*bigquery.TableFieldSchema, 19)
|
|
i := 0
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeTimestamp,
|
|
Name: colTimestamp,
|
|
Mode: "REQUIRED",
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeString,
|
|
Name: colMachineName,
|
|
Mode: "REQUIRED",
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeString,
|
|
Name: colContainerName,
|
|
Mode: "REQUIRED",
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colCpuCumulativeUsage,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colCpuCumulativeUsageSystem,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colCpuCumulativeUsageUser,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colMemoryUsage,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colMemoryWorkingSet,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colMemoryContainerPgfault,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colMemoryContainerPgmajfault,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colMemoryHierarchicalPgfault,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colMemoryHierarchicalPgmajfault,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colRxBytes,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colRxErrors,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colTxBytes,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colTxErrors,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeString,
|
|
Name: colFsDevice,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colFsLimit,
|
|
}
|
|
i++
|
|
fields[i] = &bigquery.TableFieldSchema{
|
|
Type: typeInteger,
|
|
Name: colFsUsage,
|
|
}
|
|
return &bigquery.TableSchema{
|
|
Fields: fields,
|
|
}
|
|
}
|
|
|
|
func (self *bigqueryStorage) containerStatsToRows(
|
|
cInfo *info.ContainerInfo,
|
|
stats *info.ContainerStats,
|
|
) (row map[string]interface{}) {
|
|
row = make(map[string]interface{})
|
|
|
|
// Timestamp
|
|
row[colTimestamp] = stats.Timestamp
|
|
|
|
// Machine name
|
|
row[colMachineName] = self.machineName
|
|
|
|
// Container name
|
|
name := cInfo.ContainerReference.Name
|
|
if len(cInfo.ContainerReference.Aliases) > 0 {
|
|
name = cInfo.ContainerReference.Aliases[0]
|
|
}
|
|
row[colContainerName] = name
|
|
|
|
// Cumulative Cpu Usage
|
|
row[colCpuCumulativeUsage] = stats.Cpu.Usage.Total
|
|
|
|
// Cumulative Cpu Usage in system mode
|
|
row[colCpuCumulativeUsageSystem] = stats.Cpu.Usage.System
|
|
|
|
// Cumulative Cpu Usage in user mode
|
|
row[colCpuCumulativeUsageUser] = stats.Cpu.Usage.User
|
|
|
|
// Memory Usage
|
|
row[colMemoryUsage] = stats.Memory.Usage
|
|
|
|
// Working set size
|
|
row[colMemoryWorkingSet] = stats.Memory.WorkingSet
|
|
|
|
// container page fault
|
|
row[colMemoryContainerPgfault] = stats.Memory.ContainerData.Pgfault
|
|
|
|
// container major page fault
|
|
row[colMemoryContainerPgmajfault] = stats.Memory.ContainerData.Pgmajfault
|
|
|
|
// hierarchical page fault
|
|
row[colMemoryHierarchicalPgfault] = stats.Memory.HierarchicalData.Pgfault
|
|
|
|
// hierarchical major page fault
|
|
row[colMemoryHierarchicalPgmajfault] = stats.Memory.HierarchicalData.Pgmajfault
|
|
|
|
// Network stats.
|
|
row[colRxBytes] = stats.Network.RxBytes
|
|
row[colRxErrors] = stats.Network.RxErrors
|
|
row[colTxBytes] = stats.Network.TxBytes
|
|
row[colTxErrors] = stats.Network.TxErrors
|
|
|
|
// TODO(jnagal): Handle per-cpu stats.
|
|
|
|
return
|
|
}
|
|
|
|
func (self *bigqueryStorage) containerFilesystemStatsToRows(
|
|
cInfo *info.ContainerInfo,
|
|
stats *info.ContainerStats,
|
|
) (rows []map[string]interface{}) {
|
|
for _, fsStat := range stats.Filesystem {
|
|
row := make(map[string]interface{}, 0)
|
|
row[colFsDevice] = fsStat.Device
|
|
row[colFsLimit] = fsStat.Limit
|
|
row[colFsUsage] = fsStat.Usage
|
|
rows = append(rows, row)
|
|
}
|
|
return rows
|
|
}
|
|
|
|
func (self *bigqueryStorage) AddStats(cInfo *info.ContainerInfo, stats *info.ContainerStats) error {
|
|
if stats == nil {
|
|
return nil
|
|
}
|
|
rows := make([]map[string]interface{}, 0)
|
|
rows = append(rows, self.containerStatsToRows(cInfo, stats))
|
|
rows = append(rows, self.containerFilesystemStatsToRows(cInfo, stats)...)
|
|
for _, row := range rows {
|
|
err := self.client.InsertRow(row)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (self *bigqueryStorage) Close() error {
|
|
self.client.Close()
|
|
self.client = nil
|
|
return nil
|
|
}
|
|
|
|
// Create a new bigquery storage driver.
|
|
// machineName: A unique identifier to identify the host that current cAdvisor
|
|
// instance is running on.
|
|
// tableName: BigQuery table used for storing stats.
|
|
func newStorage(machineName, datasetId, tableName string) (storage.StorageDriver, error) {
|
|
bqClient, err := client.NewClient()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
err = bqClient.CreateDataset(datasetId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ret := &bigqueryStorage{
|
|
client: bqClient,
|
|
machineName: machineName,
|
|
}
|
|
schema := ret.GetSchema()
|
|
err = bqClient.CreateTable(tableName, schema)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
}
|