Skip to content

Commit f63c16f

Browse files
authored
fix(partition-ingester): Add stream creation error logging (#15640)
1 parent 8e52975 commit f63c16f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

‎pkg/ingester/instance.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,14 @@ func (i *instance) createStream(ctx context.Context, pushReqStream logproto.Stre
326326
}
327327

328328
func (i *instance) onStreamCreationError(ctx context.Context, pushReqStream logproto.Stream, err error, labels labels.Labels) (*stream, error) {
329-
if i.configs.LogStreamCreation(i.instanceID) {
330-
level.Debug(util_log.Logger).Log(
329+
if i.configs.LogStreamCreation(i.instanceID) || i.cfg.KafkaIngestion.Enabled {
330+
l := level.Debug(util_log.Logger)
331+
332+
if i.cfg.KafkaIngestion.Enabled {
333+
l = level.Warn(util_log.Logger)
334+
}
335+
336+
l.Log(
331337
"msg", "failed to create stream, exceeded limit",
332338
"org_id", i.instanceID,
333339
"err", err,

0 commit comments

Comments
 (0)