feat: bump github.com/prometheus/procfs to v0.0.2

This commit is contained in:
draveness
2019-09-22 20:03:45 +08:00
parent ac9b2516d4
commit 57da7a3508
61 changed files with 2450 additions and 1811 deletions

View File

@@ -78,7 +78,14 @@ var (
)
// NewLimits returns the current soft limits of the process.
//
// Deprecated: use p.Limits() instead
func (p Proc) NewLimits() (ProcLimits, error) {
return p.Limits()
}
// Limits returns the current soft limits of the process.
func (p Proc) Limits() (ProcLimits, error) {
f, err := os.Open(p.path("limits"))
if err != nil {
return ProcLimits{}, err