-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Update statsd storage - issue #724 #798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
// Copyright 2015 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 statsd | ||
|
||
import ( | ||
info "github.com/google/cadvisor/info/v1" | ||
client "github.com/google/cadvisor/storage/statsd/client" | ||
) | ||
|
||
type statsdStorage struct { | ||
client *client.Client | ||
Namespace string | ||
} | ||
|
||
const ( | ||
colCpuCumulativeUsage string = "cpu_cumulative_usage" | ||
// Memory Usage | ||
colMemoryUsage string = "memory_usage" | ||
// Working set size | ||
colMemoryWorkingSet string = "memory_working_set" | ||
// 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 summary | ||
colFsSummary = "fs_summary" | ||
// Filesystem limit. | ||
colFsLimit = "fs_limit" | ||
// Filesystem usage. | ||
colFsUsage = "fs_usage" | ||
) | ||
|
||
func (self *statsdStorage) containerStatsToValues( | ||
stats *info.ContainerStats, | ||
) (series map[string]uint64) { | ||
series = make(map[string]uint64) | ||
|
||
// Cumulative Cpu Usage | ||
series[colCpuCumulativeUsage] = stats.Cpu.Usage.Total | ||
|
||
// Memory Usage | ||
series[colMemoryUsage] = stats.Memory.Usage | ||
|
||
// Working set size | ||
series[colMemoryWorkingSet] = stats.Memory.WorkingSet | ||
|
||
// Network stats. | ||
series[colRxBytes] = stats.Network.RxBytes | ||
series[colRxErrors] = stats.Network.RxErrors | ||
series[colTxBytes] = stats.Network.TxBytes | ||
series[colTxErrors] = stats.Network.TxErrors | ||
|
||
return series | ||
} | ||
|
||
func (self *statsdStorage) containerFsStatsToValues( | ||
series *map[string]uint64, | ||
stats *info.ContainerStats, | ||
) { | ||
for _, fsStat := range stats.Filesystem { | ||
// Summary stats. | ||
(*series)[colFsSummary+"."+colFsLimit] += fsStat.Limit | ||
(*series)[colFsSummary+"."+colFsUsage] += fsStat.Usage | ||
|
||
// Per device stats. | ||
(*series)[fsStat.Device+"."+colFsLimit] = fsStat.Limit | ||
(*series)[fsStat.Device+"."+colFsUsage] = fsStat.Usage | ||
} | ||
} | ||
|
||
//Push the data into redis | ||
func (self *statsdStorage) AddStats(ref info.ContainerReference, stats *info.ContainerStats) error { | ||
if stats == nil { | ||
return nil | ||
} | ||
|
||
var containerName string | ||
if len(ref.Aliases) > 0 { | ||
containerName = ref.Aliases[0] | ||
} else { | ||
containerName = ref.Name | ||
} | ||
|
||
series := self.containerStatsToValues(stats) | ||
self.containerFsStatsToValues(&series, stats) | ||
for key, value := range series { | ||
err := self.client.Send(self.Namespace, containerName, key, value) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func (self *statsdStorage) Close() error { | ||
self.client.Close() | ||
self.client = nil | ||
return nil | ||
} | ||
|
||
func New(namespace, hostPort string) (*statsdStorage, error) { | ||
statsdClient, err := client.New(hostPort) | ||
if err != nil { | ||
return nil, err | ||
} | ||
statsdStorage := &statsdStorage{ | ||
client: statsdClient, | ||
Namespace: namespace, | ||
} | ||
return statsdStorage, nil | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move open, close, and Send to a separate client file? We are trying to change the metrics format and merge some of the container stats to values methods. It will make the conversion a bit easier.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No problem, i will update it soon, maybe today.