diff --git a/pkg/services/live/live.go b/pkg/services/live/live.go index 5ea854ac625..56eedf5e1ea 100644 --- a/pkg/services/live/live.go +++ b/pkg/services/live/live.go @@ -105,9 +105,10 @@ func ProvideService(plugCtxProvider *plugincontext.Provider, cfg *setting.Cfg, r // things. For example Node allows to publish messages to channels from server // side with its Publish method. node, err := centrifuge.New(centrifuge.Config{ - LogHandler: handleLog, - LogLevel: centrifuge.LogLevelError, - MetricsNamespace: "grafana_live", + LogHandler: handleLog, + LogLevel: centrifuge.LogLevelError, + MetricsNamespace: "grafana_live", + ClientQueueMaxSize: 4194304, // 4MB // Use reasonably large expiration interval for stream meta key, // much bigger than maximum HistoryLifetime value in Node config. // This way stream meta data will expire, in some cases you may want diff --git a/public/app/plugins/datasource/tempo/datasource.ts b/public/app/plugins/datasource/tempo/datasource.ts index d85c944aef9..43a09ce53f1 100644 --- a/public/app/plugins/datasource/tempo/datasource.ts +++ b/public/app/plugins/datasource/tempo/datasource.ts @@ -286,18 +286,13 @@ export class TempoDatasource extends DataSourceWithBackend