2016-05-19 01:13:04 +00:00
|
|
|
// +build linux darwin
|
2015-12-04 20:40:01 +00:00
|
|
|
|
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
2015-12-04 20:40:01 +00:00
|
|
|
|
|
|
|
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 util
|
|
|
|
|
|
|
|
import (
|
2016-02-17 01:16:06 +00:00
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
2015-12-04 20:40:01 +00:00
|
|
|
"syscall"
|
2016-02-17 01:16:06 +00:00
|
|
|
|
|
|
|
"k8s.io/kubernetes/pkg/api/resource"
|
2015-12-04 20:40:01 +00:00
|
|
|
)
|
|
|
|
|
2016-05-19 01:13:04 +00:00
|
|
|
// FSInfo linux returns (available bytes, byte capacity, byte usage, error) for the filesystem that
|
2015-12-04 20:40:01 +00:00
|
|
|
// path resides upon.
|
2016-05-19 01:13:04 +00:00
|
|
|
func FsInfo(path string) (int64, int64, int64, error) {
|
2015-12-04 20:40:01 +00:00
|
|
|
statfs := &syscall.Statfs_t{}
|
|
|
|
err := syscall.Statfs(path, statfs)
|
|
|
|
if err != nil {
|
2016-05-19 01:13:04 +00:00
|
|
|
return 0, 0, 0, err
|
2015-12-04 20:40:01 +00:00
|
|
|
}
|
2016-05-19 01:13:04 +00:00
|
|
|
// TODO(vishh): Include inodes space
|
2015-12-04 20:40:01 +00:00
|
|
|
// Available is blocks available * fragment size
|
2016-05-19 01:13:04 +00:00
|
|
|
available := int64(statfs.Bavail) * int64(statfs.Bsize)
|
2015-12-04 20:40:01 +00:00
|
|
|
|
|
|
|
// Capacity is total block count * fragment size
|
2016-05-19 01:13:04 +00:00
|
|
|
capacity := int64(statfs.Blocks) * int64(statfs.Bsize)
|
|
|
|
|
|
|
|
// Usage is block being used * fragment size (aka block size).
|
|
|
|
usage := (int64(statfs.Blocks) - int64(statfs.Bfree)) * int64(statfs.Bsize)
|
2015-12-04 20:40:01 +00:00
|
|
|
|
2016-05-19 01:13:04 +00:00
|
|
|
return available, capacity, usage, nil
|
2015-12-04 20:40:01 +00:00
|
|
|
}
|
2016-02-17 01:16:06 +00:00
|
|
|
|
|
|
|
func Du(path string) (*resource.Quantity, error) {
|
|
|
|
// Uses the same niceness level as cadvisor.fs does when running du
|
|
|
|
// Uses -B 1 to always scale to a blocksize of 1 byte
|
|
|
|
out, err := exec.Command("nice", "-n", "19", "du", "-s", "-B", "1", path).CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed command 'du' ($ nice -n 19 du -s -B 1) on path %s with error %v", path, err)
|
|
|
|
}
|
|
|
|
used, err := resource.ParseQuantity(strings.Fields(string(out))[0])
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to parse 'du' output %s due to error %v", out, err)
|
|
|
|
}
|
|
|
|
used.Format = resource.BinarySI
|
2016-05-17 04:36:56 +00:00
|
|
|
return &used, nil
|
2016-02-17 01:16:06 +00:00
|
|
|
}
|