Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

danyg

Members
  • Joined

  • Last visited

  1. danyg changed their profile photo
  2. Hi @bastl @drawde, sorry to hear that, not sure why that is happening to you. I was checking the official github repo, and the overrides should be loaded as Read Only, but for some reason in the configuration you get from Community Apps comes in Read and Write, so you can try changing it to be Read only. Also you can try update the docker image, as if you have an old version they might have a bug where they were cleaning that directory at the beginning, I got this kind of recently. This is just an educated guess as I don't have this problem I restart the docker or even stop it and start it manually and the config is still there. To switch the overrides to read only: - Edit your netdata docker - Find the Configuration folder (the one it says Container Path: /etc/netdata/override) and click on override - In the modal/window that appears locate the option call Access Mode - Change Access mode to Read Only - Click Save in the modal/window - Click Done in the configuration Let me know if that solved your problem
  3. HOW TO CUSTOM DASHBOARDS - Go to your unraid Docker config tab - Edit NetData Docker - Click on "Add another Path, Port, Variable, Label or Device" - Config Type: path - name custom-web - Container Path: - Host Path: - Access Mode: Read/Write - Description: Path for custom dashboards - Restart your netdata docker - Go to http://unraid:19999/dashboards.html - Copy the example in a new file dash.html in /mnt/user/appdata/netdata-web-custom - Go to http://unraid:19999/custom/dash.html - Check https://docs.netdata.cloud/web/gui/custom/#custom-dashboards for more information Other tips Increase refresh rate of graphs To increase the refresh rate of the charts, you will need to add data-points="600" to each graph you want to increase its refresh rate, play with the number (600 in this example) to increase / decrease the refresh rate Make the dashboard to update when lost its focus Add the following script AFTER <script type="text/javascript" src="http://unraid:19999/dashboard.js"></script> <script type="text/javascript"> NETDATA.options.current.destroy_on_hide = true; NETDATA.options.current.concurrent_refreshes = true; NETDATA.options.current.parallel_refresher = true; NETDATA.options.current.stop_updates_when_focus_is_lost = false; NETDATA.options.current.sync_selection = false; </script> Paint it Black (dark theme) Add the following script BEFORE <script type="text/javascript" src="http://unraid:19999/dashboard.js"></script> <script type="text/javascript"> var netdataTheme = "slate"; </script> EXAMPLE of Dashboard for a 8 Core system: <!DOCTYPE html> <html lang="en"> <head> <title>Custom unRaid Dashboard</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <style type="text/css"> .row { display: flex; flex-direction: row; justify-content: center; align-content: center; } .col { display: flex; flex-direction: column; justify-content: center; align-content: center; } .cell-1-3 { width: 33%; } .cell-1-4 { width: 25%; } .cell-1-5 { width: 20%; } .cell-1-6 { width: 16.66%; } .cell-1-8 { width: 12.5%; } html body { overflow-x: hidden; } html body .my-container { padding: 12px; /* background-color: #f0f000; background-color: #ff9000; */ } </style> </head> <body> <div class="my-container"> <div class="row"> <div class="cell-1-6"> <div data-netdata="sensors.k10temp_pci_00c3_temperature" data-title="CPU Temperature" data-points="600" data-chart-library="gauge" data-width="100%" data-gauge-max-value="85" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-6"> <div data-netdata="system.cpu" data-title="CPU Load" data-points="600" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-5"> <div data-netdata="sensors.it8720_isa_0228_fan" data-title="Pump" data-points="600" data-dimensions="fan4" data-chart-library="gauge" data-gauge-max-value="2000" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> </div> <div class="row"> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu0" data-title="CPU 0 Frequency" data-chart-library="gauge" data-gauge-min-value="0" data-gauge-max-value="4100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu0" data-points="600" data-title="CPU 0 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8 col"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu1" data-title="CPU 1 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu1" data-points="600" data-title="CPU 1 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu2" data-title="CPU 2 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu2" data-points="600" data-title="CPU 2 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu3" data-title="CPU 3 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu3" data-points="600" data-title="CPU 3 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu4" data-title="CPU 4 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu4" data-points="600" data-title="CPU 4 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu5" data-title="CPU 5 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-start-color="#35a035" data-gauge-stop-color="#a03535" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu5" data-points="600" data-title="CPU 5 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu6" data-title="CPU 6 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu6" data-points="600" data-title="CPU 6 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> <div class="cell-1-8"> <div data-netdata="cpu.cpufreq" data-points="600" data-dimensions="cpu7" data-title="CPU 7 Frequency" data-chart-library="gauge" data-gauge-max-value="4100" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> <div data-netdata="cpu.cpu7" data-points="600" data-title="CPU 7 Load" data-chart-library="gauge" data-gauge-max-value="100" data-width="100%" data-gauge-generate-gradient="[0, 75, 80, 93, 100]" data-gauge-gradient-percent-color-0="#35a035" data-gauge-gradient-percent-color-75="#35a035" data-gauge-gradient-percent-color-80="#f0f000" data-gauge-gradient-percent-color-93="#ff9000" data-gauge-gradient-percent-color-100="#ff2020" ></div> </div> </div> <div class="row"> <div data-netdata="sensors.k10temp_pci_00c3_temperature" data-title="CPU Temperature" data-chart-library="dygraph" data-dygraph-valuerange="[25,85]" data-width="100%" data-height="165" data-after="-3600" ></div> </div> <div class="row"> <div data-netdata="sensors.it8720_isa_0228_temperature" data-title="System Temperatures" data-chart-library="dygraph" data-dygraph-valuerange="[25,85]" data-width="100%" data-height="165" data-after="-3600" ></div> </div> </div> <script type="text/javascript"> var netdataTheme = "slate"; </script> <script type="text/javascript" src="http://unraid:19999/dashboard.js" ></script> <script type="text/javascript"> NETDATA.options.current.destroy_on_hide = true; NETDATA.options.current.concurrent_refreshes = true; NETDATA.options.current.parallel_refresher = true; NETDATA.options.current.stop_updates_when_focus_is_lost = false; NETDATA.options.current.sync_selection = false; </script> </body> </html> Hope this helps!
  4. HOW TO TEMPERATURES VOLTAGES FANS - Go to http://unraid:19999/netdata.conf (change unraid for your unraid servername or ip, my case is called unraid) - Paste the contents in a text editor - Find the [plugins] section - Change the line where says # python.d = yes for python.d = yes (so remove the # at the beginning of that line) - Copy the content of your text editor and paste the content in a new file called netdata.conf in /mnt/user/appdata/netdata (or wherever you have configured the data of your unraid) - Now copy and paste the content of this: https://raw.githubusercontent.com/netdata/netdata/master/collectors/python.d.plugin/python.d.conf in a text editor - Find the line # sensors: yes and change it for sensors: yes (remove the # at the beginning of that line) - Save this file as python.d.conf in /mnt/user/appdata/netdata - Create a folder python.d in /mnt/user/appdata/netdata - Copy the contents of https://raw.githubusercontent.com/netdata/netdata/master/collectors/python.d.plugin/sensors/sensors.conf in a text editor - Check the lines that starts with types: and add a # at the beginning of each sensor that you DON'T want to have in netdata - Save this file as sensors.conf in /mnt/user/appdata/netdata/python.d - Restart the Docker of netdata, and you will see a new section called Sensors and there all your temperatures and voltages and more If after all of this, still not works, I recommend to install Dynamix System Temperature and configure it properly, you should be able to see temperatures in the footer of unraid admin web, as that tool configures the command sensors to work as expected and therefore the plugin for netdata can read those sensors too. Hope this Helps

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.