diff --git a/docs/user/widgets/log_panel/log_panel.md b/docs/user/widgets/log_panel/log_panel.md new file mode 100644 index 00000000..75bda1dd --- /dev/null +++ b/docs/user/widgets/log_panel/log_panel.md @@ -0,0 +1,39 @@ +(user.widgets.log_panel)= + +# LogPanel widget + +The LogPanel widget can be used to view logs: + +![LogPanel](./logpanel.png) + +It automatically subscribes to log updates. You can fetch the log history with the "Fetch history" button. + +## Filtering based on log level + +If you select a dropdown box, only logs of that priority level or higher will be displayed: + +![LogPanel](./logpanel_level.png) + + +## Filtering based on a search string + +If you type in a search string into the box in the toolbar, and hit enter or press the update button, that filter will be applied: + +![LogPanel](./logpanel_text.png) + +This search uses the [Python regular expression syntax](https://docs.python.org/3/library/re.html) if the checkbox for this option is selected: + +![LogPanel](./logpanel_regex.png) + + +## Filtering based on time range + +You may filter the logs to those occurring within a given time range. + +![LogPanel](./logpanel_timerange.png) + +## Filtering based on service + +You can select which services to show logs from. + +![LogPanel](./logpanel_services.png) \ No newline at end of file diff --git a/docs/user/widgets/log_panel/logpanel.png b/docs/user/widgets/log_panel/logpanel.png new file mode 100644 index 00000000..d964d3c8 Binary files /dev/null and b/docs/user/widgets/log_panel/logpanel.png differ diff --git a/docs/user/widgets/log_panel/logpanel_level.png b/docs/user/widgets/log_panel/logpanel_level.png new file mode 100644 index 00000000..706220a8 Binary files /dev/null and b/docs/user/widgets/log_panel/logpanel_level.png differ diff --git a/docs/user/widgets/log_panel/logpanel_regex.png b/docs/user/widgets/log_panel/logpanel_regex.png new file mode 100644 index 00000000..3f6a3023 Binary files /dev/null and b/docs/user/widgets/log_panel/logpanel_regex.png differ diff --git a/docs/user/widgets/log_panel/logpanel_services.png b/docs/user/widgets/log_panel/logpanel_services.png new file mode 100644 index 00000000..b65294c1 Binary files /dev/null and b/docs/user/widgets/log_panel/logpanel_services.png differ diff --git a/docs/user/widgets/log_panel/logpanel_text.png b/docs/user/widgets/log_panel/logpanel_text.png new file mode 100644 index 00000000..7d817175 Binary files /dev/null and b/docs/user/widgets/log_panel/logpanel_text.png differ diff --git a/docs/user/widgets/log_panel/logpanel_timerange.png b/docs/user/widgets/log_panel/logpanel_timerange.png new file mode 100644 index 00000000..43db92b1 Binary files /dev/null and b/docs/user/widgets/log_panel/logpanel_timerange.png differ