diff --git a/public/app/core/logs_model.ts b/public/app/core/logs_model.ts index 3204b4648ec..013d6179f22 100644 --- a/public/app/core/logs_model.ts +++ b/public/app/core/logs_model.ts @@ -156,6 +156,9 @@ export function makeSeriesForLogs(rows: LogRowModel[], intervalMs: number, timeZ ...valueField.config, color: series.color, }; + valueField.name = series.alias; + const fieldDisplayProcessor = getDisplayProcessor({ field: valueField, timeZone }); + valueField.display = (value: any) => ({ ...fieldDisplayProcessor(value), color: series.color }); const points = getFlotPairs({ xField: timeField,