Profile -> Column

This commit is contained in:
Alan Bernstein 2020-04-03 01:06:06 -05:00 committed by Matt Jaffee
parent b1adcd91fc
commit 3c275681d2
No known key found for this signature in database
GPG key ID: 08A3DFFF987B11BF
2 changed files with 2 additions and 2 deletions

View file

@ -3253,7 +3253,7 @@ func (e *executor) executeSetColumnAttrs(ctx context.Context, index string, c *p
if err := idx.ColumnAttrStore().SetAttrs(col, attrs); err != nil {
return err
}
idx.Stats.Count(MetricSetProfileAttrs, 1, 1.0)
idx.Stats.Count(MetricSetColumnAttrs, 1, 1.0)
// Do not forward call if this is already being forwarded.
if opt.Remote {
return nil

View file

@ -13,7 +13,7 @@ const (
MetricRow = "query_row_total"
MetricRowBSI = "query_row_bsi_total"
MetricSetRowAttrs = "query_set_row_attrs_total"
MetricSetProfileAttrs = "query_set_profile_attrs_total"
MetricSetColumnAttrs = "query_set_column_attrs_total"
MetricMaximumRow = "maximum_row"
MetricSetBit = "set_bit_total"
MetricClearBit = "clear_bit_total"