summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/prometheus/procfs/proc_limits_test.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-11-22 11:05:54 -0800
committerHarrison Healey <harrisonmhealey@gmail.com>2016-11-22 14:05:54 -0500
commit7961599b2e41c71720a42b3bfde641f7529f05fe (patch)
tree3c039e1d3790a954ba65fe551c7b348331bce994 /vendor/github.com/prometheus/procfs/proc_limits_test.go
parente033dcce8e57ed6b6684227adf9b29347e4718b3 (diff)
downloadchat-7961599b2e41c71720a42b3bfde641f7529f05fe.tar.gz
chat-7961599b2e41c71720a42b3bfde641f7529f05fe.tar.bz2
chat-7961599b2e41c71720a42b3bfde641f7529f05fe.zip
PLT-4357 adding performance monitoring (#4622)
* WIP * WIP * Adding metrics collection * updating vendor packages * Adding metrics to config * Adding admin console page for perf monitoring * Updating glide * switching to tylerb/graceful
Diffstat (limited to 'vendor/github.com/prometheus/procfs/proc_limits_test.go')
-rw-r--r--vendor/github.com/prometheus/procfs/proc_limits_test.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/github.com/prometheus/procfs/proc_limits_test.go b/vendor/github.com/prometheus/procfs/proc_limits_test.go
new file mode 100644
index 000000000..70bf04ec2
--- /dev/null
+++ b/vendor/github.com/prometheus/procfs/proc_limits_test.go
@@ -0,0 +1,31 @@
+package procfs
+
+import "testing"
+
+func TestNewLimits(t *testing.T) {
+ p, err := FS("fixtures").NewProc(26231)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ l, err := p.NewLimits()
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ for _, test := range []struct {
+ name string
+ want int
+ have int
+ }{
+ {name: "cpu time", want: -1, have: l.CPUTime},
+ {name: "open files", want: 2048, have: l.OpenFiles},
+ {name: "msgqueue size", want: 819200, have: l.MsqqueueSize},
+ {name: "nice priority", want: 0, have: l.NicePriority},
+ {name: "address space", want: -1, have: l.AddressSpace},
+ } {
+ if test.want != test.have {
+ t.Errorf("want %s %d, have %d", test.name, test.want, test.have)
+ }
+ }
+}