danyg

Members
  • Posts

    5
  • Joined

  • Last visited

  • Days Won

    1

danyg last won the day on September 16 2019

danyg had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

danyg's Achievements

Noob

Noob (1/14)

5

Reputation

  1. Hi @Nnamd I have same processor with this motherboard: Gigabyte GA-990FXA-UD3 I'm able to do GPU passthrough, actually I've been using the system as Media Player in my living room with a Windows 10 VM with a GTX 1080 and a GT 710 for unraid itself. Checking specification my motherboard also has the SB950 as the one of Darkman13 I have some issues though that was able to workaround, so I passthrough nVidia sound card (hdmi audio out) and the onboard sound card, to that VM, but the audio in any of those cards has some drift after a while, I was able to workaround it using a free software called VoiceMeeter, which is a Virtual sound Card and it is capable of keep everything on sync. Hope this helps!
  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. Hi Guys, I think I found a solution that really works, it is, VoiceMeeter, is a free application that is intended to mix several audio inputs and have several audio outputs, works to streams (like twitch an so) but it can be used as a good solution for audio. Basically you will use this app to "FORCE" an DirectPlay Output all the time. The app adds an Virtual Sound Device, you can choose that device as a default audio output, and then from the app handle which devices will output them. I've been using it for a while and it remove the sync problems I have. In my case I'm using an AMD FX-8350 and the solution of emulators pins doesn't totally works as AMD cores doesn't seem to be the same ones after each reset, so core 1 can be core 7 in next restart, so I need to reconfigure it every time I restart unraid. I'm using the "Banana" edition as is the most balanced for what I do and the devices I have. Hope this helps
  4. 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!
  5. 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