Skip to content

Commit

Permalink
Fix the order of table id and name
Browse files Browse the repository at this point in the history
  • Loading branch information
alok87 committed May 24, 2021
1 parent 64a23c3 commit 6aa600d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/redshift/redshift.go
Original file line number Diff line number Diff line change
Expand Up @@ -971,8 +971,8 @@ func (r *Redshift) CollectQueryTotal(ctx context.Context) error {
RedshiftQueryTotalMetric.WithLabelValues(
r.conf.Database,
row.schema,
row.tableID,
row.tableName,
row.tableID,
).Set(row.queryTotal)
}

Expand Down

0 comments on commit 6aa600d

Please sign in to comment.