Tempo: add custom grpc limits

This commit is contained in:
Gareth Dawson
2026-01-08 22:08:54 +09:00
parent ec55871b9b
commit 57930f22f5
4 changed files with 42 additions and 1 deletions
@@ -77,6 +77,8 @@ type PluginInstanceCfg struct {
SigV4AuthEnabled bool
SigV4VerboseLogging bool
LiveClientQueueMaxSize int
}
// ProvidePluginInstanceConfig returns a new PluginInstanceCfg.
@@ -124,6 +126,7 @@ func ProvidePluginInstanceConfig(cfg *setting.Cfg, settingProvider setting.Provi
ResponseLimit: cfg.ResponseLimit,
SigV4AuthEnabled: cfg.SigV4AuthEnabled,
SigV4VerboseLogging: cfg.SigV4VerboseLogging,
LiveClientQueueMaxSize: cfg.LiveClientQueueMaxSize,
}, nil
}