mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/{vminsert,vmagent}: take into account all the inserted rows before relabeling in vm_rows_inserted_total
and vmagent_rows_inserted_total
metrics
This commit is contained in:
parent
d2e917d1cb
commit
9b7ce5d004
8 changed files with 18 additions and 12 deletions
|
@ -62,6 +62,7 @@ func insertRows(db string, rows []parser.Row) error {
|
||||||
buf := ctx.buf[:0]
|
buf := ctx.buf[:0]
|
||||||
for i := range rows {
|
for i := range rows {
|
||||||
r := &rows[i]
|
r := &rows[i]
|
||||||
|
rowsTotal += len(r.Fields)
|
||||||
commonLabels = commonLabels[:0]
|
commonLabels = commonLabels[:0]
|
||||||
hasDBKey := false
|
hasDBKey := false
|
||||||
for j := range r.Tags {
|
for j := range r.Tags {
|
||||||
|
@ -111,7 +112,6 @@ func insertRows(db string, rows []parser.Row) error {
|
||||||
Samples: samples[len(samples)-1:],
|
Samples: samples[len(samples)-1:],
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
rowsTotal += len(r.Fields)
|
|
||||||
}
|
}
|
||||||
ctx.buf = buf
|
ctx.buf = buf
|
||||||
ctx.ctx.WriteRequest.Timeseries = tssDst
|
ctx.ctx.WriteRequest.Timeseries = tssDst
|
||||||
|
|
|
@ -38,6 +38,12 @@ func insertRows(block *parser.Block, extraLabels []prompbmarshal.Label) error {
|
||||||
ctx := common.GetPushCtx()
|
ctx := common.GetPushCtx()
|
||||||
defer common.PutPushCtx(ctx)
|
defer common.PutPushCtx(ctx)
|
||||||
|
|
||||||
|
// Update rowsInserted and rowsPerInsert before actual inserting,
|
||||||
|
// since relabeling can prevent from inserting the rows.
|
||||||
|
rowsLen := len(block.Values)
|
||||||
|
rowsInserted.Add(rowsLen)
|
||||||
|
rowsPerInsert.Update(float64(rowsLen))
|
||||||
|
|
||||||
tssDst := ctx.WriteRequest.Timeseries[:0]
|
tssDst := ctx.WriteRequest.Timeseries[:0]
|
||||||
labels := ctx.Labels[:0]
|
labels := ctx.Labels[:0]
|
||||||
samples := ctx.Samples[:0]
|
samples := ctx.Samples[:0]
|
||||||
|
@ -71,12 +77,9 @@ func insertRows(block *parser.Block, extraLabels []prompbmarshal.Label) error {
|
||||||
Labels: labels[labelsLen:],
|
Labels: labels[labelsLen:],
|
||||||
Samples: samples[samplesLen:],
|
Samples: samples[samplesLen:],
|
||||||
})
|
})
|
||||||
rowsTotal := len(values)
|
|
||||||
ctx.WriteRequest.Timeseries = tssDst
|
ctx.WriteRequest.Timeseries = tssDst
|
||||||
ctx.Labels = labels
|
ctx.Labels = labels
|
||||||
ctx.Samples = samples
|
ctx.Samples = samples
|
||||||
remotewrite.Push(&ctx.WriteRequest)
|
remotewrite.Push(&ctx.WriteRequest)
|
||||||
rowsInserted.Add(rowsTotal)
|
|
||||||
rowsPerInsert.Update(float64(rowsTotal))
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,7 @@ func insertRows(timeseries []prompb.TimeSeries) error {
|
||||||
samples := ctx.Samples[:0]
|
samples := ctx.Samples[:0]
|
||||||
for i := range timeseries {
|
for i := range timeseries {
|
||||||
ts := ×eries[i]
|
ts := ×eries[i]
|
||||||
|
rowsTotal += len(ts.Samples)
|
||||||
labelsLen := len(labels)
|
labelsLen := len(labels)
|
||||||
for i := range ts.Labels {
|
for i := range ts.Labels {
|
||||||
label := &ts.Labels[i]
|
label := &ts.Labels[i]
|
||||||
|
@ -55,7 +56,6 @@ func insertRows(timeseries []prompb.TimeSeries) error {
|
||||||
Labels: labels[labelsLen:],
|
Labels: labels[labelsLen:],
|
||||||
Samples: samples[samplesLen:],
|
Samples: samples[samplesLen:],
|
||||||
})
|
})
|
||||||
rowsTotal += len(ts.Samples)
|
|
||||||
}
|
}
|
||||||
ctx.WriteRequest.Timeseries = tssDst
|
ctx.WriteRequest.Timeseries = tssDst
|
||||||
ctx.Labels = labels
|
ctx.Labels = labels
|
||||||
|
|
|
@ -44,6 +44,7 @@ func insertRows(rows []parser.Row, extraLabels []prompbmarshal.Label) error {
|
||||||
samples := ctx.Samples[:0]
|
samples := ctx.Samples[:0]
|
||||||
for i := range rows {
|
for i := range rows {
|
||||||
r := &rows[i]
|
r := &rows[i]
|
||||||
|
rowsTotal += len(r.Values)
|
||||||
labelsLen := len(labels)
|
labelsLen := len(labels)
|
||||||
for j := range r.Tags {
|
for j := range r.Tags {
|
||||||
tag := &r.Tags[j]
|
tag := &r.Tags[j]
|
||||||
|
@ -69,7 +70,6 @@ func insertRows(rows []parser.Row, extraLabels []prompbmarshal.Label) error {
|
||||||
Labels: labels[labelsLen:],
|
Labels: labels[labelsLen:],
|
||||||
Samples: samples[samplesLen:],
|
Samples: samples[samplesLen:],
|
||||||
})
|
})
|
||||||
rowsTotal += len(values)
|
|
||||||
}
|
}
|
||||||
ctx.WriteRequest.Timeseries = tssDst
|
ctx.WriteRequest.Timeseries = tssDst
|
||||||
ctx.Labels = labels
|
ctx.Labels = labels
|
||||||
|
|
|
@ -69,6 +69,7 @@ func insertRows(at *auth.Token, db string, rows []parser.Row, mayOverrideAccount
|
||||||
hasRelabeling := relabel.HasRelabeling()
|
hasRelabeling := relabel.HasRelabeling()
|
||||||
for i := range rows {
|
for i := range rows {
|
||||||
r := &rows[i]
|
r := &rows[i]
|
||||||
|
rowsTotal += len(r.Fields)
|
||||||
ic.Labels = ic.Labels[:0]
|
ic.Labels = ic.Labels[:0]
|
||||||
hasDBKey := false
|
hasDBKey := false
|
||||||
for j := range r.Tags {
|
for j := range r.Tags {
|
||||||
|
@ -149,7 +150,6 @@ func insertRows(at *auth.Token, db string, rows []parser.Row, mayOverrideAccount
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rowsTotal += len(r.Fields)
|
|
||||||
}
|
}
|
||||||
rowsInserted.Get(&atCopy).Add(rowsTotal)
|
rowsInserted.Get(&atCopy).Add(rowsTotal)
|
||||||
rowsPerInsert.Update(float64(rowsTotal))
|
rowsPerInsert.Update(float64(rowsTotal))
|
||||||
|
|
|
@ -38,6 +38,12 @@ func insertRows(at *auth.Token, block *parser.Block, extraLabels []prompbmarshal
|
||||||
ctx := netstorage.GetInsertCtx()
|
ctx := netstorage.GetInsertCtx()
|
||||||
defer netstorage.PutInsertCtx(ctx)
|
defer netstorage.PutInsertCtx(ctx)
|
||||||
|
|
||||||
|
// Update rowsInserted and rowsPerInsert before actual inserting,
|
||||||
|
// since relabeling can prevent from inserting the rows.
|
||||||
|
rowsLen := len(block.Values)
|
||||||
|
rowsInserted.Get(at).Add(rowsLen)
|
||||||
|
rowsPerInsert.Update(float64(rowsLen))
|
||||||
|
|
||||||
ctx.Reset() // This line is required for initializing ctx internals.
|
ctx.Reset() // This line is required for initializing ctx internals.
|
||||||
hasRelabeling := relabel.HasRelabeling()
|
hasRelabeling := relabel.HasRelabeling()
|
||||||
mn := &block.MetricName
|
mn := &block.MetricName
|
||||||
|
@ -71,8 +77,5 @@ func insertRows(at *auth.Token, block *parser.Block, extraLabels []prompbmarshal
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rowsTotal := len(values)
|
|
||||||
rowsInserted.Get(at).Add(rowsTotal)
|
|
||||||
rowsPerInsert.Update(float64(rowsTotal))
|
|
||||||
return ctx.FlushBufs()
|
return ctx.FlushBufs()
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,7 @@ func insertRows(at *auth.Token, timeseries []prompb.TimeSeries) error {
|
||||||
hasRelabeling := relabel.HasRelabeling()
|
hasRelabeling := relabel.HasRelabeling()
|
||||||
for i := range timeseries {
|
for i := range timeseries {
|
||||||
ts := ×eries[i]
|
ts := ×eries[i]
|
||||||
|
rowsTotal += len(ts.Samples)
|
||||||
ctx.Labels = ctx.Labels[:0]
|
ctx.Labels = ctx.Labels[:0]
|
||||||
srcLabels := ts.Labels
|
srcLabels := ts.Labels
|
||||||
for _, srcLabel := range srcLabels {
|
for _, srcLabel := range srcLabels {
|
||||||
|
@ -61,7 +62,6 @@ func insertRows(at *auth.Token, timeseries []prompb.TimeSeries) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rowsTotal += len(samples)
|
|
||||||
}
|
}
|
||||||
rowsInserted.Get(at).Add(rowsTotal)
|
rowsInserted.Get(at).Add(rowsTotal)
|
||||||
rowsPerInsert.Update(float64(rowsTotal))
|
rowsPerInsert.Update(float64(rowsTotal))
|
||||||
|
|
|
@ -45,6 +45,7 @@ func insertRows(at *auth.Token, rows []parser.Row, extraLabels []prompbmarshal.L
|
||||||
hasRelabeling := relabel.HasRelabeling()
|
hasRelabeling := relabel.HasRelabeling()
|
||||||
for i := range rows {
|
for i := range rows {
|
||||||
r := &rows[i]
|
r := &rows[i]
|
||||||
|
rowsTotal += len(r.Values)
|
||||||
ctx.Labels = ctx.Labels[:0]
|
ctx.Labels = ctx.Labels[:0]
|
||||||
for j := range r.Tags {
|
for j := range r.Tags {
|
||||||
tag := &r.Tags[j]
|
tag := &r.Tags[j]
|
||||||
|
@ -74,7 +75,6 @@ func insertRows(at *auth.Token, rows []parser.Row, extraLabels []prompbmarshal.L
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rowsTotal += len(values)
|
|
||||||
}
|
}
|
||||||
rowsInserted.Get(at).Add(rowsTotal)
|
rowsInserted.Get(at).Add(rowsTotal)
|
||||||
rowsPerInsert.Update(float64(rowsTotal))
|
rowsPerInsert.Update(float64(rowsTotal))
|
||||||
|
|
Loading…
Reference in a new issue