Postgresql_extensible, ran fmt

This commit is contained in:
Thomas Menard 2016-03-07 11:25:26 +01:00
parent 55a47c6a19
commit d43aeed4cc
2 changed files with 12 additions and 12 deletions

View File

@ -18,7 +18,7 @@ type Postgresql struct {
OrderedColumns []string
AllColumns []string
AdditionalTags []string
Query []struct {
Query []struct {
Sqlquery string
Version int
Withdbname bool
@ -27,10 +27,10 @@ type Postgresql struct {
}
type query []struct {
Sqlquery string
Version int
Withdbname bool
Tagvalue string
Sqlquery string
Version int
Withdbname bool
Tagvalue string
}
var ignoredColumns = map[string]bool{"datid": true, "datname": true, "stats_reset": true}

View File

@ -19,11 +19,11 @@ func TestPostgresqlGeneratesMetrics(t *testing.T) {
testutil.GetLocalHost()),
Databases: []string{"postgres"},
Query: query{
{Sqlquery: "select * from pg_stat_database",
Version: 901,
{Sqlquery: "select * from pg_stat_database",
Version: 901,
Withdbname: false,
Tagvalue: ""},
},
Tagvalue: ""},
},
}
var acc testutil.Accumulator
err := p.Gather(&acc)