Explore: UI change for log row details (#20034)

Add LogDetail section that is shown when log line is clicked and expanded. Contains labels/fields and actions to show stats and add/remove label filter.
This commit is contained in:
Ivana Huckova
2019-11-01 10:01:00 +01:00
committed by Andrej Ocenas
parent 750e8d27bf
commit a5e8e0e291
19 changed files with 661 additions and 360 deletions

View File

@@ -262,6 +262,10 @@ export class LokiDatasource extends DataSourceApi<LokiQuery, LokiOptions> {
selector = addLabelToSelector(selector, action.key, action.value);
break;
}
case 'ADD_FILTER_OUT': {
selector = addLabelToSelector(selector, action.key, action.value, '!=');
break;
}
default:
break;
}