Make nginx_test check port in nginx module tags

Closes #223
This commit is contained in:
Ruslan Islamgaliev
2015-09-23 21:43:44 +03:00
committed by Cameron Sparr
parent 6e76759225
commit c4bbc18cb6
2 changed files with 15 additions and 2 deletions

View File

@@ -70,8 +70,20 @@ func TestNginxGeneratesMetrics(t *testing.T) {
if err != nil {
panic(err)
}
host, _, _ := net.SplitHostPort(addr.Host)
tags := map[string]string{"server": host}
host, port, err := net.SplitHostPort(addr.Host)
if err != nil {
host = addr.Host
if addr.Scheme == "http" {
port = "80"
} else if addr.Scheme == "https" {
port = "443"
} else {
port = ""
}
}
tags := map[string]string{"server": host, "port": port}
for _, m := range metrics {
assert.NoError(t, acc.ValidateTaggedValue(m.name, m.value, tags))