Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page documents the design, requirements and scope of work for implementation of Web Management Console Preferences.

Table of Contents

Introduction

Web Management Console users should be able to customize the web management console by setting their preferable time zone, language, update interval, etc.
The user preferences should be stored per user on broker side. A special UI should be added into a web management console to set and save the preferences.

...

Code Block
javascript
javascript
{
    "f391718alex": {
        timezone: "Europe/London",
        language: "en",
        background: "#cccccc",
        saveTabs: true,
        updateInterval: 5,
        "logviewer.defaultFilter": {...},
        "logviewer.filters": { "warning": {...}, "alerts": {...}, ... },
        ...
      },
    ...
    "anotherUser": {
    ...
    }
}

...