README.md in mission_control-servers-0.2.3 vs README.md in mission_control-servers-0.2.4
- old
+ new
@@ -50,21 +50,48 @@
If you would like to put the dashboard on something like a Raspberry Pi, you can use the `dark` parameter to
change the dashboard to a dark mode automatically. This will hopefully help provide a "hands off" approach to
setting up the kiosk mode.
+## URL Configuration
+
+### Dark Mode
+
```html
http://localhost:3000/mission_control-servers/projects?dark=true
```
+### Interval
+
You can also adjust the interval when you have multiple servers on a project. The default setting is 10 seconds
between servers, but this can be adjusted with an URL Parameter. The `interval` value is entered in seconds.
```html
-http://localhost:3000/mission_control-servers/projects?dark=true&interval=10
+http://localhost:3000/mission_control-servers/projects?interval=10
```
+### Combo History
+
+By default, the CPU Usage and Memory Usage Line Chart will be combined, but you can add the URL Parameter `?combo=false` to
+toggle this behavior. Default is `true`.
+
+```html
+http://localhost:3000/mission_control-servers/projects?combo=false
+```
+
+
+
+
+### Combining URL Parameters
+
+If you need to change multiple settings, you can chain these in the URL Parameters.
+
+```html
+http://localhost:3000/mission_control-servers/projects?interval=30&dark=true&combo=false
+```
+
+
## Protecting the Dashboard
You can protect the dashboard by using a constraint. This will allow you to only allow certain users to access
the dashboard. However, the ingress still needs to be accessible by the servers which are being monitored.
@@ -106,9 +133,12 @@
Detailed Dashboard updates automatically

Dark Mode support added in v0.1.4 (you can set this with a URL Param dark=true)
+
+
+
