├── .gitignore ├── LICENSE ├── README.md ├── eth_log_gen.conf ├── eth_log_gen.php ├── grafana-dashboard ├── ETH-miner-1501106079514.json └── grafana-screenshot_01.png └── log_examples ├── gpu.log └── totals.log /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | logs 3 | utils 4 | /gpu.log 5 | /totals.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Uruncle 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Claymore Ethereum log genereator 2 | Generate log files from Claymores Dual Ethereum Miner and output the data in a new format 3 | that is easy to work with. The script has been tested on Claymore v9.5 and v9.7. 4 | 5 | 6 | ## Motivation 7 | My goal is to get a better visual representation of the data from the Claymore miner. I will 8 | achieve this by creating a cool looking Grafana or Kibana dashboard. This is what my current 9 | Grafana dashboard looks like: 10 | 11 | ![Alt text](./grafana-dashboard/grafana-screenshot_01.png?raw=true "Dashboard") 12 | 13 | Look here for more inspiration: 14 | 15 | https://grafana.com/ 16 | https://www.elastic.co/products/kibana 17 | 18 | I really needed a better visual representation of the data to optimize my rig that is sitting 19 | inside a 4U server. Temperature is a real challenge and a better visual representation of fan 20 | speed, temperature etc. really helps. Alerts in Grafana are also nice. 21 | 22 | I was not totally happy about the log format that the Claymore miner provides, so I decided 23 | to write my own log generator. It outputs much of the same information, but in a different 24 | format that is easier to work with in the ELK stack (Elasticsearch, Logstash, Kibana) or 25 | the TICK stack (Telegraf, InfluxDB, Chronograf, and Kapacitor + Grafana). 26 | 27 | It is also possible to configure the script to write directly to InfluxDB. You just need to 28 | have InfluxDB installed and with a database called "telegraf". 29 | 30 | 31 | ## How it works 32 | The scripts queries the Claymore miner API with cURL and parses the result using PHP. 33 | It then outputs to two separate log files: 34 | - A log-file with totals (like total mining speed, total shares, avg. temperature etc.). 35 | - A log-file with metrics about individual GPU's in the rig. 36 | 37 | Take a look at the sample log files in the log_examples folder to see what the log files look 38 | like. 39 | 40 | The script also writes to the telegraf database in InfluxDB using cURL. This is enabled by 41 | default in the script. So if you have installed InfluxDB and Grafana and just want to see 42 | the metrics on the Grafana dashboard, you don't really need the generated log files. 43 | 44 | ## Setup and requirements 45 | Simply download or clone repository. The only requirement is PHP with cURL. The script is 46 | tested and works fine on both Linux and Windows. 47 | 48 | ### Windows 49 | You are on you own :-) 50 | 51 | ### Linux 52 | Make the php file executable: 53 | 54 | `$ chmod +x eth_log_gen.php` 55 | 56 | I assume you have PHP installed, but you may need to install cURL for PHP. You can check if it 57 | is installed with PHP-info.: 58 | 59 | `php -i | grep curl` 60 | 61 | To install cURL for PHP: 62 | 63 | `$ sudo apt-get install php-curl` 64 | 65 | You should configure "eth_log_gen.php" so it fit you needs. Please see the section "Configuring" 66 | below. 67 | 68 | You are now ready to run "eth_log_gen.php": 69 | 70 | `$ /usr/bin/php ./eth_log_gen.php` 71 | 72 | If your miner is running you should see the log-files growing. Terminate with Ctrl+c. 73 | 74 | To ensure the script runs continuously and starts automatically when your OS boots, you should 75 | run it using supervisord. You can install supervisord like this: 76 | 77 | `$ sudo apt install supervisor` 78 | 79 | Then copy the file eth_log_gen.conf to the supervisord config directory: 80 | 81 | `$ sudo cp eth_log_gen.conf /etc/supervisor/conf.d/eth_log_gen.conf` 82 | 83 | Don't forget to modify the settings in the file: 84 | 85 | `$ sudo nano /etc/supervisor/conf.d/eth_log_gen.conf` 86 | 87 | Finally you will need to start (or restart) supervisord: 88 | `$ sudo service supervisor status` 89 | 90 | You can verify that eth_log_gen.php is running with supervisorctl: 91 | 92 | `$ sudo supervisorctl status` 93 | 94 | Finally you may want to install InfluxDB, Telegraf and Grafana. Please see: 95 | 96 | - https://portal.influxdata.com/downloads 97 | - https://grafana.com/get 98 | 99 | 100 | ### Configuring 101 | Please use the constants at the top of eth_log_gen.php to configure various options. 102 | 103 | - define('DEBUG_MODE', false); 104 | \# Set to true to output details to the screen 105 | - define('SERVICE_URL', 'http://192.168.1.186'); 106 | \# Your mining machines IP (where Claymores API can be reached) 107 | - define('SERVICE_PORT', 3333); 108 | \# Portnumber for Claymores API. 3333 is the default. 109 | - define('RUN_INDEFINITELY', false); 110 | \# The script is designed to run indefinitely and this can be enabled by setting this to true 111 | - define('UPDATE_FREQ', 10); 112 | \# Defines how often Claymore API should be queried if the script is set to run indefinitely. 10 for every 10 seconds. 113 | - define('MACHINE_NAME', 'minr'); 114 | \# The name of your mining machine. This can be useful if you have multiple mining rigs 115 | - define('FILE_LOG_GPUS', 'gpu.log'); 116 | \# The file name for the log with metrics about individual GPU's 117 | - define('FILE_LOG_TOTALS', 'totals.log'); 118 | \# The file name for the logs containing totals 119 | - define('DUAL_CURRENCY', 'DCR'); 120 | \# Just leave as-is if NOT dual mining. Enter symbol for other cryptocurrency if dual mining (for example "DCR" for Decred) 121 | - define('DUAL_CURRENCY_LOWER', strtolower(DUAL_CURRENCY)); 122 | \# Leave as-is 123 | - define('INFLUXDB_ENABLED', true); 124 | \# Set to false if you don't have InfluxDB installed 125 | - define('INFLUXDB_DB', 'telegraf'); 126 | \# This is the InfluxDB database that the script will write to 127 | - define('INFLUXDB_SERVICE_URL', 'http://localhost'); 128 | \# The default URL where InfluxDB can be reached if installed locally 129 | - define('INFLUXDB_SERVICE_PORT', 8086); 130 | \# The default port where InfluxDB can be reached 131 | 132 | You will want to set RUN_INDEFINITELY=true in order to continuously update the log-files. 133 | 134 | 135 | ## Donate 136 | You are free to use the script in any way you desire. If you found it useful consider making 137 | a donation: 138 | 139 | ETH: 0xa88F6aE3370205d453dEEfef06AafefEe4942710 140 | BTC: 3Mg9daDRqMz3fdR1gzwscKf17d2MfmBM9j 141 | Zcash: t1PLbzngKSNYZWo47va15tsmygjLfKx8cro 142 | 143 | -------------------------------------------------------------------------------- /eth_log_gen.conf: -------------------------------------------------------------------------------- 1 | [program:eth_log_gen] 2 | command=/usr/bin/php /path/to/script/claymore-ethereum-log-genereator/eth_log_gen.php 3 | directory=path/to/script/claymore-ethereum-log-genereator 4 | autostart=yes 5 | autorestart=yes 6 | startsecs=0 7 | startretries=3 8 | stderr_logfile=/var/log/eth_log_gen.err.log 9 | stdout_logfile=/var/log/eth_log_gen.log 10 | user=yourlinuxusername 11 | -------------------------------------------------------------------------------- /eth_log_gen.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/php 2 | 0) { 35 | 36 | // cURL-result ok. Strip HTML-tags: 37 | $clean = strip_tags($arr_curl_result['curl_exec']); 38 | 39 | // Reverse array 40 | $arr_lines = array_reverse(explode("\n", $clean)); 41 | 42 | // Instantiate arrays that holds output data 43 | $arr_gpu_info = $arr_totals_info = array(); 44 | 45 | $i = 0; 46 | foreach ($arr_lines as $key => $line) { 47 | 48 | if (substr($line, 0, 4) == 'GPU ') { 49 | // If we encounter 'GPU ' we are done and can stop 50 | break; 51 | } 52 | 53 | # ------------------------------------------------------------------ # 54 | # Individual GPU's: id, temperatures, and fan speed 55 | # ------------------------------------------------------------------ # 56 | 57 | // Get temp. and fans of individual cards - GPU0 t=57C fan=23%, GPU1 t=67C fan=40%, GPU2 t=64C fan=70%, GPU3 t=73C fan=70% 58 | if (substr($line, 0, 4) == 'GPU0') { 59 | $arr_gpu_temp_fan = explode(', ', $line); 60 | 61 | $gpu_number = 0; 62 | foreach ($arr_gpu_temp_fan as $k_gpu => $gpu_info) { 63 | $arr_gpu = explode(' ', $gpu_info); 64 | 65 | $arr_gpu_info[$gpu_number] = array( 66 | 'id' => $arr_gpu[0], 67 | 'temp' => str_replace(array('t=', 'C'), "", $arr_gpu[1]), 68 | 'fan' => str_replace(array('fan=', '%'), "", $arr_gpu[2]), 69 | ); 70 | 71 | $gpu_number++; 72 | } 73 | 74 | } 75 | 76 | # ------------------------------------------------------------------ # 77 | # DUAL CURRENCY: Get mining speed of individual cards 78 | # ------------------------------------------------------------------ # 79 | 80 | //   DCR: GPU0 336.523 Mh/s, GPU1 352.541 Mh/s, GPU2 off, GPU3 off 81 | if (stristr($line, DUAL_CURRENCY.': GPU') !== false) { 82 | 83 | // It seems we are dual mining 84 | $dual_mining_detected = true; 85 | 86 | $clean_line = substr($line, 12); 87 | $arr_gpu_speed = explode(', ', $clean_line); 88 | 89 | $gpu_number = 0; 90 | foreach ($arr_gpu_speed as $k_gpu => $gpu_info) { 91 | $arr_gpu = explode(' ', $gpu_info); 92 | 93 | if ($arr_gpu[1] == 'off') { 94 | $arr_gpu[1] = 0; 95 | } 96 | 97 | $arr_gpu_info[$gpu_number][DUAL_CURRENCY_LOWER.'_speed'] = $arr_gpu[1]; 98 | 99 | $gpu_number++; 100 | } 101 | 102 | } 103 | 104 | # ------------------------------------------------------------------ # 105 | # DUAL CURRENCY: Get totals 106 | # ------------------------------------------------------------------ # 107 | 108 | //   DCR - Total Speed: 685.462 Mh/s, Total Shares: 4831, Rejected: 69 109 | if (stristr($line, DUAL_CURRENCY.' - Total Speed:') !== false) { 110 | 111 | // It seems we are dual mining 112 | $dual_mining_detected = true; 113 | 114 | $clean_line = substr($line, 12); 115 | 116 | $arr_totals = explode(' ', $clean_line); 117 | $shares = str_replace(array('),', '('), array('', '+'), $arr_totals[7]); 118 | $arr_shares = explode('+', $shares); 119 | 120 | $arr_totals_info[DUAL_CURRENCY_LOWER.'_total_speed'] = $arr_totals[3]; 121 | $arr_totals_info[DUAL_CURRENCY_LOWER.'_total_shares'] = intval(str_replace(",", "", $arr_shares[0])); 122 | $arr_totals_info[DUAL_CURRENCY_LOWER.'_total_rejected'] = intval($arr_totals[9]); 123 | 124 | // Shares for individual cards 125 | $arr_card_shares = array_slice($arr_shares, 1, count($arr_shares)); 126 | 127 | if (!empty($arr_card_shares)) { 128 | foreach ($arr_card_shares as $k_gpu => $gpu_shares) { 129 | $arr_gpu_info[$k_gpu][DUAL_CURRENCY_LOWER.'_shares'] = $gpu_shares; 130 | } 131 | } 132 | 133 | // Let's calculate some averages for the totals array and set share percentage per card 134 | if (!empty($arr_gpu_info)) { 135 | $total_cards = count($arr_gpu_info); 136 | 137 | $arr_totals_info[DUAL_CURRENCY_LOWER.'_avg_speed_per_card'] = round($arr_totals_info[DUAL_CURRENCY_LOWER.'_total_speed'] / $total_cards, 2); 138 | $arr_totals_info[DUAL_CURRENCY_LOWER.'_avg_shares_per_card'] = round($arr_totals_info[DUAL_CURRENCY_LOWER.'_total_shares'] / $total_cards, 2); 139 | 140 | $temp_total = $fan_total = 0; 141 | foreach ($arr_gpu_info as $k_gpu => $gpu) { 142 | if ($arr_totals_info[DUAL_CURRENCY_LOWER.'_total_shares'] > 0) { 143 | $arr_gpu_info[$k_gpu][DUAL_CURRENCY_LOWER.'_shares_pct'] = round(100 * ($gpu[DUAL_CURRENCY_LOWER.'_shares'] ?? 0 / $arr_totals_info[DUAL_CURRENCY_LOWER.'_total_shares']), 2); 144 | } else { 145 | $arr_gpu_info[$k_gpu][DUAL_CURRENCY_LOWER.'_shares_pct'] = 0; 146 | } 147 | } 148 | 149 | } 150 | 151 | } 152 | 153 | 154 | # ------------------------------------------------------------------ # 155 | # ETH: Get mining speed of individual cards 156 | # ------------------------------------------------------------------ # 157 | 158 | // ETH: GPU0 28.780 Mh/s, GPU1 29.179 Mh/s, GPU2 24.029 Mh/s, GPU3 28.896 Mh/s 159 | if (substr($line, 0, 8) == 'ETH: GPU') { 160 | 161 | $clean_line = substr($line, 5); 162 | 163 | $arr_gpu_speed = explode(', ', $clean_line); 164 | 165 | $gpu_number = 0; 166 | foreach ($arr_gpu_speed as $k_gpu => $gpu_info) { 167 | $arr_gpu = explode(' ', $gpu_info); 168 | 169 | if ($arr_gpu[1] == 'off') { 170 | $arr_gpu[1] = 0; 171 | } 172 | 173 | $arr_gpu_info[$gpu_number]['eth_speed'] = $arr_gpu[1]; 174 | 175 | $gpu_number++; 176 | } 177 | 178 | } 179 | 180 | // TODO "Incorrect ETH shares: GPU0 6, GPU1 6, GPU2 3, GPU3 23" + "Incorrect ETH shares: none" 181 | 182 | # ------------------------------------------------------------------ # 183 | # ETH: Get totals and also calculate avg. temperature and avg. fan 184 | # ------------------------------------------------------------------ # 185 | 186 | // ETH - Total Speed: 110.884 Mh/s, Total Shares: 271(78+84+57+57), Rejected: 0, Time: 02:47 187 | if (substr($line, 0, strlen('ETH - Total Speed')) == 'ETH - Total Speed') { 188 | 189 | $clean_line = substr($line, 5); 190 | 191 | $arr_totals = explode(' ', $clean_line); 192 | $shares = str_replace(array('),', '('), array('', '+'), $arr_totals[7]); 193 | $arr_shares = explode('+', $shares); 194 | 195 | $arr_totals_info['eth_total_speed'] = $arr_totals[3]; 196 | $arr_totals_info['eth_total_shares'] = intval(str_replace(",", "", $arr_shares[0])); 197 | $arr_totals_info['eth_total_rejected'] = intval($arr_totals[9]); 198 | 199 | // Shares for individual cards 200 | $arr_card_shares = array_slice($arr_shares, 1, count($arr_shares)); 201 | 202 | if (!empty($arr_card_shares)) { 203 | foreach ($arr_card_shares as $k_gpu => $gpu_shares) { 204 | $arr_gpu_info[$k_gpu]['eth_shares'] = $gpu_shares; 205 | } 206 | } 207 | 208 | // Let's calculate some averages for the totals array and set share percentage per card 209 | if (!empty($arr_gpu_info)) { 210 | $total_cards = count($arr_gpu_info); 211 | 212 | $arr_totals_info['eth_avg_speed_per_card'] = round($arr_totals_info['eth_total_speed'] / $total_cards, 2); 213 | $arr_totals_info['eth_avg_shares_per_card'] = round($arr_totals_info['eth_total_shares'] / $total_cards, 2); 214 | 215 | $temp_total = $fan_total = 0; 216 | foreach ($arr_gpu_info as $k_gpu => $gpu) { 217 | 218 | $temp_total += $gpu['temp'] ?? 0; 219 | $fan_total += $gpu['fan'] ?? 0; 220 | 221 | if ($arr_totals_info['eth_total_shares'] > 0) { 222 | $arr_gpu_info[$k_gpu]['eth_shares_pct'] = round(100 * ($gpu['eth_shares'] ?? 0 / $arr_totals_info['eth_total_shares']), 2); 223 | if (count($arr_gpu_info) === 1) { 224 | // Fix: If there is only one card in rig 225 | $arr_gpu_info[$k_gpu]['eth_shares_pct'] = 100; 226 | } 227 | } else { 228 | $arr_gpu_info[$k_gpu]['eth_shares_pct'] = 0; 229 | } 230 | 231 | } 232 | 233 | $arr_totals_info['avg_temp'] = round($temp_total / $total_cards, 2); 234 | $arr_totals_info['avg_fan'] = round($fan_total / $total_cards, 2); 235 | 236 | } 237 | 238 | } 239 | 240 | $i++; 241 | 242 | } 243 | 244 | # ------------------------------------------------------------------ # 245 | # Sorting totals array before output 246 | # ------------------------------------------------------------------ # 247 | 248 | // Sort order 249 | $arr_totals_order = array('avg_temp', 'avg_fan', 'eth_total_speed', 'eth_total_shares', 'eth_total_rejected', 'eth_avg_speed_per_card', 'eth_avg_shares_per_card'); 250 | if ($dual_mining_detected === true) { 251 | // We are doing dual mining, so there are a few more keys we need to sort 252 | $arr_totals_order = array_merge($arr_totals_order, array(DUAL_CURRENCY_LOWER.'_total_speed', DUAL_CURRENCY_LOWER.'_total_shares', DUAL_CURRENCY_LOWER.'_total_rejected', DUAL_CURRENCY_LOWER.'_avg_speed_per_card', DUAL_CURRENCY_LOWER.'_avg_shares_per_card')); 253 | } 254 | // Now sort the totals array: 255 | $arr_totals_info = array_merge(array_flip($arr_totals_order), $arr_totals_info); 256 | 257 | 258 | # ------------------------------------------------------------------ # 259 | # Sorting GPU arrays before output 260 | # ------------------------------------------------------------------ # 261 | 262 | // Sort order 263 | $arr_gpu_order = array('id', 'temp', 'fan', 'eth_speed', 'eth_shares', 'eth_shares_pct'); 264 | if ($dual_mining_detected === true) { 265 | // We are doing dual mining, so there are a few more keys we need to sort 266 | $arr_gpu_order = array_merge($arr_gpu_order, array(DUAL_CURRENCY_LOWER.'_speed', DUAL_CURRENCY_LOWER.'_shares', DUAL_CURRENCY_LOWER.'_shares_pct')); 267 | } 268 | 269 | foreach ($arr_gpu_info as $gpu_k => $gpu) { 270 | // Sort each GPU array 271 | $arr_gpu_info[$gpu_k] = array_merge(array_flip($arr_gpu_order), $gpu); 272 | } 273 | 274 | 275 | # ------------------------------------------------------------------ # 276 | # Log time and machine name 277 | # ------------------------------------------------------------------ # 278 | 279 | $objDateTime = new DateTime('NOW'); 280 | $time = str_replace('+', 'Z', $objDateTime->format(DateTime::RFC3339)); 281 | 282 | 283 | # ------------------------------------------------------------------ # 284 | # Write to totals log file 285 | # ------------------------------------------------------------------ # 286 | 287 | $log_entry_total = $time.', machine: '.MACHINE_NAME; 288 | 289 | foreach ($arr_totals_info as $label => $v) { 290 | $log_entry_total .= ', '.$label.': '.$v; 291 | } 292 | 293 | file_put_contents(FILE_LOG_TOTALS, $log_entry_total."\n", FILE_APPEND); 294 | 295 | 296 | # ------------------------------------------------------------------ # 297 | # Write to gpu log file 298 | # ------------------------------------------------------------------ # 299 | 300 | $log_entry_gpu = ''; 301 | foreach ($arr_gpu_info as $gpu_k => $gpu) { 302 | 303 | $log_entry_gpu .= $time.', machine: '.MACHINE_NAME; 304 | foreach ($gpu as $label => $v) { 305 | $log_entry_gpu .= ', '.$label.': '.$v; 306 | } 307 | 308 | $log_entry_gpu .= "\n"; 309 | 310 | } 311 | 312 | file_put_contents(FILE_LOG_GPUS, $log_entry_gpu, FILE_APPEND); 313 | 314 | if (INFLUXDB_ENABLED === true) { 315 | 316 | /** 317 | * Influx line format looks something like this: 318 | * curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'cpu_load_short,host=server01,region=us-west value=0.64 1434055562000000000' 319 | * See: https://docs.influxdata.com/influxdb/v1.3/guides/writing_data/ 320 | */ 321 | 322 | $influxdb_url = INFLUXDB_SERVICE_URL.':'.INFLUXDB_SERVICE_PORT.'/write?db='.INFLUXDB_DB; 323 | 324 | // Totals for influxdb 325 | $binary_data_totals = 'eth_totals,host='.MACHINE_NAME.' '; 326 | foreach ($arr_totals_info as $label => $v) { 327 | $binary_data_totals.= $label.'='.$v.','; 328 | } 329 | $binary_data_totals = substr($binary_data_totals, 0, -1); 330 | $binary_data_totals.= ' '.nano_sec_since_unix_epoc(); // Add time in nano seconds 331 | 332 | // GPU's for influxdb 333 | $arr_string_fields = array('id'); 334 | $binary_data_gpu = ''; 335 | foreach ($arr_gpu_info as $gpu_k => $gpu) { 336 | 337 | $binary_data_gpu.= 'eth_gpu,host='.MACHINE_NAME.',gpu='.$gpu['id'].' '; 338 | foreach ($gpu as $label => $v) { 339 | if (in_array($label, $arr_string_fields)) { 340 | // String-fields needs to be in qoutes 341 | $binary_data_gpu.= $label.'="'.$v.'",'; 342 | } else { 343 | $binary_data_gpu.= $label.'='.$v.','; 344 | } 345 | } 346 | $binary_data_gpu = substr($binary_data_gpu, 0, -1); 347 | $binary_data_gpu.= "\n"; 348 | 349 | } 350 | $binary_data_gpu = substr($binary_data_gpu, 0, -1); // Remove last line break 351 | $binary_data_gpu.= ' '.nano_sec_since_unix_epoc(); // Add time in nano seconds 352 | 353 | $influx_binary_data = $binary_data_totals."\n".$binary_data_gpu; 354 | 355 | $ch = curl_init(); 356 | curl_setopt($ch, CURLOPT_URL, $influxdb_url); 357 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 358 | curl_setopt($ch, CURLOPT_POSTFIELDS, $influx_binary_data); 359 | curl_setopt($ch, CURLOPT_POST, 1); 360 | if (DEBUG_MODE === true) { 361 | curl_setopt($ch, CURLOPT_VERBOSE, true); 362 | } 363 | 364 | if (INFLUXDB_USE_CREDENTIALS === true) { 365 | curl_setopt($ch, CURLOPT_USERPWD, INFLUXDB_USERNAME . ":" . INFLUXDB_PASSWORD); 366 | } 367 | 368 | $headers = array(); 369 | $headers[] = "Content-Type: application/x-www-form-urlencoded"; 370 | curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 371 | 372 | $result = curl_exec($ch); 373 | if (curl_errno($ch)) { 374 | echo 'Error:' . curl_error($ch); 375 | } 376 | curl_close ($ch); 377 | 378 | } 379 | 380 | 381 | # ------------------------------------------------------------------ # 382 | # Output debug-info. if enabled 383 | # ------------------------------------------------------------------ # 384 | 385 | if (DEBUG_MODE === true) { 386 | print "===========================================================================\n\n"; 387 | print $log_entry_total . "\n"; 388 | print $log_entry_gpu . "\n"; 389 | print "===========================================================================\n\n"; 390 | print_r($arr_totals_info) . "\n"; 391 | print "===========================================================================\n\n"; 392 | print_r($arr_gpu_info) . "\n"; 393 | print "===========================================================================\n\n"; 394 | print_r($arr_lines) . "\n"; 395 | } 396 | 397 | } else if (DEBUG_MODE === true) { 398 | 399 | // Error 400 | print 'Could not reach Claymore API on '.SERVICE_URL.' port '.SERVICE_PORT; 401 | 402 | } 403 | 404 | if (RUN_INDEFINITELY === false) { 405 | exit; 406 | } 407 | 408 | sleep(UPDATE_FREQ); 409 | 410 | } 411 | 412 | 413 | function nano_sec_since_unix_epoc() { 414 | return intval(array_sum(explode(' ', microtime()))).'000000000'; 415 | } 416 | 417 | 418 | /** 419 | * This function fetches data via curl 420 | * @param $url 421 | * @return array 422 | */ 423 | function fetch_via_curl($url) { 424 | 425 | $arr_curl_result = array(); 426 | 427 | $ch = curl_init($url); 428 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 429 | curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 430 | curl_setopt($ch, CURLOPT_TIMEOUT, 4); 431 | 432 | $arr_curl_result['curl_exec'] = curl_exec($ch); 433 | $arr_curl_result['curl_getinfo'] = curl_getinfo($ch); 434 | 435 | if (array_key_exists('http_code', $arr_curl_result['curl_getinfo']) === true) { 436 | 437 | if ($arr_curl_result['curl_getinfo']['http_code'] == '200') { 438 | $quick_status = 'ok'; 439 | } else { 440 | $quick_status = 'error'; 441 | } 442 | 443 | $http_code = $arr_curl_result['curl_getinfo']['http_code']; 444 | 445 | } else { 446 | 447 | $quick_status = 'error'; 448 | $http_code = 'None'; 449 | 450 | } 451 | 452 | $arr_curl_result['quick_status'] = $quick_status; 453 | $arr_curl_result['http_code'] = $http_code; 454 | 455 | curl_close($ch); 456 | 457 | return $arr_curl_result; 458 | 459 | } 460 | 461 | ?> 462 | -------------------------------------------------------------------------------- /grafana-dashboard/ETH-miner-1501106079514.json: -------------------------------------------------------------------------------- 1 | { 2 | "__inputs": [ 3 | { 4 | "name": "DS_INFLUXDB", 5 | "label": "InfluxDB", 6 | "description": "", 7 | "type": "datasource", 8 | "pluginId": "influxdb", 9 | "pluginName": "InfluxDB" 10 | } 11 | ], 12 | "__requires": [ 13 | { 14 | "type": "grafana", 15 | "id": "grafana", 16 | "name": "Grafana", 17 | "version": "4.4.1" 18 | }, 19 | { 20 | "type": "panel", 21 | "id": "graph", 22 | "name": "Graph", 23 | "version": "" 24 | }, 25 | { 26 | "type": "datasource", 27 | "id": "influxdb", 28 | "name": "InfluxDB", 29 | "version": "1.0.0" 30 | }, 31 | { 32 | "type": "panel", 33 | "id": "singlestat", 34 | "name": "Singlestat", 35 | "version": "" 36 | } 37 | ], 38 | "annotations": { 39 | "list": [] 40 | }, 41 | "editable": true, 42 | "gnetId": null, 43 | "graphTooltip": 0, 44 | "hideControls": false, 45 | "id": null, 46 | "links": [], 47 | "refresh": "10s", 48 | "rows": [ 49 | { 50 | "collapse": false, 51 | "height": 200, 52 | "panels": [ 53 | { 54 | "cacheTimeout": null, 55 | "colorBackground": false, 56 | "colorValue": false, 57 | "colors": [ 58 | "rgba(255, 255, 255, 0.78)", 59 | "rgba(134, 134, 134, 0.78)", 60 | "rgba(255, 0, 0, 0.77)" 61 | ], 62 | "datasource": "${DS_INFLUXDB}", 63 | "decimals": 1, 64 | "format": "celsius", 65 | "gauge": { 66 | "maxValue": 100, 67 | "minValue": 0, 68 | "show": true, 69 | "thresholdLabels": false, 70 | "thresholdMarkers": true 71 | }, 72 | "id": 12, 73 | "interval": null, 74 | "links": [], 75 | "mappingType": 1, 76 | "mappingTypes": [ 77 | { 78 | "name": "value to text", 79 | "value": 1 80 | }, 81 | { 82 | "name": "range to text", 83 | "value": 2 84 | } 85 | ], 86 | "maxDataPoints": 100, 87 | "nullPointMode": "connected", 88 | "nullText": null, 89 | "postfix": "", 90 | "postfixFontSize": "50%", 91 | "prefix": "", 92 | "prefixFontSize": "50%", 93 | "rangeMaps": [ 94 | { 95 | "from": "null", 96 | "text": "N/A", 97 | "to": "null" 98 | } 99 | ], 100 | "span": 2, 101 | "sparkline": { 102 | "fillColor": "rgba(153, 153, 153, 0.07)", 103 | "full": true, 104 | "lineColor": "rgb(102, 102, 102)", 105 | "show": true 106 | }, 107 | "tableColumn": "", 108 | "targets": [ 109 | { 110 | "dsType": "influxdb", 111 | "groupBy": [ 112 | { 113 | "params": [ 114 | "$__interval" 115 | ], 116 | "type": "time" 117 | }, 118 | { 119 | "params": [ 120 | "null" 121 | ], 122 | "type": "fill" 123 | } 124 | ], 125 | "measurement": "eth_totals", 126 | "orderByTime": "ASC", 127 | "policy": "default", 128 | "refId": "A", 129 | "resultFormat": "time_series", 130 | "select": [ 131 | [ 132 | { 133 | "params": [ 134 | "avg_temp" 135 | ], 136 | "type": "field" 137 | }, 138 | { 139 | "params": [], 140 | "type": "mean" 141 | } 142 | ] 143 | ], 144 | "tags": [] 145 | } 146 | ], 147 | "thresholds": "65,68", 148 | "title": "Avg. temperature", 149 | "transparent": false, 150 | "type": "singlestat", 151 | "valueFontSize": "80%", 152 | "valueMaps": [ 153 | { 154 | "op": "=", 155 | "text": "N/A", 156 | "value": "null" 157 | } 158 | ], 159 | "valueName": "avg" 160 | }, 161 | { 162 | "cacheTimeout": null, 163 | "colorBackground": false, 164 | "colorValue": false, 165 | "colors": [ 166 | "rgba(255, 255, 255, 0.78)", 167 | "rgba(134, 134, 134, 0.78)", 168 | "rgba(255, 0, 0, 0.77)" 169 | ], 170 | "datasource": "${DS_INFLUXDB}", 171 | "decimals": 0, 172 | "format": "none", 173 | "gauge": { 174 | "maxValue": 100, 175 | "minValue": 0, 176 | "show": true, 177 | "thresholdLabels": false, 178 | "thresholdMarkers": true 179 | }, 180 | "id": 8, 181 | "interval": null, 182 | "links": [], 183 | "mappingType": 1, 184 | "mappingTypes": [ 185 | { 186 | "name": "value to text", 187 | "value": 1 188 | }, 189 | { 190 | "name": "range to text", 191 | "value": 2 192 | } 193 | ], 194 | "maxDataPoints": 100, 195 | "nullPointMode": "connected", 196 | "nullText": null, 197 | "postfix": "%", 198 | "postfixFontSize": "50%", 199 | "prefix": "", 200 | "prefixFontSize": "50%", 201 | "rangeMaps": [ 202 | { 203 | "from": "null", 204 | "text": "N/A", 205 | "to": "null" 206 | } 207 | ], 208 | "span": 1, 209 | "sparkline": { 210 | "fillColor": "rgba(153, 153, 153, 0.07)", 211 | "full": false, 212 | "lineColor": "rgb(102, 102, 102)", 213 | "show": true 214 | }, 215 | "tableColumn": "", 216 | "targets": [ 217 | { 218 | "dsType": "influxdb", 219 | "groupBy": [ 220 | { 221 | "params": [ 222 | "$__interval" 223 | ], 224 | "type": "time" 225 | }, 226 | { 227 | "params": [ 228 | "null" 229 | ], 230 | "type": "fill" 231 | } 232 | ], 233 | "measurement": "eth_gpu", 234 | "orderByTime": "ASC", 235 | "policy": "default", 236 | "refId": "A", 237 | "resultFormat": "time_series", 238 | "select": [ 239 | [ 240 | { 241 | "params": [ 242 | "fan" 243 | ], 244 | "type": "field" 245 | }, 246 | { 247 | "params": [], 248 | "type": "mean" 249 | } 250 | ] 251 | ], 252 | "tags": [ 253 | { 254 | "key": "gpu", 255 | "operator": "=", 256 | "value": "GPU0" 257 | } 258 | ] 259 | } 260 | ], 261 | "thresholds": "60,85", 262 | "title": "GPU0 Fan", 263 | "transparent": false, 264 | "type": "singlestat", 265 | "valueFontSize": "80%", 266 | "valueMaps": [ 267 | { 268 | "op": "=", 269 | "text": "N/A", 270 | "value": "null" 271 | } 272 | ], 273 | "valueName": "avg" 274 | }, 275 | { 276 | "cacheTimeout": null, 277 | "colorBackground": false, 278 | "colorValue": false, 279 | "colors": [ 280 | "rgba(255, 255, 255, 0.78)", 281 | "rgba(134, 134, 134, 0.78)", 282 | "rgba(255, 0, 0, 0.77)" 283 | ], 284 | "datasource": "${DS_INFLUXDB}", 285 | "decimals": 0, 286 | "format": "none", 287 | "gauge": { 288 | "maxValue": 100, 289 | "minValue": 0, 290 | "show": true, 291 | "thresholdLabels": false, 292 | "thresholdMarkers": true 293 | }, 294 | "id": 9, 295 | "interval": null, 296 | "links": [], 297 | "mappingType": 1, 298 | "mappingTypes": [ 299 | { 300 | "name": "value to text", 301 | "value": 1 302 | }, 303 | { 304 | "name": "range to text", 305 | "value": 2 306 | } 307 | ], 308 | "maxDataPoints": 100, 309 | "nullPointMode": "connected", 310 | "nullText": null, 311 | "postfix": "%", 312 | "postfixFontSize": "50%", 313 | "prefix": "", 314 | "prefixFontSize": "50%", 315 | "rangeMaps": [ 316 | { 317 | "from": "null", 318 | "text": "N/A", 319 | "to": "null" 320 | } 321 | ], 322 | "span": 1, 323 | "sparkline": { 324 | "fillColor": "rgba(153, 153, 153, 0.07)", 325 | "full": false, 326 | "lineColor": "rgb(102, 102, 102)", 327 | "show": true 328 | }, 329 | "tableColumn": "", 330 | "targets": [ 331 | { 332 | "dsType": "influxdb", 333 | "groupBy": [ 334 | { 335 | "params": [ 336 | "$__interval" 337 | ], 338 | "type": "time" 339 | }, 340 | { 341 | "params": [ 342 | "null" 343 | ], 344 | "type": "fill" 345 | } 346 | ], 347 | "measurement": "eth_gpu", 348 | "orderByTime": "ASC", 349 | "policy": "default", 350 | "refId": "A", 351 | "resultFormat": "time_series", 352 | "select": [ 353 | [ 354 | { 355 | "params": [ 356 | "fan" 357 | ], 358 | "type": "field" 359 | }, 360 | { 361 | "params": [], 362 | "type": "mean" 363 | } 364 | ] 365 | ], 366 | "tags": [ 367 | { 368 | "key": "gpu", 369 | "operator": "=", 370 | "value": "GPU1" 371 | } 372 | ] 373 | } 374 | ], 375 | "thresholds": "60,85", 376 | "title": "GPU1 Fan", 377 | "transparent": false, 378 | "type": "singlestat", 379 | "valueFontSize": "80%", 380 | "valueMaps": [ 381 | { 382 | "op": "=", 383 | "text": "N/A", 384 | "value": "null" 385 | } 386 | ], 387 | "valueName": "avg" 388 | }, 389 | { 390 | "cacheTimeout": null, 391 | "colorBackground": false, 392 | "colorValue": false, 393 | "colors": [ 394 | "rgba(255, 255, 255, 0.78)", 395 | "rgba(134, 134, 134, 0.78)", 396 | "rgba(255, 0, 0, 0.77)" 397 | ], 398 | "datasource": "${DS_INFLUXDB}", 399 | "decimals": 0, 400 | "format": "none", 401 | "gauge": { 402 | "maxValue": 100, 403 | "minValue": 0, 404 | "show": true, 405 | "thresholdLabels": false, 406 | "thresholdMarkers": true 407 | }, 408 | "id": 10, 409 | "interval": null, 410 | "links": [], 411 | "mappingType": 1, 412 | "mappingTypes": [ 413 | { 414 | "name": "value to text", 415 | "value": 1 416 | }, 417 | { 418 | "name": "range to text", 419 | "value": 2 420 | } 421 | ], 422 | "maxDataPoints": 100, 423 | "nullPointMode": "connected", 424 | "nullText": null, 425 | "postfix": "%", 426 | "postfixFontSize": "50%", 427 | "prefix": "", 428 | "prefixFontSize": "50%", 429 | "rangeMaps": [ 430 | { 431 | "from": "null", 432 | "text": "N/A", 433 | "to": "null" 434 | } 435 | ], 436 | "span": 1, 437 | "sparkline": { 438 | "fillColor": "rgba(153, 153, 153, 0.07)", 439 | "full": false, 440 | "lineColor": "rgb(102, 102, 102)", 441 | "show": true 442 | }, 443 | "tableColumn": "", 444 | "targets": [ 445 | { 446 | "dsType": "influxdb", 447 | "groupBy": [ 448 | { 449 | "params": [ 450 | "$__interval" 451 | ], 452 | "type": "time" 453 | }, 454 | { 455 | "params": [ 456 | "null" 457 | ], 458 | "type": "fill" 459 | } 460 | ], 461 | "measurement": "eth_gpu", 462 | "orderByTime": "ASC", 463 | "policy": "default", 464 | "refId": "A", 465 | "resultFormat": "time_series", 466 | "select": [ 467 | [ 468 | { 469 | "params": [ 470 | "fan" 471 | ], 472 | "type": "field" 473 | }, 474 | { 475 | "params": [], 476 | "type": "mean" 477 | } 478 | ] 479 | ], 480 | "tags": [ 481 | { 482 | "key": "gpu", 483 | "operator": "=", 484 | "value": "GPU2" 485 | } 486 | ] 487 | } 488 | ], 489 | "thresholds": "60,85", 490 | "title": "GPU2 Fan", 491 | "transparent": false, 492 | "type": "singlestat", 493 | "valueFontSize": "80%", 494 | "valueMaps": [ 495 | { 496 | "op": "=", 497 | "text": "N/A", 498 | "value": "null" 499 | } 500 | ], 501 | "valueName": "avg" 502 | }, 503 | { 504 | "cacheTimeout": null, 505 | "colorBackground": false, 506 | "colorValue": false, 507 | "colors": [ 508 | "rgba(255, 255, 255, 0.78)", 509 | "rgba(134, 134, 134, 0.78)", 510 | "rgba(255, 0, 0, 0.77)" 511 | ], 512 | "datasource": "${DS_INFLUXDB}", 513 | "decimals": 0, 514 | "format": "none", 515 | "gauge": { 516 | "maxValue": 100, 517 | "minValue": 0, 518 | "show": true, 519 | "thresholdLabels": false, 520 | "thresholdMarkers": true 521 | }, 522 | "id": 11, 523 | "interval": null, 524 | "links": [], 525 | "mappingType": 1, 526 | "mappingTypes": [ 527 | { 528 | "name": "value to text", 529 | "value": 1 530 | }, 531 | { 532 | "name": "range to text", 533 | "value": 2 534 | } 535 | ], 536 | "maxDataPoints": 100, 537 | "nullPointMode": "connected", 538 | "nullText": null, 539 | "postfix": "%", 540 | "postfixFontSize": "50%", 541 | "prefix": "", 542 | "prefixFontSize": "50%", 543 | "rangeMaps": [ 544 | { 545 | "from": "null", 546 | "text": "N/A", 547 | "to": "null" 548 | } 549 | ], 550 | "span": 1, 551 | "sparkline": { 552 | "fillColor": "rgba(153, 153, 153, 0.07)", 553 | "full": false, 554 | "lineColor": "rgb(102, 102, 102)", 555 | "show": true 556 | }, 557 | "tableColumn": "", 558 | "targets": [ 559 | { 560 | "dsType": "influxdb", 561 | "groupBy": [ 562 | { 563 | "params": [ 564 | "$__interval" 565 | ], 566 | "type": "time" 567 | }, 568 | { 569 | "params": [ 570 | "null" 571 | ], 572 | "type": "fill" 573 | } 574 | ], 575 | "measurement": "eth_gpu", 576 | "orderByTime": "ASC", 577 | "policy": "default", 578 | "refId": "A", 579 | "resultFormat": "time_series", 580 | "select": [ 581 | [ 582 | { 583 | "params": [ 584 | "fan" 585 | ], 586 | "type": "field" 587 | }, 588 | { 589 | "params": [], 590 | "type": "mean" 591 | } 592 | ] 593 | ], 594 | "tags": [ 595 | { 596 | "key": "gpu", 597 | "operator": "=", 598 | "value": "GPU3" 599 | } 600 | ] 601 | } 602 | ], 603 | "thresholds": "60,85", 604 | "title": "GPU3 Fan", 605 | "transparent": false, 606 | "type": "singlestat", 607 | "valueFontSize": "80%", 608 | "valueMaps": [ 609 | { 610 | "op": "=", 611 | "text": "N/A", 612 | "value": "null" 613 | } 614 | ], 615 | "valueName": "avg" 616 | }, 617 | { 618 | "aliasColors": {}, 619 | "bars": false, 620 | "dashLength": 10, 621 | "dashes": false, 622 | "datasource": "${DS_INFLUXDB}", 623 | "fill": 2, 624 | "id": 16, 625 | "legend": { 626 | "avg": false, 627 | "current": false, 628 | "max": false, 629 | "min": false, 630 | "show": true, 631 | "total": false, 632 | "values": false 633 | }, 634 | "lines": true, 635 | "linewidth": 1, 636 | "links": [], 637 | "nullPointMode": "null", 638 | "percentage": false, 639 | "pointradius": 5, 640 | "points": false, 641 | "renderer": "flot", 642 | "seriesOverrides": [], 643 | "spaceLength": 10, 644 | "span": 6, 645 | "stack": false, 646 | "steppedLine": false, 647 | "targets": [ 648 | { 649 | "alias": "Load1", 650 | "dsType": "influxdb", 651 | "groupBy": [ 652 | { 653 | "params": [ 654 | "$__interval" 655 | ], 656 | "type": "time" 657 | }, 658 | { 659 | "params": [ 660 | "null" 661 | ], 662 | "type": "fill" 663 | } 664 | ], 665 | "measurement": "system", 666 | "orderByTime": "ASC", 667 | "policy": "default", 668 | "refId": "A", 669 | "resultFormat": "time_series", 670 | "select": [ 671 | [ 672 | { 673 | "params": [ 674 | "load1" 675 | ], 676 | "type": "field" 677 | }, 678 | { 679 | "params": [], 680 | "type": "mean" 681 | } 682 | ] 683 | ], 684 | "tags": [] 685 | }, 686 | { 687 | "alias": "Load2", 688 | "dsType": "influxdb", 689 | "groupBy": [ 690 | { 691 | "params": [ 692 | "$__interval" 693 | ], 694 | "type": "time" 695 | }, 696 | { 697 | "params": [ 698 | "null" 699 | ], 700 | "type": "fill" 701 | } 702 | ], 703 | "measurement": "system", 704 | "orderByTime": "ASC", 705 | "policy": "default", 706 | "refId": "B", 707 | "resultFormat": "time_series", 708 | "select": [ 709 | [ 710 | { 711 | "params": [ 712 | "load5" 713 | ], 714 | "type": "field" 715 | }, 716 | { 717 | "params": [], 718 | "type": "mean" 719 | } 720 | ] 721 | ], 722 | "tags": [] 723 | }, 724 | { 725 | "alias": "Load15", 726 | "dsType": "influxdb", 727 | "groupBy": [ 728 | { 729 | "params": [ 730 | "$__interval" 731 | ], 732 | "type": "time" 733 | }, 734 | { 735 | "params": [ 736 | "null" 737 | ], 738 | "type": "fill" 739 | } 740 | ], 741 | "measurement": "system", 742 | "orderByTime": "ASC", 743 | "policy": "default", 744 | "refId": "C", 745 | "resultFormat": "time_series", 746 | "select": [ 747 | [ 748 | { 749 | "params": [ 750 | "load15" 751 | ], 752 | "type": "field" 753 | }, 754 | { 755 | "params": [], 756 | "type": "mean" 757 | } 758 | ] 759 | ], 760 | "tags": [] 761 | } 762 | ], 763 | "thresholds": [], 764 | "timeFrom": null, 765 | "timeShift": null, 766 | "title": "CPU Load", 767 | "tooltip": { 768 | "shared": true, 769 | "sort": 0, 770 | "value_type": "individual" 771 | }, 772 | "type": "graph", 773 | "xaxis": { 774 | "buckets": null, 775 | "mode": "time", 776 | "name": null, 777 | "show": true, 778 | "values": [] 779 | }, 780 | "yaxes": [ 781 | { 782 | "format": "short", 783 | "label": null, 784 | "logBase": 1, 785 | "max": null, 786 | "min": null, 787 | "show": true 788 | }, 789 | { 790 | "format": "short", 791 | "label": null, 792 | "logBase": 1, 793 | "max": null, 794 | "min": null, 795 | "show": false 796 | } 797 | ] 798 | } 799 | ], 800 | "repeat": null, 801 | "repeatIteration": null, 802 | "repeatRowId": null, 803 | "showTitle": false, 804 | "title": "Dashboard Row", 805 | "titleSize": "h6" 806 | }, 807 | { 808 | "collapse": false, 809 | "height": 231, 810 | "panels": [ 811 | { 812 | "aliasColors": { 813 | "ETH Shares": "#FCE2DE" 814 | }, 815 | "bars": true, 816 | "dashLength": 10, 817 | "dashes": false, 818 | "datasource": "${DS_INFLUXDB}", 819 | "fill": 1, 820 | "id": 17, 821 | "interval": ">5m", 822 | "legend": { 823 | "avg": false, 824 | "current": false, 825 | "max": false, 826 | "min": false, 827 | "show": true, 828 | "total": false, 829 | "values": false 830 | }, 831 | "lines": false, 832 | "linewidth": 1, 833 | "links": [], 834 | "nullPointMode": "null", 835 | "percentage": false, 836 | "pointradius": 5, 837 | "points": false, 838 | "renderer": "flot", 839 | "seriesOverrides": [ 840 | { 841 | "alias": "ETH Shares", 842 | "yaxis": 1 843 | } 844 | ], 845 | "spaceLength": 10, 846 | "span": 6, 847 | "stack": false, 848 | "steppedLine": false, 849 | "targets": [ 850 | { 851 | "alias": "ETH Shares", 852 | "dsType": "influxdb", 853 | "groupBy": [ 854 | { 855 | "params": [ 856 | "$__interval" 857 | ], 858 | "type": "time" 859 | }, 860 | { 861 | "params": [ 862 | "null" 863 | ], 864 | "type": "fill" 865 | } 866 | ], 867 | "measurement": "eth_totals", 868 | "orderByTime": "ASC", 869 | "policy": "default", 870 | "refId": "A", 871 | "resultFormat": "time_series", 872 | "select": [ 873 | [ 874 | { 875 | "params": [ 876 | "eth_total_shares" 877 | ], 878 | "type": "field" 879 | }, 880 | { 881 | "params": [], 882 | "type": "mean" 883 | }, 884 | { 885 | "params": [ 886 | "5m" 887 | ], 888 | "type": "derivative" 889 | } 890 | ] 891 | ], 892 | "tags": [] 893 | } 894 | ], 895 | "thresholds": [], 896 | "timeFrom": null, 897 | "timeShift": null, 898 | "title": "Shares", 899 | "tooltip": { 900 | "shared": true, 901 | "sort": 0, 902 | "value_type": "individual" 903 | }, 904 | "transparent": false, 905 | "type": "graph", 906 | "xaxis": { 907 | "buckets": null, 908 | "mode": "time", 909 | "name": null, 910 | "show": true, 911 | "values": [] 912 | }, 913 | "yaxes": [ 914 | { 915 | "format": "short", 916 | "label": "Shares", 917 | "logBase": 1, 918 | "max": null, 919 | "min": null, 920 | "show": true 921 | }, 922 | { 923 | "format": "short", 924 | "label": null, 925 | "logBase": 1, 926 | "max": null, 927 | "min": null, 928 | "show": false 929 | } 930 | ] 931 | }, 932 | { 933 | "aliasColors": { 934 | "GPU0": "#7EB26D", 935 | "GPU1": "#6ED0E0", 936 | "GPU2": "#EAB839", 937 | "GPU3": "#F9E2D2" 938 | }, 939 | "bars": true, 940 | "dashLength": 10, 941 | "dashes": false, 942 | "datasource": "${DS_INFLUXDB}", 943 | "fill": 1, 944 | "hideTimeOverride": false, 945 | "id": 5, 946 | "interval": ">10s", 947 | "legend": { 948 | "avg": false, 949 | "current": false, 950 | "max": false, 951 | "min": false, 952 | "show": true, 953 | "total": false, 954 | "values": false 955 | }, 956 | "lines": false, 957 | "linewidth": 1, 958 | "links": [], 959 | "nullPointMode": "null", 960 | "percentage": false, 961 | "pointradius": 5, 962 | "points": false, 963 | "renderer": "flot", 964 | "seriesOverrides": [], 965 | "spaceLength": 10, 966 | "span": 3, 967 | "stack": false, 968 | "steppedLine": false, 969 | "targets": [ 970 | { 971 | "alias": "$tag_gpu", 972 | "dsType": "influxdb", 973 | "groupBy": [ 974 | { 975 | "params": [ 976 | "10m" 977 | ], 978 | "type": "time" 979 | }, 980 | { 981 | "params": [ 982 | "gpu" 983 | ], 984 | "type": "tag" 985 | }, 986 | { 987 | "params": [ 988 | "null" 989 | ], 990 | "type": "fill" 991 | } 992 | ], 993 | "measurement": "eth_gpu", 994 | "orderByTime": "ASC", 995 | "policy": "default", 996 | "refId": "A", 997 | "resultFormat": "time_series", 998 | "select": [ 999 | [ 1000 | { 1001 | "params": [ 1002 | "eth_shares" 1003 | ], 1004 | "type": "field" 1005 | }, 1006 | { 1007 | "params": [], 1008 | "type": "mean" 1009 | } 1010 | ] 1011 | ], 1012 | "tags": [] 1013 | } 1014 | ], 1015 | "thresholds": [], 1016 | "timeFrom": null, 1017 | "timeShift": null, 1018 | "title": "Shares pr. GPU", 1019 | "tooltip": { 1020 | "shared": false, 1021 | "sort": 0, 1022 | "value_type": "individual" 1023 | }, 1024 | "type": "graph", 1025 | "xaxis": { 1026 | "buckets": null, 1027 | "mode": "series", 1028 | "name": null, 1029 | "show": true, 1030 | "values": [ 1031 | "current" 1032 | ] 1033 | }, 1034 | "yaxes": [ 1035 | { 1036 | "format": "short", 1037 | "label": "Shares", 1038 | "logBase": 1, 1039 | "max": null, 1040 | "min": null, 1041 | "show": true 1042 | }, 1043 | { 1044 | "format": "short", 1045 | "label": null, 1046 | "logBase": 1, 1047 | "max": null, 1048 | "min": null, 1049 | "show": true 1050 | } 1051 | ] 1052 | }, 1053 | { 1054 | "cacheTimeout": null, 1055 | "colorBackground": false, 1056 | "colorValue": true, 1057 | "colors": [ 1058 | "rgba(255, 255, 255, 0.9)", 1059 | "rgb(255, 255, 255)", 1060 | "rgba(255, 255, 255, 0.84)" 1061 | ], 1062 | "datasource": "${DS_INFLUXDB}", 1063 | "format": "none", 1064 | "gauge": { 1065 | "maxValue": 100, 1066 | "minValue": 0, 1067 | "show": false, 1068 | "thresholdLabels": false, 1069 | "thresholdMarkers": true 1070 | }, 1071 | "id": 1, 1072 | "interval": null, 1073 | "links": [], 1074 | "mappingType": 1, 1075 | "mappingTypes": [ 1076 | { 1077 | "name": "value to text", 1078 | "value": 1 1079 | }, 1080 | { 1081 | "name": "range to text", 1082 | "value": 2 1083 | } 1084 | ], 1085 | "maxDataPoints": 100, 1086 | "nullPointMode": "connected", 1087 | "nullText": null, 1088 | "postfix": "", 1089 | "postfixFontSize": "50%", 1090 | "prefix": "", 1091 | "prefixFontSize": "50%", 1092 | "rangeMaps": [ 1093 | { 1094 | "from": "null", 1095 | "text": "N/A", 1096 | "to": "null" 1097 | } 1098 | ], 1099 | "span": 2, 1100 | "sparkline": { 1101 | "fillColor": "rgba(31, 118, 189, 0.88)", 1102 | "full": false, 1103 | "lineColor": "rgb(52, 89, 119)", 1104 | "show": false 1105 | }, 1106 | "tableColumn": "mean", 1107 | "targets": [ 1108 | { 1109 | "alias": "Total shares", 1110 | "dsType": "influxdb", 1111 | "groupBy": [ 1112 | { 1113 | "params": [ 1114 | "$__interval" 1115 | ], 1116 | "type": "time" 1117 | }, 1118 | { 1119 | "params": [ 1120 | "none" 1121 | ], 1122 | "type": "fill" 1123 | } 1124 | ], 1125 | "measurement": "eth_totals", 1126 | "orderByTime": "ASC", 1127 | "policy": "default", 1128 | "refId": "A", 1129 | "resultFormat": "time_series", 1130 | "select": [ 1131 | [ 1132 | { 1133 | "params": [ 1134 | "eth_total_shares" 1135 | ], 1136 | "type": "field" 1137 | }, 1138 | { 1139 | "params": [], 1140 | "type": "mean" 1141 | } 1142 | ] 1143 | ], 1144 | "tags": [] 1145 | } 1146 | ], 1147 | "thresholds": "0,1", 1148 | "timeFrom": null, 1149 | "timeShift": null, 1150 | "title": "Total shares", 1151 | "type": "singlestat", 1152 | "valueFontSize": "100%", 1153 | "valueMaps": [ 1154 | { 1155 | "op": "=", 1156 | "text": "N/A", 1157 | "value": "null" 1158 | } 1159 | ], 1160 | "valueName": "current" 1161 | }, 1162 | { 1163 | "cacheTimeout": null, 1164 | "colorBackground": false, 1165 | "colorValue": true, 1166 | "colors": [ 1167 | "rgba(255, 255, 255, 0.97)", 1168 | "rgba(255, 255, 255, 0.89)", 1169 | "rgba(92, 92, 92, 0.9)" 1170 | ], 1171 | "datasource": "${DS_INFLUXDB}", 1172 | "decimals": null, 1173 | "format": "none", 1174 | "gauge": { 1175 | "maxValue": 100, 1176 | "minValue": 0, 1177 | "show": false, 1178 | "thresholdLabels": false, 1179 | "thresholdMarkers": true 1180 | }, 1181 | "id": 15, 1182 | "interval": null, 1183 | "links": [], 1184 | "mappingType": 1, 1185 | "mappingTypes": [ 1186 | { 1187 | "name": "value to text", 1188 | "value": 1 1189 | }, 1190 | { 1191 | "name": "range to text", 1192 | "value": 2 1193 | } 1194 | ], 1195 | "maxDataPoints": 100, 1196 | "nullPointMode": "connected", 1197 | "nullText": null, 1198 | "postfix": "", 1199 | "postfixFontSize": "50%", 1200 | "prefix": "", 1201 | "prefixFontSize": "50%", 1202 | "rangeMaps": [ 1203 | { 1204 | "from": "null", 1205 | "text": "N/A", 1206 | "to": "null" 1207 | } 1208 | ], 1209 | "span": 1, 1210 | "sparkline": { 1211 | "fillColor": "rgba(31, 118, 189, 0.18)", 1212 | "full": false, 1213 | "lineColor": "rgb(31, 120, 193)", 1214 | "show": false 1215 | }, 1216 | "tableColumn": "", 1217 | "targets": [ 1218 | { 1219 | "dsType": "influxdb", 1220 | "groupBy": [ 1221 | { 1222 | "params": [ 1223 | "$__interval" 1224 | ], 1225 | "type": "time" 1226 | }, 1227 | { 1228 | "params": [ 1229 | "null" 1230 | ], 1231 | "type": "fill" 1232 | } 1233 | ], 1234 | "measurement": "eth_totals", 1235 | "orderByTime": "ASC", 1236 | "policy": "default", 1237 | "refId": "A", 1238 | "resultFormat": "time_series", 1239 | "select": [ 1240 | [ 1241 | { 1242 | "params": [ 1243 | "eth_total_rejected" 1244 | ], 1245 | "type": "field" 1246 | }, 1247 | { 1248 | "params": [], 1249 | "type": "mean" 1250 | } 1251 | ] 1252 | ], 1253 | "tags": [] 1254 | } 1255 | ], 1256 | "thresholds": "0,1", 1257 | "title": "Total rejected", 1258 | "type": "singlestat", 1259 | "valueFontSize": "80%", 1260 | "valueMaps": [ 1261 | { 1262 | "op": "=", 1263 | "text": "N/A", 1264 | "value": "null" 1265 | } 1266 | ], 1267 | "valueName": "current" 1268 | } 1269 | ], 1270 | "repeat": null, 1271 | "repeatIteration": null, 1272 | "repeatRowId": null, 1273 | "showTitle": false, 1274 | "title": "Dashboard Row", 1275 | "titleSize": "h6" 1276 | }, 1277 | { 1278 | "collapse": false, 1279 | "height": 250, 1280 | "panels": [ 1281 | { 1282 | "aliasColors": {}, 1283 | "bars": false, 1284 | "dashLength": 10, 1285 | "dashes": false, 1286 | "datasource": "${DS_INFLUXDB}", 1287 | "fill": 1, 1288 | "id": 14, 1289 | "legend": { 1290 | "avg": false, 1291 | "current": true, 1292 | "max": false, 1293 | "min": false, 1294 | "show": true, 1295 | "total": false, 1296 | "values": true 1297 | }, 1298 | "lines": true, 1299 | "linewidth": 1, 1300 | "links": [], 1301 | "nullPointMode": "null", 1302 | "percentage": false, 1303 | "pointradius": 5, 1304 | "points": false, 1305 | "renderer": "flot", 1306 | "seriesOverrides": [], 1307 | "spaceLength": 10, 1308 | "span": 6, 1309 | "stack": false, 1310 | "steppedLine": false, 1311 | "targets": [ 1312 | { 1313 | "alias": "Avg. fan %", 1314 | "dsType": "influxdb", 1315 | "groupBy": [ 1316 | { 1317 | "params": [ 1318 | "$__interval" 1319 | ], 1320 | "type": "time" 1321 | }, 1322 | { 1323 | "params": [ 1324 | "null" 1325 | ], 1326 | "type": "fill" 1327 | } 1328 | ], 1329 | "measurement": "eth_totals", 1330 | "orderByTime": "ASC", 1331 | "policy": "default", 1332 | "refId": "A", 1333 | "resultFormat": "time_series", 1334 | "select": [ 1335 | [ 1336 | { 1337 | "params": [ 1338 | "avg_fan" 1339 | ], 1340 | "type": "field" 1341 | }, 1342 | { 1343 | "params": [], 1344 | "type": "mean" 1345 | } 1346 | ] 1347 | ], 1348 | "tags": [] 1349 | }, 1350 | { 1351 | "alias": "Avg. GPU temp.", 1352 | "dsType": "influxdb", 1353 | "groupBy": [ 1354 | { 1355 | "params": [ 1356 | "$__interval" 1357 | ], 1358 | "type": "time" 1359 | }, 1360 | { 1361 | "params": [ 1362 | "null" 1363 | ], 1364 | "type": "fill" 1365 | } 1366 | ], 1367 | "measurement": "eth_totals", 1368 | "orderByTime": "ASC", 1369 | "policy": "default", 1370 | "refId": "B", 1371 | "resultFormat": "time_series", 1372 | "select": [ 1373 | [ 1374 | { 1375 | "params": [ 1376 | "avg_temp" 1377 | ], 1378 | "type": "field" 1379 | }, 1380 | { 1381 | "params": [], 1382 | "type": "mean" 1383 | } 1384 | ] 1385 | ], 1386 | "tags": [] 1387 | } 1388 | ], 1389 | "thresholds": [], 1390 | "timeFrom": null, 1391 | "timeShift": null, 1392 | "title": "Avg fan and avg temperature", 1393 | "tooltip": { 1394 | "shared": true, 1395 | "sort": 0, 1396 | "value_type": "individual" 1397 | }, 1398 | "type": "graph", 1399 | "xaxis": { 1400 | "buckets": null, 1401 | "mode": "time", 1402 | "name": null, 1403 | "show": true, 1404 | "values": [] 1405 | }, 1406 | "yaxes": [ 1407 | { 1408 | "format": "short", 1409 | "label": "Temp. / Fan", 1410 | "logBase": 1, 1411 | "max": null, 1412 | "min": null, 1413 | "show": true 1414 | }, 1415 | { 1416 | "format": "short", 1417 | "label": null, 1418 | "logBase": 1, 1419 | "max": null, 1420 | "min": null, 1421 | "show": false 1422 | } 1423 | ] 1424 | }, 1425 | { 1426 | "aliasColors": { 1427 | "Mh/s": "#DEDAF7" 1428 | }, 1429 | "bars": false, 1430 | "dashLength": 10, 1431 | "dashes": false, 1432 | "datasource": "${DS_INFLUXDB}", 1433 | "decimals": 2, 1434 | "fill": 1, 1435 | "id": 7, 1436 | "legend": { 1437 | "alignAsTable": true, 1438 | "avg": true, 1439 | "current": true, 1440 | "hideEmpty": true, 1441 | "hideZero": false, 1442 | "max": false, 1443 | "min": false, 1444 | "rightSide": false, 1445 | "show": true, 1446 | "total": false, 1447 | "values": true 1448 | }, 1449 | "lines": true, 1450 | "linewidth": 1, 1451 | "links": [], 1452 | "nullPointMode": "null", 1453 | "percentage": false, 1454 | "pointradius": 5, 1455 | "points": false, 1456 | "renderer": "flot", 1457 | "seriesOverrides": [], 1458 | "spaceLength": 10, 1459 | "span": 6, 1460 | "stack": false, 1461 | "steppedLine": false, 1462 | "targets": [ 1463 | { 1464 | "alias": "Mh/s", 1465 | "dsType": "influxdb", 1466 | "groupBy": [ 1467 | { 1468 | "params": [ 1469 | "$__interval" 1470 | ], 1471 | "type": "time" 1472 | }, 1473 | { 1474 | "params": [ 1475 | "null" 1476 | ], 1477 | "type": "fill" 1478 | } 1479 | ], 1480 | "measurement": "eth_totals", 1481 | "orderByTime": "ASC", 1482 | "policy": "default", 1483 | "refId": "A", 1484 | "resultFormat": "time_series", 1485 | "select": [ 1486 | [ 1487 | { 1488 | "params": [ 1489 | "eth_total_speed" 1490 | ], 1491 | "type": "field" 1492 | }, 1493 | { 1494 | "params": [], 1495 | "type": "mean" 1496 | } 1497 | ] 1498 | ], 1499 | "tags": [] 1500 | } 1501 | ], 1502 | "thresholds": [], 1503 | "timeFrom": null, 1504 | "timeShift": null, 1505 | "title": "Total Mh/s", 1506 | "tooltip": { 1507 | "shared": true, 1508 | "sort": 0, 1509 | "value_type": "individual" 1510 | }, 1511 | "type": "graph", 1512 | "xaxis": { 1513 | "buckets": null, 1514 | "mode": "time", 1515 | "name": null, 1516 | "show": true, 1517 | "values": [] 1518 | }, 1519 | "yaxes": [ 1520 | { 1521 | "format": "short", 1522 | "label": "Mh/s", 1523 | "logBase": 1, 1524 | "max": null, 1525 | "min": null, 1526 | "show": true 1527 | }, 1528 | { 1529 | "format": "short", 1530 | "label": "", 1531 | "logBase": 1, 1532 | "max": null, 1533 | "min": null, 1534 | "show": false 1535 | } 1536 | ] 1537 | } 1538 | ], 1539 | "repeat": null, 1540 | "repeatIteration": null, 1541 | "repeatRowId": null, 1542 | "showTitle": false, 1543 | "title": "Dashboard Row", 1544 | "titleSize": "h6" 1545 | }, 1546 | { 1547 | "collapse": false, 1548 | "height": 250, 1549 | "panels": [ 1550 | { 1551 | "aliasColors": { 1552 | "Avg. GPU temperature": "#BF1B00", 1553 | "GPU0": "#7EB26D", 1554 | "GPU2": "#EAB839", 1555 | "GPU3": "#FCEACA" 1556 | }, 1557 | "bars": false, 1558 | "dashLength": 10, 1559 | "dashes": false, 1560 | "datasource": "${DS_INFLUXDB}", 1561 | "fill": 1, 1562 | "height": "400px", 1563 | "id": 3, 1564 | "legend": { 1565 | "alignAsTable": true, 1566 | "avg": false, 1567 | "current": true, 1568 | "hideEmpty": false, 1569 | "hideZero": false, 1570 | "max": true, 1571 | "min": true, 1572 | "rightSide": false, 1573 | "show": true, 1574 | "total": false, 1575 | "values": true 1576 | }, 1577 | "lines": true, 1578 | "linewidth": 1, 1579 | "links": [], 1580 | "nullPointMode": "connected", 1581 | "percentage": false, 1582 | "pointradius": 5, 1583 | "points": false, 1584 | "renderer": "flot", 1585 | "seriesOverrides": [], 1586 | "spaceLength": 10, 1587 | "span": 6, 1588 | "stack": false, 1589 | "steppedLine": false, 1590 | "targets": [ 1591 | { 1592 | "alias": "Avg. GPU temperature", 1593 | "dsType": "influxdb", 1594 | "groupBy": [ 1595 | { 1596 | "params": [ 1597 | "$__interval" 1598 | ], 1599 | "type": "time" 1600 | }, 1601 | { 1602 | "params": [ 1603 | "null" 1604 | ], 1605 | "type": "fill" 1606 | } 1607 | ], 1608 | "measurement": "eth_totals", 1609 | "orderByTime": "ASC", 1610 | "policy": "default", 1611 | "refId": "A", 1612 | "resultFormat": "time_series", 1613 | "select": [ 1614 | [ 1615 | { 1616 | "params": [ 1617 | "avg_temp" 1618 | ], 1619 | "type": "field" 1620 | }, 1621 | { 1622 | "params": [], 1623 | "type": "mean" 1624 | } 1625 | ] 1626 | ], 1627 | "tags": [] 1628 | }, 1629 | { 1630 | "alias": "GPU0", 1631 | "dsType": "influxdb", 1632 | "groupBy": [ 1633 | { 1634 | "params": [ 1635 | "$__interval" 1636 | ], 1637 | "type": "time" 1638 | }, 1639 | { 1640 | "params": [ 1641 | "null" 1642 | ], 1643 | "type": "fill" 1644 | } 1645 | ], 1646 | "measurement": "eth_gpu", 1647 | "orderByTime": "ASC", 1648 | "policy": "default", 1649 | "refId": "B", 1650 | "resultFormat": "time_series", 1651 | "select": [ 1652 | [ 1653 | { 1654 | "params": [ 1655 | "temp" 1656 | ], 1657 | "type": "field" 1658 | }, 1659 | { 1660 | "params": [], 1661 | "type": "mean" 1662 | } 1663 | ] 1664 | ], 1665 | "tags": [ 1666 | { 1667 | "key": "gpu", 1668 | "operator": "=", 1669 | "value": "GPU0" 1670 | } 1671 | ] 1672 | }, 1673 | { 1674 | "alias": "GPU1", 1675 | "dsType": "influxdb", 1676 | "groupBy": [ 1677 | { 1678 | "params": [ 1679 | "$__interval" 1680 | ], 1681 | "type": "time" 1682 | }, 1683 | { 1684 | "params": [ 1685 | "null" 1686 | ], 1687 | "type": "fill" 1688 | } 1689 | ], 1690 | "measurement": "eth_gpu", 1691 | "orderByTime": "ASC", 1692 | "policy": "default", 1693 | "refId": "C", 1694 | "resultFormat": "time_series", 1695 | "select": [ 1696 | [ 1697 | { 1698 | "params": [ 1699 | "temp" 1700 | ], 1701 | "type": "field" 1702 | }, 1703 | { 1704 | "params": [], 1705 | "type": "mean" 1706 | } 1707 | ] 1708 | ], 1709 | "tags": [ 1710 | { 1711 | "key": "gpu", 1712 | "operator": "=", 1713 | "value": "GPU1" 1714 | } 1715 | ] 1716 | }, 1717 | { 1718 | "alias": "GPU2", 1719 | "dsType": "influxdb", 1720 | "groupBy": [ 1721 | { 1722 | "params": [ 1723 | "$__interval" 1724 | ], 1725 | "type": "time" 1726 | }, 1727 | { 1728 | "params": [ 1729 | "null" 1730 | ], 1731 | "type": "fill" 1732 | } 1733 | ], 1734 | "measurement": "eth_gpu", 1735 | "orderByTime": "ASC", 1736 | "policy": "default", 1737 | "refId": "D", 1738 | "resultFormat": "time_series", 1739 | "select": [ 1740 | [ 1741 | { 1742 | "params": [ 1743 | "temp" 1744 | ], 1745 | "type": "field" 1746 | }, 1747 | { 1748 | "params": [], 1749 | "type": "mean" 1750 | } 1751 | ] 1752 | ], 1753 | "tags": [ 1754 | { 1755 | "key": "gpu", 1756 | "operator": "=", 1757 | "value": "GPU2" 1758 | } 1759 | ] 1760 | }, 1761 | { 1762 | "alias": "GPU3", 1763 | "dsType": "influxdb", 1764 | "groupBy": [ 1765 | { 1766 | "params": [ 1767 | "$__interval" 1768 | ], 1769 | "type": "time" 1770 | }, 1771 | { 1772 | "params": [ 1773 | "null" 1774 | ], 1775 | "type": "fill" 1776 | } 1777 | ], 1778 | "measurement": "eth_gpu", 1779 | "orderByTime": "ASC", 1780 | "policy": "default", 1781 | "refId": "E", 1782 | "resultFormat": "time_series", 1783 | "select": [ 1784 | [ 1785 | { 1786 | "params": [ 1787 | "temp" 1788 | ], 1789 | "type": "field" 1790 | }, 1791 | { 1792 | "params": [], 1793 | "type": "mean" 1794 | } 1795 | ] 1796 | ], 1797 | "tags": [ 1798 | { 1799 | "key": "gpu", 1800 | "operator": "=", 1801 | "value": "GPU3" 1802 | } 1803 | ] 1804 | } 1805 | ], 1806 | "thresholds": [], 1807 | "timeFrom": null, 1808 | "timeShift": null, 1809 | "title": "GPU Temperature", 1810 | "tooltip": { 1811 | "shared": true, 1812 | "sort": 0, 1813 | "value_type": "individual" 1814 | }, 1815 | "type": "graph", 1816 | "xaxis": { 1817 | "buckets": null, 1818 | "mode": "time", 1819 | "name": null, 1820 | "show": true, 1821 | "values": [] 1822 | }, 1823 | "yaxes": [ 1824 | { 1825 | "format": "short", 1826 | "label": "Temperature", 1827 | "logBase": 1, 1828 | "max": null, 1829 | "min": null, 1830 | "show": true 1831 | }, 1832 | { 1833 | "format": "short", 1834 | "label": null, 1835 | "logBase": 1, 1836 | "max": null, 1837 | "min": null, 1838 | "show": true 1839 | } 1840 | ] 1841 | }, 1842 | { 1843 | "aliasColors": { 1844 | "Avg. GPU temperature": "#BF1B00", 1845 | "GPU0": "#7EB26D", 1846 | "GPU1 Mh/s": "#6ED0E0", 1847 | "GPU2": "#EAB839", 1848 | "GPU2 Mh/s": "#EAB839", 1849 | "GPU3": "#FCEACA", 1850 | "GPU3 Mh/s": "#FCEACA" 1851 | }, 1852 | "bars": false, 1853 | "dashLength": 10, 1854 | "dashes": false, 1855 | "datasource": "${DS_INFLUXDB}", 1856 | "decimals": 2, 1857 | "fill": 1, 1858 | "height": "400px", 1859 | "id": 13, 1860 | "legend": { 1861 | "alignAsTable": true, 1862 | "avg": true, 1863 | "current": true, 1864 | "hideEmpty": false, 1865 | "hideZero": false, 1866 | "max": true, 1867 | "min": true, 1868 | "rightSide": false, 1869 | "show": true, 1870 | "total": false, 1871 | "values": true 1872 | }, 1873 | "lines": true, 1874 | "linewidth": 1, 1875 | "links": [], 1876 | "nullPointMode": "connected", 1877 | "percentage": false, 1878 | "pointradius": 5, 1879 | "points": false, 1880 | "renderer": "flot", 1881 | "seriesOverrides": [], 1882 | "spaceLength": 10, 1883 | "span": 6, 1884 | "stack": false, 1885 | "steppedLine": false, 1886 | "targets": [ 1887 | { 1888 | "alias": "GPU0 Mh/s", 1889 | "dsType": "influxdb", 1890 | "groupBy": [ 1891 | { 1892 | "params": [ 1893 | "$__interval" 1894 | ], 1895 | "type": "time" 1896 | }, 1897 | { 1898 | "params": [ 1899 | "null" 1900 | ], 1901 | "type": "fill" 1902 | } 1903 | ], 1904 | "measurement": "eth_gpu", 1905 | "orderByTime": "ASC", 1906 | "policy": "default", 1907 | "refId": "A", 1908 | "resultFormat": "time_series", 1909 | "select": [ 1910 | [ 1911 | { 1912 | "params": [ 1913 | "eth_speed" 1914 | ], 1915 | "type": "field" 1916 | }, 1917 | { 1918 | "params": [], 1919 | "type": "mean" 1920 | } 1921 | ] 1922 | ], 1923 | "tags": [ 1924 | { 1925 | "key": "gpu", 1926 | "operator": "=", 1927 | "value": "GPU0" 1928 | } 1929 | ] 1930 | }, 1931 | { 1932 | "alias": "GPU1 Mh/s", 1933 | "dsType": "influxdb", 1934 | "groupBy": [ 1935 | { 1936 | "params": [ 1937 | "$__interval" 1938 | ], 1939 | "type": "time" 1940 | }, 1941 | { 1942 | "params": [ 1943 | "null" 1944 | ], 1945 | "type": "fill" 1946 | } 1947 | ], 1948 | "measurement": "eth_gpu", 1949 | "orderByTime": "ASC", 1950 | "policy": "default", 1951 | "refId": "B", 1952 | "resultFormat": "time_series", 1953 | "select": [ 1954 | [ 1955 | { 1956 | "params": [ 1957 | "eth_speed" 1958 | ], 1959 | "type": "field" 1960 | }, 1961 | { 1962 | "params": [], 1963 | "type": "mean" 1964 | } 1965 | ] 1966 | ], 1967 | "tags": [ 1968 | { 1969 | "key": "gpu", 1970 | "operator": "=", 1971 | "value": "GPU1" 1972 | } 1973 | ] 1974 | }, 1975 | { 1976 | "alias": "GPU2 Mh/s", 1977 | "dsType": "influxdb", 1978 | "groupBy": [ 1979 | { 1980 | "params": [ 1981 | "$__interval" 1982 | ], 1983 | "type": "time" 1984 | }, 1985 | { 1986 | "params": [ 1987 | "null" 1988 | ], 1989 | "type": "fill" 1990 | } 1991 | ], 1992 | "measurement": "eth_gpu", 1993 | "orderByTime": "ASC", 1994 | "policy": "default", 1995 | "refId": "C", 1996 | "resultFormat": "time_series", 1997 | "select": [ 1998 | [ 1999 | { 2000 | "params": [ 2001 | "eth_speed" 2002 | ], 2003 | "type": "field" 2004 | }, 2005 | { 2006 | "params": [], 2007 | "type": "mean" 2008 | } 2009 | ] 2010 | ], 2011 | "tags": [ 2012 | { 2013 | "key": "gpu", 2014 | "operator": "=", 2015 | "value": "GPU2" 2016 | } 2017 | ] 2018 | }, 2019 | { 2020 | "alias": "GPU3 Mh/s", 2021 | "dsType": "influxdb", 2022 | "groupBy": [ 2023 | { 2024 | "params": [ 2025 | "$__interval" 2026 | ], 2027 | "type": "time" 2028 | }, 2029 | { 2030 | "params": [ 2031 | "null" 2032 | ], 2033 | "type": "fill" 2034 | } 2035 | ], 2036 | "measurement": "eth_gpu", 2037 | "orderByTime": "ASC", 2038 | "policy": "default", 2039 | "refId": "D", 2040 | "resultFormat": "time_series", 2041 | "select": [ 2042 | [ 2043 | { 2044 | "params": [ 2045 | "eth_speed" 2046 | ], 2047 | "type": "field" 2048 | }, 2049 | { 2050 | "params": [], 2051 | "type": "mean" 2052 | } 2053 | ] 2054 | ], 2055 | "tags": [ 2056 | { 2057 | "key": "gpu", 2058 | "operator": "=", 2059 | "value": "GPU3" 2060 | } 2061 | ] 2062 | } 2063 | ], 2064 | "thresholds": [], 2065 | "timeFrom": null, 2066 | "timeShift": null, 2067 | "title": "GPU Mh/s", 2068 | "tooltip": { 2069 | "shared": true, 2070 | "sort": 0, 2071 | "value_type": "individual" 2072 | }, 2073 | "type": "graph", 2074 | "xaxis": { 2075 | "buckets": null, 2076 | "mode": "time", 2077 | "name": null, 2078 | "show": true, 2079 | "values": [] 2080 | }, 2081 | "yaxes": [ 2082 | { 2083 | "format": "short", 2084 | "label": "Mh/s", 2085 | "logBase": 1, 2086 | "max": null, 2087 | "min": null, 2088 | "show": true 2089 | }, 2090 | { 2091 | "format": "short", 2092 | "label": null, 2093 | "logBase": 1, 2094 | "max": null, 2095 | "min": null, 2096 | "show": false 2097 | } 2098 | ] 2099 | } 2100 | ], 2101 | "repeat": null, 2102 | "repeatIteration": null, 2103 | "repeatRowId": null, 2104 | "showTitle": false, 2105 | "title": "Dashboard Row", 2106 | "titleSize": "h6" 2107 | }, 2108 | { 2109 | "collapse": false, 2110 | "height": 250, 2111 | "panels": [ 2112 | { 2113 | "aliasColors": { 2114 | "Avg. fan speed %": "#BF1B00", 2115 | "GPU0": "#7EB26D", 2116 | "GPU2": "#EAB839", 2117 | "GPU3": "#FCEACA" 2118 | }, 2119 | "bars": false, 2120 | "dashLength": 10, 2121 | "dashes": false, 2122 | "datasource": "${DS_INFLUXDB}", 2123 | "fill": 1, 2124 | "height": "450px", 2125 | "id": 2, 2126 | "legend": { 2127 | "alignAsTable": true, 2128 | "avg": false, 2129 | "current": true, 2130 | "max": true, 2131 | "min": true, 2132 | "rightSide": false, 2133 | "show": true, 2134 | "sortDesc": true, 2135 | "total": false, 2136 | "values": true 2137 | }, 2138 | "lines": true, 2139 | "linewidth": 1, 2140 | "links": [], 2141 | "nullPointMode": "null", 2142 | "percentage": true, 2143 | "pointradius": 5, 2144 | "points": false, 2145 | "renderer": "flot", 2146 | "seriesOverrides": [], 2147 | "spaceLength": 10, 2148 | "span": 6, 2149 | "stack": false, 2150 | "steppedLine": false, 2151 | "targets": [ 2152 | { 2153 | "alias": "Avg. fan speed %", 2154 | "dsType": "influxdb", 2155 | "groupBy": [ 2156 | { 2157 | "params": [ 2158 | "$__interval" 2159 | ], 2160 | "type": "time" 2161 | }, 2162 | { 2163 | "params": [ 2164 | "null" 2165 | ], 2166 | "type": "fill" 2167 | } 2168 | ], 2169 | "measurement": "eth_totals", 2170 | "orderByTime": "ASC", 2171 | "policy": "default", 2172 | "refId": "A", 2173 | "resultFormat": "time_series", 2174 | "select": [ 2175 | [ 2176 | { 2177 | "params": [ 2178 | "avg_fan" 2179 | ], 2180 | "type": "field" 2181 | }, 2182 | { 2183 | "params": [], 2184 | "type": "mean" 2185 | } 2186 | ] 2187 | ], 2188 | "tags": [] 2189 | }, 2190 | { 2191 | "alias": "GPU0", 2192 | "dsType": "influxdb", 2193 | "groupBy": [ 2194 | { 2195 | "params": [ 2196 | "$__interval" 2197 | ], 2198 | "type": "time" 2199 | }, 2200 | { 2201 | "params": [ 2202 | "null" 2203 | ], 2204 | "type": "fill" 2205 | } 2206 | ], 2207 | "measurement": "eth_gpu", 2208 | "orderByTime": "ASC", 2209 | "policy": "default", 2210 | "refId": "B", 2211 | "resultFormat": "time_series", 2212 | "select": [ 2213 | [ 2214 | { 2215 | "params": [ 2216 | "fan" 2217 | ], 2218 | "type": "field" 2219 | }, 2220 | { 2221 | "params": [], 2222 | "type": "mean" 2223 | } 2224 | ] 2225 | ], 2226 | "tags": [ 2227 | { 2228 | "key": "gpu", 2229 | "operator": "=", 2230 | "value": "GPU0" 2231 | } 2232 | ] 2233 | }, 2234 | { 2235 | "alias": "GPU1", 2236 | "dsType": "influxdb", 2237 | "groupBy": [ 2238 | { 2239 | "params": [ 2240 | "$__interval" 2241 | ], 2242 | "type": "time" 2243 | }, 2244 | { 2245 | "params": [ 2246 | "null" 2247 | ], 2248 | "type": "fill" 2249 | } 2250 | ], 2251 | "measurement": "eth_gpu", 2252 | "orderByTime": "ASC", 2253 | "policy": "default", 2254 | "refId": "C", 2255 | "resultFormat": "time_series", 2256 | "select": [ 2257 | [ 2258 | { 2259 | "params": [ 2260 | "fan" 2261 | ], 2262 | "type": "field" 2263 | }, 2264 | { 2265 | "params": [], 2266 | "type": "mean" 2267 | } 2268 | ] 2269 | ], 2270 | "tags": [ 2271 | { 2272 | "key": "gpu", 2273 | "operator": "=", 2274 | "value": "GPU1" 2275 | } 2276 | ] 2277 | }, 2278 | { 2279 | "alias": "GPU2", 2280 | "dsType": "influxdb", 2281 | "groupBy": [ 2282 | { 2283 | "params": [ 2284 | "$__interval" 2285 | ], 2286 | "type": "time" 2287 | }, 2288 | { 2289 | "params": [ 2290 | "null" 2291 | ], 2292 | "type": "fill" 2293 | } 2294 | ], 2295 | "measurement": "eth_gpu", 2296 | "orderByTime": "ASC", 2297 | "policy": "default", 2298 | "refId": "D", 2299 | "resultFormat": "time_series", 2300 | "select": [ 2301 | [ 2302 | { 2303 | "params": [ 2304 | "fan" 2305 | ], 2306 | "type": "field" 2307 | }, 2308 | { 2309 | "params": [], 2310 | "type": "mean" 2311 | } 2312 | ] 2313 | ], 2314 | "tags": [ 2315 | { 2316 | "key": "gpu", 2317 | "operator": "=", 2318 | "value": "GPU2" 2319 | } 2320 | ] 2321 | }, 2322 | { 2323 | "alias": "GPU3", 2324 | "dsType": "influxdb", 2325 | "groupBy": [ 2326 | { 2327 | "params": [ 2328 | "$__interval" 2329 | ], 2330 | "type": "time" 2331 | }, 2332 | { 2333 | "params": [ 2334 | "null" 2335 | ], 2336 | "type": "fill" 2337 | } 2338 | ], 2339 | "measurement": "eth_gpu", 2340 | "orderByTime": "ASC", 2341 | "policy": "default", 2342 | "refId": "E", 2343 | "resultFormat": "time_series", 2344 | "select": [ 2345 | [ 2346 | { 2347 | "params": [ 2348 | "fan" 2349 | ], 2350 | "type": "field" 2351 | }, 2352 | { 2353 | "params": [], 2354 | "type": "mean" 2355 | } 2356 | ] 2357 | ], 2358 | "tags": [ 2359 | { 2360 | "key": "gpu", 2361 | "operator": "=", 2362 | "value": "GPU3" 2363 | } 2364 | ] 2365 | } 2366 | ], 2367 | "thresholds": [], 2368 | "timeFrom": null, 2369 | "timeShift": null, 2370 | "title": "Fan speed", 2371 | "tooltip": { 2372 | "shared": true, 2373 | "sort": 0, 2374 | "value_type": "individual" 2375 | }, 2376 | "transparent": false, 2377 | "type": "graph", 2378 | "xaxis": { 2379 | "buckets": null, 2380 | "mode": "time", 2381 | "name": null, 2382 | "show": true, 2383 | "values": [] 2384 | }, 2385 | "yaxes": [ 2386 | { 2387 | "format": "short", 2388 | "label": "Percentage", 2389 | "logBase": 1, 2390 | "max": null, 2391 | "min": null, 2392 | "show": true 2393 | }, 2394 | { 2395 | "format": "short", 2396 | "label": "", 2397 | "logBase": 1, 2398 | "max": null, 2399 | "min": null, 2400 | "show": true 2401 | } 2402 | ] 2403 | } 2404 | ], 2405 | "repeat": null, 2406 | "repeatIteration": null, 2407 | "repeatRowId": null, 2408 | "showTitle": false, 2409 | "title": "Dashboard Row", 2410 | "titleSize": "h6" 2411 | } 2412 | ], 2413 | "schemaVersion": 14, 2414 | "style": "dark", 2415 | "tags": [], 2416 | "templating": { 2417 | "list": [] 2418 | }, 2419 | "time": { 2420 | "from": "now-3h", 2421 | "to": "now" 2422 | }, 2423 | "timepicker": { 2424 | "refresh_intervals": [ 2425 | "5s", 2426 | "10s", 2427 | "30s", 2428 | "1m", 2429 | "5m", 2430 | "15m", 2431 | "30m", 2432 | "1h", 2433 | "2h", 2434 | "1d" 2435 | ], 2436 | "time_options": [ 2437 | "5m", 2438 | "15m", 2439 | "1h", 2440 | "6h", 2441 | "12h", 2442 | "24h", 2443 | "2d", 2444 | "7d", 2445 | "30d" 2446 | ] 2447 | }, 2448 | "timezone": "", 2449 | "title": "ETH miner", 2450 | "version": 27 2451 | } -------------------------------------------------------------------------------- /grafana-dashboard/grafana-screenshot_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobdobs/claymore-ethereum-log-genereator/0042d641d93018625a9a8f059b1cba764be4349c/grafana-dashboard/grafana-screenshot_01.png -------------------------------------------------------------------------------- /log_examples/gpu.log: -------------------------------------------------------------------------------- 1 | 2017-06-17T22:51:56Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.378, eth_shares: 562, eth_shares_pct: 26.37, dcr_speed: 328.532, dcr_shares: 2412, dcr_shares_pct: 39.34 2 | 2017-06-17T22:51:56Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.379, eth_shares: 594, eth_shares_pct: 27.87, dcr_speed: 352.545, dcr_shares: 2631, dcr_shares_pct: 42.91 3 | 2017-06-17T22:51:56Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.777, eth_shares: 405, eth_shares_pct: 19.01, dcr_speed: 285.329, dcr_shares: 1087, dcr_shares_pct: 17.73 4 | 2017-06-17T22:51:56Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.918, eth_shares: 615, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 5 | 2017-06-17T22:52:06Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.904, eth_shares: 562, eth_shares_pct: 26.37, dcr_speed: 334.849, dcr_shares: 2412, dcr_shares_pct: 39.33 6 | 2017-06-17T22:52:06Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.315, eth_shares: 594, eth_shares_pct: 27.87, dcr_speed: 351.774, dcr_shares: 2631, dcr_shares_pct: 42.91 7 | 2017-06-17T22:52:06Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.732, eth_shares: 405, eth_shares_pct: 19.01, dcr_speed: 284.778, dcr_shares: 1088, dcr_shares_pct: 17.74 8 | 2017-06-17T22:52:06Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.930, eth_shares: 615, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 9 | 2017-06-17T22:52:16Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.948, eth_shares: 562, eth_shares_pct: 26.37, dcr_speed: 335.375, dcr_shares: 2413, dcr_shares_pct: 39.34 10 | 2017-06-17T22:52:16Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.323, eth_shares: 594, eth_shares_pct: 27.87, dcr_speed: 351.871, dcr_shares: 2631, dcr_shares_pct: 42.9 11 | 2017-06-17T22:52:16Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.739, eth_shares: 405, eth_shares_pct: 19.01, dcr_speed: 284.864, dcr_shares: 1088, dcr_shares_pct: 17.74 12 | 2017-06-17T22:52:16Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.912, eth_shares: 615, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 13 | 2017-06-17T22:52:26Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.925, eth_shares: 562, eth_shares_pct: 26.37, dcr_speed: 335.102, dcr_shares: 2413, dcr_shares_pct: 39.34 14 | 2017-06-17T22:52:26Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 28.956, eth_shares: 594, eth_shares_pct: 27.87, dcr_speed: 347.466, dcr_shares: 2631, dcr_shares_pct: 42.9 15 | 2017-06-17T22:52:26Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.751, eth_shares: 405, eth_shares_pct: 19.01, dcr_speed: 285.016, dcr_shares: 1088, dcr_shares_pct: 17.74 16 | 2017-06-17T22:52:26Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.909, eth_shares: 615, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 17 | 2017-06-17T22:52:36Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.964, eth_shares: 562, eth_shares_pct: 26.37, dcr_speed: 335.573, dcr_shares: 2413, dcr_shares_pct: 39.34 18 | 2017-06-17T22:52:36Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.270, eth_shares: 594, eth_shares_pct: 27.87, dcr_speed: 351.242, dcr_shares: 2631, dcr_shares_pct: 42.9 19 | 2017-06-17T22:52:36Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.789, eth_shares: 405, eth_shares_pct: 19.01, dcr_speed: 285.467, dcr_shares: 1088, dcr_shares_pct: 17.74 20 | 2017-06-17T22:52:36Z02:00, machine: minr, id: GPU3, temp: 73, fan: 69, eth_speed: 28.910, eth_shares: 615, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 21 | 2017-06-17T22:52:46Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.382, eth_shares: 562, eth_shares_pct: 26.36, dcr_speed: 328.585, dcr_shares: 2414, dcr_shares_pct: 39.35 22 | 2017-06-17T22:52:46Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.385, eth_shares: 594, eth_shares_pct: 27.86, dcr_speed: 352.616, dcr_shares: 2631, dcr_shares_pct: 42.89 23 | 2017-06-17T22:52:46Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.736, eth_shares: 406, eth_shares_pct: 19.04, dcr_speed: 284.827, dcr_shares: 1088, dcr_shares_pct: 17.74 24 | 2017-06-17T22:52:46Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.908, eth_shares: 615, eth_shares_pct: 28.85, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 25 | 2017-06-17T22:52:56Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.399, eth_shares: 562, eth_shares_pct: 26.36, dcr_speed: 328.788, dcr_shares: 2414, dcr_shares_pct: 39.35 26 | 2017-06-17T22:52:56Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.394, eth_shares: 594, eth_shares_pct: 27.86, dcr_speed: 352.725, dcr_shares: 2632, dcr_shares_pct: 42.9 27 | 2017-06-17T22:52:56Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.723, eth_shares: 406, eth_shares_pct: 19.04, dcr_speed: 284.681, dcr_shares: 1088, dcr_shares_pct: 17.73 28 | 2017-06-17T22:52:56Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.907, eth_shares: 615, eth_shares_pct: 28.85, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 29 | 2017-06-17T22:53:06Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.922, eth_shares: 562, eth_shares_pct: 26.35, dcr_speed: 335.069, dcr_shares: 2415, dcr_shares_pct: 39.36 30 | 2017-06-17T22:53:06Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.350, eth_shares: 595, eth_shares_pct: 27.89, dcr_speed: 352.195, dcr_shares: 2632, dcr_shares_pct: 42.89 31 | 2017-06-17T22:53:06Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.290, eth_shares: 406, eth_shares_pct: 19.03, dcr_speed: 279.485, dcr_shares: 1088, dcr_shares_pct: 17.73 32 | 2017-06-17T22:53:06Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.899, eth_shares: 615, eth_shares_pct: 28.83, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 33 | 2017-06-17T22:53:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.907, eth_shares: 562, eth_shares_pct: 26.34, dcr_speed: 334.888, dcr_shares: 2415, dcr_shares_pct: 39.36 34 | 2017-06-17T22:53:17Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.359, eth_shares: 596, eth_shares_pct: 27.93, dcr_speed: 352.304, dcr_shares: 2632, dcr_shares_pct: 42.89 35 | 2017-06-17T22:53:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.746, eth_shares: 406, eth_shares_pct: 19.03, dcr_speed: 284.947, dcr_shares: 1088, dcr_shares_pct: 17.73 36 | 2017-06-17T22:53:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.913, eth_shares: 615, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 37 | 2017-06-17T22:53:27Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.906, eth_shares: 562, eth_shares_pct: 26.34, dcr_speed: 334.875, dcr_shares: 2416, dcr_shares_pct: 39.37 38 | 2017-06-17T22:53:27Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.312, eth_shares: 596, eth_shares_pct: 27.93, dcr_speed: 351.744, dcr_shares: 2632, dcr_shares_pct: 42.89 39 | 2017-06-17T22:53:27Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.756, eth_shares: 406, eth_shares_pct: 19.03, dcr_speed: 285.076, dcr_shares: 1088, dcr_shares_pct: 17.73 40 | 2017-06-17T22:53:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.917, eth_shares: 615, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 41 | 2017-06-17T22:53:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.124, eth_shares: 563, eth_shares_pct: 26.37, dcr_speed: 337.491, dcr_shares: 2416, dcr_shares_pct: 39.37 42 | 2017-06-17T22:53:37Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.064, eth_shares: 596, eth_shares_pct: 27.92, dcr_speed: 348.771, dcr_shares: 2632, dcr_shares_pct: 42.89 43 | 2017-06-17T22:53:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.735, eth_shares: 406, eth_shares_pct: 19.02, dcr_speed: 284.818, dcr_shares: 1088, dcr_shares_pct: 17.73 44 | 2017-06-17T22:53:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.907, eth_shares: 615, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 45 | 2017-06-17T22:53:47Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.900, eth_shares: 563, eth_shares_pct: 26.37, dcr_speed: 334.804, dcr_shares: 2416, dcr_shares_pct: 39.35 46 | 2017-06-17T22:53:47Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.287, eth_shares: 596, eth_shares_pct: 27.92, dcr_speed: 351.447, dcr_shares: 2635, dcr_shares_pct: 42.92 47 | 2017-06-17T22:53:47Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.735, eth_shares: 406, eth_shares_pct: 19.02, dcr_speed: 284.824, dcr_shares: 1088, dcr_shares_pct: 17.72 48 | 2017-06-17T22:53:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.914, eth_shares: 615, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 49 | 2017-06-17T22:53:57Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.912, eth_shares: 563, eth_shares_pct: 26.37, dcr_speed: 334.946, dcr_shares: 2416, dcr_shares_pct: 39.34 50 | 2017-06-17T22:53:57Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.347, eth_shares: 596, eth_shares_pct: 27.92, dcr_speed: 352.168, dcr_shares: 2636, dcr_shares_pct: 42.92 51 | 2017-06-17T22:53:57Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.727, eth_shares: 406, eth_shares_pct: 19.02, dcr_speed: 284.718, dcr_shares: 1088, dcr_shares_pct: 17.72 52 | 2017-06-17T22:53:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.919, eth_shares: 615, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 53 | 2017-06-17T22:54:07Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.925, eth_shares: 563, eth_shares_pct: 26.37, dcr_speed: 335.099, dcr_shares: 2416, dcr_shares_pct: 39.34 54 | 2017-06-17T22:54:07Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.347, eth_shares: 596, eth_shares_pct: 27.92, dcr_speed: 352.160, dcr_shares: 2637, dcr_shares_pct: 42.93 55 | 2017-06-17T22:54:07Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.726, eth_shares: 406, eth_shares_pct: 19.02, dcr_speed: 284.709, dcr_shares: 1088, dcr_shares_pct: 17.71 56 | 2017-06-17T22:54:07Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.915, eth_shares: 615, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 57 | 2017-06-17T22:54:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.924, eth_shares: 563, eth_shares_pct: 26.37, dcr_speed: 335.082, dcr_shares: 2418, dcr_shares_pct: 39.36 58 | 2017-06-17T22:54:17Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.076, eth_shares: 596, eth_shares_pct: 27.92, dcr_speed: 348.913, dcr_shares: 2637, dcr_shares_pct: 42.92 59 | 2017-06-17T22:54:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.745, eth_shares: 406, eth_shares_pct: 19.02, dcr_speed: 284.939, dcr_shares: 1088, dcr_shares_pct: 17.71 60 | 2017-06-17T22:54:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.904, eth_shares: 615, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 61 | 2017-06-17T22:54:27Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.924, eth_shares: 563, eth_shares_pct: 26.36, dcr_speed: 335.086, dcr_shares: 2418, dcr_shares_pct: 39.34 62 | 2017-06-17T22:54:27Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.123, eth_shares: 597, eth_shares_pct: 27.95, dcr_speed: 349.473, dcr_shares: 2637, dcr_shares_pct: 42.91 63 | 2017-06-17T22:54:27Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.668, eth_shares: 406, eth_shares_pct: 19.01, dcr_speed: 284.021, dcr_shares: 1090, dcr_shares_pct: 17.74 64 | 2017-06-17T22:54:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.913, eth_shares: 615, eth_shares_pct: 28.79, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 65 | 2017-06-17T22:54:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.910, eth_shares: 563, eth_shares_pct: 26.36, dcr_speed: 334.914, dcr_shares: 2418, dcr_shares_pct: 39.34 66 | 2017-06-17T22:54:37Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.319, eth_shares: 597, eth_shares_pct: 27.95, dcr_speed: 351.823, dcr_shares: 2637, dcr_shares_pct: 42.91 67 | 2017-06-17T22:54:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.746, eth_shares: 406, eth_shares_pct: 19.01, dcr_speed: 284.956, dcr_shares: 1090, dcr_shares_pct: 17.74 68 | 2017-06-17T22:54:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.910, eth_shares: 615, eth_shares_pct: 28.79, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 69 | 2017-06-17T22:54:47Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.915, eth_shares: 563, eth_shares_pct: 26.36, dcr_speed: 334.975, dcr_shares: 2419, dcr_shares_pct: 39.35 70 | 2017-06-17T22:54:47Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 28.979, eth_shares: 597, eth_shares_pct: 27.95, dcr_speed: 347.743, dcr_shares: 2637, dcr_shares_pct: 42.9 71 | 2017-06-17T22:54:47Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.727, eth_shares: 406, eth_shares_pct: 19.01, dcr_speed: 284.721, dcr_shares: 1090, dcr_shares_pct: 17.73 72 | 2017-06-17T22:54:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.907, eth_shares: 615, eth_shares_pct: 28.79, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 73 | 2017-06-17T22:54:57Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 21.112, eth_shares: 563, eth_shares_pct: 26.35, dcr_speed: 253.345, dcr_shares: 2419, dcr_shares_pct: 39.35 74 | 2017-06-17T22:54:57Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.384, eth_shares: 598, eth_shares_pct: 27.98, dcr_speed: 352.602, dcr_shares: 2637, dcr_shares_pct: 42.9 75 | 2017-06-17T22:54:57Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.740, eth_shares: 406, eth_shares_pct: 19, dcr_speed: 284.881, dcr_shares: 1090, dcr_shares_pct: 17.73 76 | 2017-06-17T22:54:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 24.243, eth_shares: 615, eth_shares_pct: 28.78, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 77 | 2017-06-17T22:55:07Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.072, eth_shares: 563, eth_shares_pct: 26.35, dcr_speed: 336.864, dcr_shares: 2420, dcr_shares_pct: 39.36 78 | 2017-06-17T22:55:07Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.359, eth_shares: 598, eth_shares_pct: 27.98, dcr_speed: 352.309, dcr_shares: 2637, dcr_shares_pct: 42.89 79 | 2017-06-17T22:55:07Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.737, eth_shares: 406, eth_shares_pct: 19, dcr_speed: 284.841, dcr_shares: 1090, dcr_shares_pct: 17.73 80 | 2017-06-17T22:55:07Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.915, eth_shares: 615, eth_shares_pct: 28.78, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 81 | 2017-06-17T22:55:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.960, eth_shares: 563, eth_shares_pct: 26.35, dcr_speed: 335.521, dcr_shares: 2421, dcr_shares_pct: 39.37 82 | 2017-06-17T22:55:17Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.359, eth_shares: 598, eth_shares_pct: 27.98, dcr_speed: 352.309, dcr_shares: 2637, dcr_shares_pct: 42.89 83 | 2017-06-17T22:55:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.724, eth_shares: 406, eth_shares_pct: 19, dcr_speed: 284.692, dcr_shares: 1090, dcr_shares_pct: 17.73 84 | 2017-06-17T22:55:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.910, eth_shares: 615, eth_shares_pct: 28.78, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 85 | 2017-06-17T22:55:27Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.052, eth_shares: 563, eth_shares_pct: 26.35, dcr_speed: 336.628, dcr_shares: 2421, dcr_shares_pct: 39.37 86 | 2017-06-17T22:55:27Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.383, eth_shares: 598, eth_shares_pct: 27.98, dcr_speed: 352.598, dcr_shares: 2637, dcr_shares_pct: 42.89 87 | 2017-06-17T22:55:27Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.751, eth_shares: 406, eth_shares_pct: 19, dcr_speed: 285.016, dcr_shares: 1090, dcr_shares_pct: 17.73 88 | 2017-06-17T22:55:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.904, eth_shares: 615, eth_shares_pct: 28.78, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 89 | 2017-06-17T22:55:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.913, eth_shares: 563, eth_shares_pct: 26.35, dcr_speed: 334.953, dcr_shares: 2421, dcr_shares_pct: 39.37 90 | 2017-06-17T22:55:37Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.330, eth_shares: 598, eth_shares_pct: 27.98, dcr_speed: 351.963, dcr_shares: 2637, dcr_shares_pct: 42.89 91 | 2017-06-17T22:55:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.285, eth_shares: 406, eth_shares_pct: 19, dcr_speed: 279.421, dcr_shares: 1090, dcr_shares_pct: 17.73 92 | 2017-06-17T22:55:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.918, eth_shares: 615, eth_shares_pct: 28.78, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 93 | 2017-06-17T22:55:47Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.922, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 335.066, dcr_shares: 2422, dcr_shares_pct: 39.37 94 | 2017-06-17T22:55:47Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.388, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.655, dcr_shares: 2637, dcr_shares_pct: 42.86 95 | 2017-06-17T22:55:47Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.745, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.939, dcr_shares: 1092, dcr_shares_pct: 17.75 96 | 2017-06-17T22:55:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.906, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 97 | 2017-06-17T22:55:57Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.925, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 335.105, dcr_shares: 2423, dcr_shares_pct: 39.37 98 | 2017-06-17T22:55:57Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.027, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 348.325, dcr_shares: 2637, dcr_shares_pct: 42.85 99 | 2017-06-17T22:55:57Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.745, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.941, dcr_shares: 1093, dcr_shares_pct: 17.76 100 | 2017-06-17T22:55:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.906, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 101 | 2017-06-17T22:56:07Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.900, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 334.797, dcr_shares: 2423, dcr_shares_pct: 39.37 102 | 2017-06-17T22:56:07Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.341, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.094, dcr_shares: 2637, dcr_shares_pct: 42.85 103 | 2017-06-17T22:56:07Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.739, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.867, dcr_shares: 1093, dcr_shares_pct: 17.76 104 | 2017-06-17T22:56:07Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.908, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 105 | 2017-06-17T22:56:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.135, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 337.616, dcr_shares: 2423, dcr_shares_pct: 39.37 106 | 2017-06-17T22:56:17Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.301, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 351.613, dcr_shares: 2638, dcr_shares_pct: 42.86 107 | 2017-06-17T22:56:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.742, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.907, dcr_shares: 1093, dcr_shares_pct: 17.76 108 | 2017-06-17T22:56:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.918, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 109 | 2017-06-17T22:56:27Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.932, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 335.186, dcr_shares: 2423, dcr_shares_pct: 39.36 110 | 2017-06-17T22:56:27Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.357, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.287, dcr_shares: 2638, dcr_shares_pct: 42.85 111 | 2017-06-17T22:56:27Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.746, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.953, dcr_shares: 1094, dcr_shares_pct: 17.77 112 | 2017-06-17T22:56:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.919, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 113 | 2017-06-17T22:56:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.934, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 335.212, dcr_shares: 2423, dcr_shares_pct: 39.36 114 | 2017-06-17T22:56:37Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.362, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.339, dcr_shares: 2638, dcr_shares_pct: 42.85 115 | 2017-06-17T22:56:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.774, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 285.289, dcr_shares: 1094, dcr_shares_pct: 17.77 116 | 2017-06-17T22:56:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.914, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 117 | 2017-06-17T22:56:47Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.905, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 334.865, dcr_shares: 2424, dcr_shares_pct: 39.37 118 | 2017-06-17T22:56:47Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.367, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.409, dcr_shares: 2638, dcr_shares_pct: 42.85 119 | 2017-06-17T22:56:47Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.740, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.881, dcr_shares: 1094, dcr_shares_pct: 17.77 120 | 2017-06-17T22:56:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.906, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 121 | 2017-06-17T22:56:57Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.901, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 334.810, dcr_shares: 2425, dcr_shares_pct: 39.37 122 | 2017-06-17T22:56:57Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.409, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.906, dcr_shares: 2639, dcr_shares_pct: 42.85 123 | 2017-06-17T22:56:57Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.729, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.747, dcr_shares: 1094, dcr_shares_pct: 17.76 124 | 2017-06-17T22:56:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.916, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 125 | 2017-06-17T22:57:07Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.931, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 335.167, dcr_shares: 2425, dcr_shares_pct: 39.37 126 | 2017-06-17T22:57:07Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.037, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 348.445, dcr_shares: 2639, dcr_shares_pct: 42.85 127 | 2017-06-17T22:57:07Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.748, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.976, dcr_shares: 1094, dcr_shares_pct: 17.76 128 | 2017-06-17T22:57:07Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.912, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 129 | 2017-06-17T22:57:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.920, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 335.037, dcr_shares: 2425, dcr_shares_pct: 39.37 130 | 2017-06-17T22:57:17Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.300, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 351.604, dcr_shares: 2639, dcr_shares_pct: 42.85 131 | 2017-06-17T22:57:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.778, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 285.341, dcr_shares: 1094, dcr_shares_pct: 17.76 132 | 2017-06-17T22:57:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.927, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 133 | 2017-06-17T22:57:27Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.068, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 336.821, dcr_shares: 2425, dcr_shares_pct: 39.37 134 | 2017-06-17T22:57:27Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.003, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 348.034, dcr_shares: 2639, dcr_shares_pct: 42.85 135 | 2017-06-17T22:57:27Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 19.521, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 234.252, dcr_shares: 1094, dcr_shares_pct: 17.76 136 | 2017-06-17T22:57:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.907, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 137 | 2017-06-17T22:57:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.897, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 334.768, dcr_shares: 2425, dcr_shares_pct: 39.37 138 | 2017-06-17T22:57:37Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 28.872, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 346.458, dcr_shares: 2639, dcr_shares_pct: 42.84 139 | 2017-06-17T22:57:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.739, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 284.864, dcr_shares: 1095, dcr_shares_pct: 17.78 140 | 2017-06-17T22:57:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.908, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 141 | 2017-06-17T22:57:47Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.054, eth_shares: 563, eth_shares_pct: 26.33, dcr_speed: 336.647, dcr_shares: 2425, dcr_shares_pct: 39.37 142 | 2017-06-17T22:57:47Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.358, eth_shares: 598, eth_shares_pct: 27.97, dcr_speed: 352.300, dcr_shares: 2639, dcr_shares_pct: 42.84 143 | 2017-06-17T22:57:47Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.244, eth_shares: 406, eth_shares_pct: 18.99, dcr_speed: 278.928, dcr_shares: 1095, dcr_shares_pct: 17.78 144 | 2017-06-17T22:57:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.923, eth_shares: 616, eth_shares_pct: 28.81, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 145 | 2017-06-17T22:57:57Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.905, eth_shares: 563, eth_shares_pct: 26.32, dcr_speed: 334.855, dcr_shares: 2425, dcr_shares_pct: 39.37 146 | 2017-06-17T22:57:57Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 29.371, eth_shares: 599, eth_shares_pct: 28, dcr_speed: 352.449, dcr_shares: 2639, dcr_shares_pct: 42.84 147 | 2017-06-17T22:57:57Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.765, eth_shares: 406, eth_shares_pct: 18.98, dcr_speed: 285.177, dcr_shares: 1095, dcr_shares_pct: 17.78 148 | 2017-06-17T22:57:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.913, eth_shares: 616, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 149 | 2017-06-17T22:58:07Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.084, eth_shares: 563, eth_shares_pct: 26.31, dcr_speed: 337.011, dcr_shares: 2425, dcr_shares_pct: 39.37 150 | 2017-06-17T22:58:07Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.349, eth_shares: 599, eth_shares_pct: 27.99, dcr_speed: 352.186, dcr_shares: 2639, dcr_shares_pct: 42.84 151 | 2017-06-17T22:58:07Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.722, eth_shares: 407, eth_shares_pct: 19.02, dcr_speed: 284.669, dcr_shares: 1095, dcr_shares_pct: 17.78 152 | 2017-06-17T22:58:07Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.926, eth_shares: 616, eth_shares_pct: 28.79, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 153 | 2017-06-17T22:58:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.391, eth_shares: 563, eth_shares_pct: 26.31, dcr_speed: 328.691, dcr_shares: 2426, dcr_shares_pct: 39.38 154 | 2017-06-17T22:58:17Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 19.423, eth_shares: 599, eth_shares_pct: 27.99, dcr_speed: 233.076, dcr_shares: 2639, dcr_shares_pct: 42.83 155 | 2017-06-17T22:58:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.737, eth_shares: 407, eth_shares_pct: 19.02, dcr_speed: 284.841, dcr_shares: 1095, dcr_shares_pct: 17.77 156 | 2017-06-17T22:58:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.935, eth_shares: 616, eth_shares_pct: 28.79, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 157 | 2017-06-17T22:58:27Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.932, eth_shares: 563, eth_shares_pct: 26.31, dcr_speed: 335.183, dcr_shares: 2426, dcr_shares_pct: 39.38 158 | 2017-06-17T22:58:27Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.346, eth_shares: 599, eth_shares_pct: 27.99, dcr_speed: 352.155, dcr_shares: 2639, dcr_shares_pct: 42.83 159 | 2017-06-17T22:58:27Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.721, eth_shares: 407, eth_shares_pct: 19.02, dcr_speed: 284.649, dcr_shares: 1095, dcr_shares_pct: 17.77 160 | 2017-06-17T22:58:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.915, eth_shares: 616, eth_shares_pct: 28.79, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 161 | 2017-06-17T22:58:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.072, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 336.867, dcr_shares: 2426, dcr_shares_pct: 39.38 162 | 2017-06-17T22:58:37Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.331, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 351.976, dcr_shares: 2639, dcr_shares_pct: 42.83 163 | 2017-06-17T22:58:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.727, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 284.729, dcr_shares: 1095, dcr_shares_pct: 17.77 164 | 2017-06-17T22:58:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.914, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 165 | 2017-06-17T22:58:47Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 28.097, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 337.165, dcr_shares: 2427, dcr_shares_pct: 39.38 166 | 2017-06-17T22:58:47Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.372, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 352.458, dcr_shares: 2639, dcr_shares_pct: 42.82 167 | 2017-06-17T22:58:47Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.733, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 284.801, dcr_shares: 1096, dcr_shares_pct: 17.78 168 | 2017-06-17T22:58:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.910, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 169 | 2017-06-17T22:58:57Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.950, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 335.404, dcr_shares: 2429, dcr_shares_pct: 39.4 170 | 2017-06-17T22:58:57Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.379, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 352.545, dcr_shares: 2639, dcr_shares_pct: 42.81 171 | 2017-06-17T22:58:57Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.753, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 285.039, dcr_shares: 1096, dcr_shares_pct: 17.78 172 | 2017-06-17T22:58:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.910, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 173 | 2017-06-17T22:59:07Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.907, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 334.881, dcr_shares: 2429, dcr_shares_pct: 39.39 174 | 2017-06-17T22:59:07Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.387, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 352.642, dcr_shares: 2639, dcr_shares_pct: 42.8 175 | 2017-06-17T22:59:07Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.741, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 284.896, dcr_shares: 1097, dcr_shares_pct: 17.79 176 | 2017-06-17T22:59:07Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.926, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 177 | 2017-06-17T22:59:17Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.098, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 337.172, dcr_shares: 2429, dcr_shares_pct: 39.37 178 | 2017-06-17T22:59:17Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.335, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 352.015, dcr_shares: 2640, dcr_shares_pct: 42.79 179 | 2017-06-17T22:59:17Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.754, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 285.051, dcr_shares: 1099, dcr_shares_pct: 17.81 180 | 2017-06-17T22:59:17Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.912, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 181 | 2017-06-17T22:59:27Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.918, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 335.018, dcr_shares: 2430, dcr_shares_pct: 39.38 182 | 2017-06-17T22:59:27Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.342, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 352.103, dcr_shares: 2641, dcr_shares_pct: 42.8 183 | 2017-06-17T22:59:27Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.753, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 285.036, dcr_shares: 1099, dcr_shares_pct: 17.81 184 | 2017-06-17T22:59:27Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.933, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 185 | 2017-06-17T22:59:37Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.077, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 336.929, dcr_shares: 2430, dcr_shares_pct: 39.36 186 | 2017-06-17T22:59:37Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.365, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 352.383, dcr_shares: 2643, dcr_shares_pct: 42.81 187 | 2017-06-17T22:59:37Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.651, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 283.816, dcr_shares: 1100, dcr_shares_pct: 17.82 188 | 2017-06-17T22:59:37Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.916, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 189 | 2017-06-17T22:59:47Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.251, eth_shares: 563, eth_shares_pct: 26.3, dcr_speed: 327.017, dcr_shares: 2430, dcr_shares_pct: 39.36 190 | 2017-06-17T22:59:47Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.330, eth_shares: 599, eth_shares_pct: 27.98, dcr_speed: 351.954, dcr_shares: 2643, dcr_shares_pct: 42.81 191 | 2017-06-17T22:59:47Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.737, eth_shares: 408, eth_shares_pct: 19.06, dcr_speed: 284.844, dcr_shares: 1100, dcr_shares_pct: 17.82 192 | 2017-06-17T22:59:47Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.929, eth_shares: 616, eth_shares_pct: 28.77, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 193 | 2017-06-17T22:59:57Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.899, eth_shares: 563, eth_shares_pct: 26.28, dcr_speed: 334.791, dcr_shares: 2430, dcr_shares_pct: 39.35 194 | 2017-06-17T22:59:57Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.347, eth_shares: 599, eth_shares_pct: 27.96, dcr_speed: 352.164, dcr_shares: 2643, dcr_shares_pct: 42.8 195 | 2017-06-17T22:59:57Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.214, eth_shares: 408, eth_shares_pct: 19.05, dcr_speed: 278.569, dcr_shares: 1101, dcr_shares_pct: 17.83 196 | 2017-06-17T22:59:57Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.898, eth_shares: 617, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 197 | 2017-06-17T23:00:08Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.909, eth_shares: 563, eth_shares_pct: 26.28, dcr_speed: 334.911, dcr_shares: 2430, dcr_shares_pct: 39.35 198 | 2017-06-17T23:00:08Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 28.133, eth_shares: 599, eth_shares_pct: 27.96, dcr_speed: 337.600, dcr_shares: 2643, dcr_shares_pct: 42.8 199 | 2017-06-17T23:00:08Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.743, eth_shares: 408, eth_shares_pct: 19.05, dcr_speed: 284.913, dcr_shares: 1101, dcr_shares_pct: 17.83 200 | 2017-06-17T23:00:08Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.926, eth_shares: 617, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 201 | 2017-06-17T23:00:18Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.888, eth_shares: 563, eth_shares_pct: 26.28, dcr_speed: 334.661, dcr_shares: 2430, dcr_shares_pct: 39.35 202 | 2017-06-17T23:00:18Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.318, eth_shares: 599, eth_shares_pct: 27.96, dcr_speed: 351.814, dcr_shares: 2643, dcr_shares_pct: 42.8 203 | 2017-06-17T23:00:18Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.252, eth_shares: 408, eth_shares_pct: 19.05, dcr_speed: 279.027, dcr_shares: 1101, dcr_shares_pct: 17.83 204 | 2017-06-17T23:00:18Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.914, eth_shares: 617, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 205 | 2017-06-17T23:00:28Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.903, eth_shares: 563, eth_shares_pct: 26.28, dcr_speed: 334.830, dcr_shares: 2430, dcr_shares_pct: 39.35 206 | 2017-06-17T23:00:28Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.363, eth_shares: 599, eth_shares_pct: 27.96, dcr_speed: 352.361, dcr_shares: 2643, dcr_shares_pct: 42.8 207 | 2017-06-17T23:00:28Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.747, eth_shares: 408, eth_shares_pct: 19.05, dcr_speed: 284.967, dcr_shares: 1101, dcr_shares_pct: 17.83 208 | 2017-06-17T23:00:28Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.924, eth_shares: 617, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 209 | 2017-06-17T23:00:38Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.917, eth_shares: 563, eth_shares_pct: 26.28, dcr_speed: 335.008, dcr_shares: 2430, dcr_shares_pct: 39.35 210 | 2017-06-17T23:00:38Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.319, eth_shares: 599, eth_shares_pct: 27.96, dcr_speed: 351.827, dcr_shares: 2643, dcr_shares_pct: 42.8 211 | 2017-06-17T23:00:38Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.712, eth_shares: 408, eth_shares_pct: 19.05, dcr_speed: 284.543, dcr_shares: 1101, dcr_shares_pct: 17.83 212 | 2017-06-17T23:00:38Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.912, eth_shares: 617, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 213 | 2017-06-17T23:00:48Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.930, eth_shares: 563, eth_shares_pct: 26.27, dcr_speed: 335.164, dcr_shares: 2432, dcr_shares_pct: 39.35 214 | 2017-06-17T23:00:48Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.395, eth_shares: 599, eth_shares_pct: 27.95, dcr_speed: 352.743, dcr_shares: 2645, dcr_shares_pct: 42.79 215 | 2017-06-17T23:00:48Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.724, eth_shares: 408, eth_shares_pct: 19.04, dcr_speed: 284.689, dcr_shares: 1103, dcr_shares_pct: 17.85 216 | 2017-06-17T23:00:48Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.911, eth_shares: 618, eth_shares_pct: 28.84, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 217 | 2017-06-17T23:00:58Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.891, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 334.687, dcr_shares: 2435, dcr_shares_pct: 39.36 218 | 2017-06-17T23:00:58Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.379, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 352.550, dcr_shares: 2647, dcr_shares_pct: 42.79 219 | 2017-06-17T23:00:58Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.747, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 284.962, dcr_shares: 1103, dcr_shares_pct: 17.83 220 | 2017-06-17T23:00:58Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.899, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 221 | 2017-06-17T23:01:08Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.038, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 336.461, dcr_shares: 2435, dcr_shares_pct: 39.35 222 | 2017-06-17T23:01:08Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.365, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 352.383, dcr_shares: 2648, dcr_shares_pct: 42.79 223 | 2017-06-17T23:01:08Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.745, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 284.944, dcr_shares: 1104, dcr_shares_pct: 17.84 224 | 2017-06-17T23:01:08Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.834, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 225 | 2017-06-17T23:01:18Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.384, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 328.604, dcr_shares: 2435, dcr_shares_pct: 39.33 226 | 2017-06-17T23:01:18Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.313, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 351.753, dcr_shares: 2648, dcr_shares_pct: 42.77 227 | 2017-06-17T23:01:18Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.708, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 284.501, dcr_shares: 1107, dcr_shares_pct: 17.88 228 | 2017-06-17T23:01:18Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.896, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 229 | 2017-06-17T23:01:28Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.930, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 335.157, dcr_shares: 2435, dcr_shares_pct: 39.33 230 | 2017-06-17T23:01:28Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.110, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 349.318, dcr_shares: 2648, dcr_shares_pct: 42.77 231 | 2017-06-17T23:01:28Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.759, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 285.102, dcr_shares: 1107, dcr_shares_pct: 17.88 232 | 2017-06-17T23:01:28Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.904, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 233 | 2017-06-17T23:01:38Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.881, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 334.567, dcr_shares: 2435, dcr_shares_pct: 39.33 234 | 2017-06-17T23:01:38Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 28.784, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 345.406, dcr_shares: 2648, dcr_shares_pct: 42.77 235 | 2017-06-17T23:01:38Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.736, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 284.833, dcr_shares: 1107, dcr_shares_pct: 17.88 236 | 2017-06-17T23:01:38Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.899, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 237 | 2017-06-17T23:01:48Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.927, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 335.125, dcr_shares: 2436, dcr_shares_pct: 39.34 238 | 2017-06-17T23:01:48Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.342, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 352.107, dcr_shares: 2648, dcr_shares_pct: 42.76 239 | 2017-06-17T23:01:48Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.748, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 284.970, dcr_shares: 1107, dcr_shares_pct: 17.88 240 | 2017-06-17T23:01:48Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.907, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 241 | 2017-06-17T23:01:58Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.882, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 334.580, dcr_shares: 2436, dcr_shares_pct: 39.34 242 | 2017-06-17T23:01:58Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.335, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 352.015, dcr_shares: 2648, dcr_shares_pct: 42.76 243 | 2017-06-17T23:01:58Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.735, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 284.824, dcr_shares: 1107, dcr_shares_pct: 17.88 244 | 2017-06-17T23:01:58Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.896, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 245 | 2017-06-17T23:02:08Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.925, eth_shares: 563, eth_shares_pct: 26.26, dcr_speed: 335.102, dcr_shares: 2436, dcr_shares_pct: 39.34 246 | 2017-06-17T23:02:08Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.112, eth_shares: 599, eth_shares_pct: 27.94, dcr_speed: 349.344, dcr_shares: 2648, dcr_shares_pct: 42.76 247 | 2017-06-17T23:02:08Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.150, eth_shares: 409, eth_shares_pct: 19.08, dcr_speed: 277.798, dcr_shares: 1107, dcr_shares_pct: 17.88 248 | 2017-06-17T23:02:08Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.908, eth_shares: 618, eth_shares_pct: 28.82, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 249 | 2017-06-17T23:02:18Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.924, eth_shares: 563, eth_shares_pct: 26.25, dcr_speed: 335.092, dcr_shares: 2437, dcr_shares_pct: 39.35 250 | 2017-06-17T23:02:18Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.062, eth_shares: 599, eth_shares_pct: 27.93, dcr_speed: 348.746, dcr_shares: 2648, dcr_shares_pct: 42.76 251 | 2017-06-17T23:02:18Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.738, eth_shares: 409, eth_shares_pct: 19.07, dcr_speed: 284.853, dcr_shares: 1107, dcr_shares_pct: 17.88 252 | 2017-06-17T23:02:18Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.911, eth_shares: 619, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 253 | 2017-06-17T23:02:28Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 28.069, eth_shares: 563, eth_shares_pct: 26.25, dcr_speed: 336.831, dcr_shares: 2437, dcr_shares_pct: 39.35 254 | 2017-06-17T23:02:28Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.357, eth_shares: 599, eth_shares_pct: 27.93, dcr_speed: 352.278, dcr_shares: 2648, dcr_shares_pct: 42.76 255 | 2017-06-17T23:02:28Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.107, eth_shares: 409, eth_shares_pct: 19.07, dcr_speed: 277.281, dcr_shares: 1107, dcr_shares_pct: 17.88 256 | 2017-06-17T23:02:28Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.910, eth_shares: 619, eth_shares_pct: 28.86, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 257 | 2017-06-17T23:02:38Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.898, eth_shares: 563, eth_shares_pct: 26.23, dcr_speed: 334.781, dcr_shares: 2437, dcr_shares_pct: 39.34 258 | 2017-06-17T23:02:38Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.077, eth_shares: 599, eth_shares_pct: 27.91, dcr_speed: 348.922, dcr_shares: 2648, dcr_shares_pct: 42.75 259 | 2017-06-17T23:02:38Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.741, eth_shares: 410, eth_shares_pct: 19.11, dcr_speed: 284.890, dcr_shares: 1108, dcr_shares_pct: 17.89 260 | 2017-06-17T23:02:38Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.919, eth_shares: 619, eth_shares_pct: 28.84, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 261 | 2017-06-17T23:02:48Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.168, eth_shares: 563, eth_shares_pct: 26.23, dcr_speed: 326.019, dcr_shares: 2437, dcr_shares_pct: 39.34 262 | 2017-06-17T23:02:48Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.352, eth_shares: 599, eth_shares_pct: 27.91, dcr_speed: 352.225, dcr_shares: 2648, dcr_shares_pct: 42.75 263 | 2017-06-17T23:02:48Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.733, eth_shares: 410, eth_shares_pct: 19.11, dcr_speed: 284.798, dcr_shares: 1108, dcr_shares_pct: 17.89 264 | 2017-06-17T23:02:48Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.908, eth_shares: 619, eth_shares_pct: 28.84, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 265 | 2017-06-17T23:02:58Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.901, eth_shares: 563, eth_shares_pct: 26.22, dcr_speed: 334.810, dcr_shares: 2437, dcr_shares_pct: 39.34 266 | 2017-06-17T23:02:58Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.009, eth_shares: 600, eth_shares_pct: 27.95, dcr_speed: 348.107, dcr_shares: 2648, dcr_shares_pct: 42.75 267 | 2017-06-17T23:02:58Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.757, eth_shares: 410, eth_shares_pct: 19.1, dcr_speed: 285.082, dcr_shares: 1108, dcr_shares_pct: 17.89 268 | 2017-06-17T23:02:58Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.916, eth_shares: 619, eth_shares_pct: 28.83, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 269 | 2017-06-17T23:03:08Z02:00, machine: minr, id: GPU0, temp: 68, fan: 44, eth_speed: 27.919, eth_shares: 563, eth_shares_pct: 26.22, dcr_speed: 335.024, dcr_shares: 2437, dcr_shares_pct: 39.34 270 | 2017-06-17T23:03:08Z02:00, machine: minr, id: GPU1, temp: 67, fan: 40, eth_speed: 28.971, eth_shares: 600, eth_shares_pct: 27.95, dcr_speed: 347.654, dcr_shares: 2648, dcr_shares_pct: 42.75 271 | 2017-06-17T23:03:08Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.756, eth_shares: 410, eth_shares_pct: 19.1, dcr_speed: 285.071, dcr_shares: 1108, dcr_shares_pct: 17.89 272 | 2017-06-17T23:03:08Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.912, eth_shares: 619, eth_shares_pct: 28.83, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 273 | 2017-06-17T23:03:18Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.493, eth_shares: 564, eth_shares_pct: 26.24, dcr_speed: 329.920, dcr_shares: 2437, dcr_shares_pct: 39.34 274 | 2017-06-17T23:03:18Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.355, eth_shares: 601, eth_shares_pct: 27.97, dcr_speed: 352.256, dcr_shares: 2648, dcr_shares_pct: 42.75 275 | 2017-06-17T23:03:18Z02:00, machine: minr, id: GPU2, temp: 67, fan: 69, eth_speed: 23.736, eth_shares: 410, eth_shares_pct: 19.08, dcr_speed: 284.835, dcr_shares: 1108, dcr_shares_pct: 17.89 276 | 2017-06-17T23:03:18Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.904, eth_shares: 619, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 277 | 2017-06-17T23:03:28Z02:00, machine: minr, id: GPU0, temp: 67, fan: 44, eth_speed: 27.284, eth_shares: 564, eth_shares_pct: 26.24, dcr_speed: 327.404, dcr_shares: 2438, dcr_shares_pct: 39.35 278 | 2017-06-17T23:03:28Z02:00, machine: minr, id: GPU1, temp: 66, fan: 40, eth_speed: 29.322, eth_shares: 601, eth_shares_pct: 27.97, dcr_speed: 351.866, dcr_shares: 2648, dcr_shares_pct: 42.74 279 | 2017-06-17T23:03:28Z02:00, machine: minr, id: GPU2, temp: 66, fan: 69, eth_speed: 23.721, eth_shares: 410, eth_shares_pct: 19.08, dcr_speed: 284.655, dcr_shares: 1108, dcr_shares_pct: 17.89 280 | 2017-06-17T23:03:28Z02:00, machine: minr, id: GPU3, temp: 72, fan: 69, eth_speed: 28.894, eth_shares: 619, eth_shares_pct: 28.8, dcr_speed: 0, dcr_shares: 7, dcr_shares_pct: 0.11 281 | -------------------------------------------------------------------------------- /log_examples/totals.log: -------------------------------------------------------------------------------- 1 | 2017-06-17T22:51:56Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.452, eth_total_shares: 2131, eth_total_rejected: 0, eth_avg_speed_per_card: 27.36, eth_avg_shares_per_card: 532.75, dcr_total_speed: 966.406, dcr_total_shares: 6131, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.6, dcr_avg_shares_per_card: 1532.75 2 | 2017-06-17T22:52:06Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.880, eth_total_shares: 2131, eth_total_rejected: 0, eth_avg_speed_per_card: 27.47, eth_avg_shares_per_card: 532.75, dcr_total_speed: 971.401, dcr_total_shares: 6132, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.85, dcr_avg_shares_per_card: 1533 3 | 2017-06-17T22:52:16Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.921, eth_total_shares: 2131, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 532.75, dcr_total_speed: 972.110, dcr_total_shares: 6133, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.03, dcr_avg_shares_per_card: 1533.25 4 | 2017-06-17T22:52:26Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.542, eth_total_shares: 2131, eth_total_rejected: 0, eth_avg_speed_per_card: 27.39, eth_avg_shares_per_card: 532.75, dcr_total_speed: 967.584, dcr_total_shares: 6133, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.9, dcr_avg_shares_per_card: 1533.25 5 | 2017-06-17T22:52:36Z02:00, machine: minr, avg_temp: 68.75, avg_fan: 55.5, eth_total_speed: 109.934, eth_total_shares: 2131, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 532.75, dcr_total_speed: 972.282, dcr_total_shares: 6133, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.07, dcr_avg_shares_per_card: 1533.25 6 | 2017-06-17T22:52:46Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.411, eth_total_shares: 2132, eth_total_rejected: 0, eth_avg_speed_per_card: 27.35, eth_avg_shares_per_card: 533, dcr_total_speed: 966.028, dcr_total_shares: 6134, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.51, dcr_avg_shares_per_card: 1533.5 7 | 2017-06-17T22:52:56Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.423, eth_total_shares: 2132, eth_total_rejected: 0, eth_avg_speed_per_card: 27.36, eth_avg_shares_per_card: 533, dcr_total_speed: 966.194, dcr_total_shares: 6135, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.55, dcr_avg_shares_per_card: 1533.75 8 | 2017-06-17T22:53:06Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.461, eth_total_shares: 2133, eth_total_rejected: 0, eth_avg_speed_per_card: 27.37, eth_avg_shares_per_card: 533.25, dcr_total_speed: 966.749, dcr_total_shares: 6136, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.69, dcr_avg_shares_per_card: 1534 9 | 2017-06-17T22:53:17Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.925, eth_total_shares: 2134, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 533.5, dcr_total_speed: 972.139, dcr_total_shares: 6136, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.03, dcr_avg_shares_per_card: 1534 10 | 2017-06-17T22:53:27Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.892, eth_total_shares: 2134, eth_total_rejected: 0, eth_avg_speed_per_card: 27.47, eth_avg_shares_per_card: 533.5, dcr_total_speed: 971.695, dcr_total_shares: 6137, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.92, dcr_avg_shares_per_card: 1534.25 11 | 2017-06-17T22:53:37Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.831, eth_total_shares: 2135, eth_total_rejected: 0, eth_avg_speed_per_card: 27.46, eth_avg_shares_per_card: 533.75, dcr_total_speed: 971.080, dcr_total_shares: 6137, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.77, dcr_avg_shares_per_card: 1534.25 12 | 2017-06-17T22:53:47Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.837, eth_total_shares: 2135, eth_total_rejected: 0, eth_avg_speed_per_card: 27.46, eth_avg_shares_per_card: 533.75, dcr_total_speed: 971.075, dcr_total_shares: 6140, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.77, dcr_avg_shares_per_card: 1535 13 | 2017-06-17T22:53:57Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.905, eth_total_shares: 2135, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 533.75, dcr_total_speed: 971.832, dcr_total_shares: 6141, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.96, dcr_avg_shares_per_card: 1535.25 14 | 2017-06-17T22:54:07Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.913, eth_total_shares: 2135, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 533.75, dcr_total_speed: 971.968, dcr_total_shares: 6142, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.99, dcr_avg_shares_per_card: 1535.5 15 | 2017-06-17T22:54:17Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.649, eth_total_shares: 2135, eth_total_rejected: 0, eth_avg_speed_per_card: 27.41, eth_avg_shares_per_card: 533.75, dcr_total_speed: 968.934, dcr_total_shares: 6144, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.23, dcr_avg_shares_per_card: 1536 16 | 2017-06-17T22:54:27Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.628, eth_total_shares: 2136, eth_total_rejected: 0, eth_avg_speed_per_card: 27.41, eth_avg_shares_per_card: 534, dcr_total_speed: 968.580, dcr_total_shares: 6146, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.15, dcr_avg_shares_per_card: 1536.5 17 | 2017-06-17T22:54:37Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.885, eth_total_shares: 2136, eth_total_rejected: 0, eth_avg_speed_per_card: 27.47, eth_avg_shares_per_card: 534, dcr_total_speed: 971.693, dcr_total_shares: 6146, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.92, dcr_avg_shares_per_card: 1536.5 18 | 2017-06-17T22:54:47Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.527, eth_total_shares: 2136, eth_total_rejected: 0, eth_avg_speed_per_card: 27.38, eth_avg_shares_per_card: 534, dcr_total_speed: 967.439, dcr_total_shares: 6147, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.86, dcr_avg_shares_per_card: 1536.75 19 | 2017-06-17T22:54:57Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 98.478, eth_total_shares: 2137, eth_total_rejected: 0, eth_avg_speed_per_card: 24.62, eth_avg_shares_per_card: 534.25, dcr_total_speed: 890.828, dcr_total_shares: 6147, dcr_total_rejected: 88, dcr_avg_speed_per_card: 222.71, dcr_avg_shares_per_card: 1536.75 20 | 2017-06-17T22:55:07Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 110.083, eth_total_shares: 2137, eth_total_rejected: 0, eth_avg_speed_per_card: 27.52, eth_avg_shares_per_card: 534.25, dcr_total_speed: 974.014, dcr_total_shares: 6148, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.5, dcr_avg_shares_per_card: 1537 21 | 2017-06-17T22:55:17Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.954, eth_total_shares: 2137, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 534.25, dcr_total_speed: 972.522, dcr_total_shares: 6149, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.13, dcr_avg_shares_per_card: 1537.25 22 | 2017-06-17T22:55:27Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 110.091, eth_total_shares: 2137, eth_total_rejected: 0, eth_avg_speed_per_card: 27.52, eth_avg_shares_per_card: 534.25, dcr_total_speed: 974.242, dcr_total_shares: 6149, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.56, dcr_avg_shares_per_card: 1537.25 23 | 2017-06-17T22:55:37Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.446, eth_total_shares: 2137, eth_total_rejected: 0, eth_avg_speed_per_card: 27.36, eth_avg_shares_per_card: 534.25, dcr_total_speed: 966.337, dcr_total_shares: 6149, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.58, dcr_avg_shares_per_card: 1537.25 24 | 2017-06-17T22:55:47Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.961, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 534.5, dcr_total_speed: 972.660, dcr_total_shares: 6152, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.17, dcr_avg_shares_per_card: 1538 25 | 2017-06-17T22:55:57Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.604, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.4, eth_avg_shares_per_card: 534.5, dcr_total_speed: 968.371, dcr_total_shares: 6154, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.09, dcr_avg_shares_per_card: 1538.5 26 | 2017-06-17T22:56:07Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.888, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.47, eth_avg_shares_per_card: 534.5, dcr_total_speed: 971.758, dcr_total_shares: 6154, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.94, dcr_avg_shares_per_card: 1538.5 27 | 2017-06-17T22:56:17Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 110.096, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.52, eth_avg_shares_per_card: 534.5, dcr_total_speed: 974.136, dcr_total_shares: 6155, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.53, dcr_avg_shares_per_card: 1538.75 28 | 2017-06-17T22:56:27Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.954, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 534.5, dcr_total_speed: 972.426, dcr_total_shares: 6156, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.11, dcr_avg_shares_per_card: 1539 29 | 2017-06-17T22:56:37Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.985, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.5, eth_avg_shares_per_card: 534.5, dcr_total_speed: 972.840, dcr_total_shares: 6156, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.21, dcr_avg_shares_per_card: 1539 30 | 2017-06-17T22:56:47Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.919, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 534.5, dcr_total_speed: 972.155, dcr_total_shares: 6157, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.04, dcr_avg_shares_per_card: 1539.25 31 | 2017-06-17T22:56:57Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.955, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 534.5, dcr_total_speed: 972.463, dcr_total_shares: 6159, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.12, dcr_avg_shares_per_card: 1539.75 32 | 2017-06-17T22:57:07Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.628, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.41, eth_avg_shares_per_card: 534.5, dcr_total_speed: 968.588, dcr_total_shares: 6159, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.15, dcr_avg_shares_per_card: 1539.75 33 | 2017-06-17T22:57:17Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.926, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 534.5, dcr_total_speed: 971.982, dcr_total_shares: 6159, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243, dcr_avg_shares_per_card: 1539.75 34 | 2017-06-17T22:57:27Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 105.500, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 26.38, eth_avg_shares_per_card: 534.5, dcr_total_speed: 919.107, dcr_total_shares: 6159, dcr_total_rejected: 88, dcr_avg_speed_per_card: 229.78, dcr_avg_shares_per_card: 1539.75 35 | 2017-06-17T22:57:37Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.415, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.35, eth_avg_shares_per_card: 534.5, dcr_total_speed: 966.090, dcr_total_shares: 6160, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.52, dcr_avg_shares_per_card: 1540 36 | 2017-06-17T22:57:47Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.580, eth_total_shares: 2138, eth_total_rejected: 0, eth_avg_speed_per_card: 27.4, eth_avg_shares_per_card: 534.5, dcr_total_speed: 967.875, dcr_total_shares: 6160, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.97, dcr_avg_shares_per_card: 1540 37 | 2017-06-17T22:57:57Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.953, eth_total_shares: 2139, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 534.75, dcr_total_speed: 972.481, dcr_total_shares: 6160, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.12, dcr_avg_shares_per_card: 1540 38 | 2017-06-17T22:58:07Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 110.082, eth_total_shares: 2140, eth_total_rejected: 0, eth_avg_speed_per_card: 27.52, eth_avg_shares_per_card: 535, dcr_total_speed: 973.866, dcr_total_shares: 6160, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.47, dcr_avg_shares_per_card: 1540 39 | 2017-06-17T22:58:17Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 99.486, eth_total_shares: 2140, eth_total_rejected: 0, eth_avg_speed_per_card: 24.87, eth_avg_shares_per_card: 535, dcr_total_speed: 846.608, dcr_total_shares: 6161, dcr_total_rejected: 88, dcr_avg_speed_per_card: 211.65, dcr_avg_shares_per_card: 1540.25 40 | 2017-06-17T22:58:27Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.914, eth_total_shares: 2140, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 535, dcr_total_speed: 971.987, dcr_total_shares: 6161, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243, dcr_avg_shares_per_card: 1540.25 41 | 2017-06-17T22:58:37Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 110.045, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.51, eth_avg_shares_per_card: 535.25, dcr_total_speed: 973.572, dcr_total_shares: 6161, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.39, dcr_avg_shares_per_card: 1540.25 42 | 2017-06-17T22:58:47Z02:00, machine: minr, avg_temp: 67.75, avg_fan: 55.5, eth_total_speed: 110.112, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.53, eth_avg_shares_per_card: 535.25, dcr_total_speed: 974.424, dcr_total_shares: 6163, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.61, dcr_avg_shares_per_card: 1540.75 43 | 2017-06-17T22:58:57Z02:00, machine: minr, avg_temp: 67.75, avg_fan: 55.5, eth_total_speed: 109.993, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.5, eth_avg_shares_per_card: 535.25, dcr_total_speed: 972.988, dcr_total_shares: 6165, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.25, dcr_avg_shares_per_card: 1541.25 44 | 2017-06-17T22:59:07Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.961, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 535.25, dcr_total_speed: 972.419, dcr_total_shares: 6166, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.1, dcr_avg_shares_per_card: 1541.5 45 | 2017-06-17T22:59:17Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 110.099, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.52, eth_avg_shares_per_card: 535.25, dcr_total_speed: 974.238, dcr_total_shares: 6169, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.56, dcr_avg_shares_per_card: 1542.25 46 | 2017-06-17T22:59:27Z02:00, machine: minr, avg_temp: 67.75, avg_fan: 55.5, eth_total_speed: 109.946, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 535.25, dcr_total_speed: 972.157, dcr_total_shares: 6171, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.04, dcr_avg_shares_per_card: 1542.75 47 | 2017-06-17T22:59:37Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 110.010, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.5, eth_avg_shares_per_card: 535.25, dcr_total_speed: 973.128, dcr_total_shares: 6174, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.28, dcr_avg_shares_per_card: 1543.5 48 | 2017-06-17T22:59:47Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.247, eth_total_shares: 2141, eth_total_rejected: 0, eth_avg_speed_per_card: 27.31, eth_avg_shares_per_card: 535.25, dcr_total_speed: 963.815, dcr_total_shares: 6174, dcr_total_rejected: 88, dcr_avg_speed_per_card: 240.95, dcr_avg_shares_per_card: 1543.5 49 | 2017-06-17T22:59:57Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.358, eth_total_shares: 2142, eth_total_rejected: 0, eth_avg_speed_per_card: 27.34, eth_avg_shares_per_card: 535.5, dcr_total_speed: 965.524, dcr_total_shares: 6175, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.38, dcr_avg_shares_per_card: 1543.75 50 | 2017-06-17T23:00:08Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 108.712, eth_total_shares: 2142, eth_total_rejected: 0, eth_avg_speed_per_card: 27.18, eth_avg_shares_per_card: 535.5, dcr_total_speed: 957.424, dcr_total_shares: 6175, dcr_total_rejected: 88, dcr_avg_speed_per_card: 239.36, dcr_avg_shares_per_card: 1543.75 51 | 2017-06-17T23:00:18Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.373, eth_total_shares: 2142, eth_total_rejected: 0, eth_avg_speed_per_card: 27.34, eth_avg_shares_per_card: 535.5, dcr_total_speed: 965.502, dcr_total_shares: 6175, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.38, dcr_avg_shares_per_card: 1543.75 52 | 2017-06-17T23:00:28Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.938, eth_total_shares: 2142, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 535.5, dcr_total_speed: 972.158, dcr_total_shares: 6175, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.04, dcr_avg_shares_per_card: 1543.75 53 | 2017-06-17T23:00:38Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.861, eth_total_shares: 2142, eth_total_rejected: 0, eth_avg_speed_per_card: 27.47, eth_avg_shares_per_card: 535.5, dcr_total_speed: 971.378, dcr_total_shares: 6175, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.84, dcr_avg_shares_per_card: 1543.75 54 | 2017-06-17T23:00:48Z02:00, machine: minr, avg_temp: 67.75, avg_fan: 55.5, eth_total_speed: 109.961, eth_total_shares: 2143, eth_total_rejected: 0, eth_avg_speed_per_card: 27.49, eth_avg_shares_per_card: 535.75, dcr_total_speed: 972.596, dcr_total_shares: 6181, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.15, dcr_avg_shares_per_card: 1545.25 55 | 2017-06-17T23:00:58Z02:00, machine: minr, avg_temp: 67.75, avg_fan: 55.5, eth_total_speed: 109.915, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 536, dcr_total_speed: 972.199, dcr_total_shares: 6186, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.05, dcr_avg_shares_per_card: 1546.5 56 | 2017-06-17T23:01:08Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.984, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.5, eth_avg_shares_per_card: 536, dcr_total_speed: 973.788, dcr_total_shares: 6188, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.45, dcr_avg_shares_per_card: 1547 57 | 2017-06-17T23:01:18Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.301, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.33, eth_avg_shares_per_card: 536, dcr_total_speed: 964.858, dcr_total_shares: 6191, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.21, dcr_avg_shares_per_card: 1547.75 58 | 2017-06-17T23:01:28Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.702, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.43, eth_avg_shares_per_card: 536, dcr_total_speed: 969.577, dcr_total_shares: 6191, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.39, dcr_avg_shares_per_card: 1547.75 59 | 2017-06-17T23:01:38Z02:00, machine: minr, avg_temp: 68.5, avg_fan: 55.5, eth_total_speed: 109.300, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.33, eth_avg_shares_per_card: 536, dcr_total_speed: 964.806, dcr_total_shares: 6191, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.2, dcr_avg_shares_per_card: 1547.75 60 | 2017-06-17T23:01:48Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.924, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.48, eth_avg_shares_per_card: 536, dcr_total_speed: 972.202, dcr_total_shares: 6192, dcr_total_rejected: 88, dcr_avg_speed_per_card: 243.05, dcr_avg_shares_per_card: 1548 61 | 2017-06-17T23:01:58Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.848, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.46, eth_avg_shares_per_card: 536, dcr_total_speed: 971.419, dcr_total_shares: 6192, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.85, dcr_avg_shares_per_card: 1548 62 | 2017-06-17T23:02:08Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.095, eth_total_shares: 2144, eth_total_rejected: 0, eth_avg_speed_per_card: 27.27, eth_avg_shares_per_card: 536, dcr_total_speed: 962.244, dcr_total_shares: 6192, dcr_total_rejected: 88, dcr_avg_speed_per_card: 240.56, dcr_avg_shares_per_card: 1548 63 | 2017-06-17T23:02:18Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.636, eth_total_shares: 2145, eth_total_rejected: 0, eth_avg_speed_per_card: 27.41, eth_avg_shares_per_card: 536.25, dcr_total_speed: 968.691, dcr_total_shares: 6193, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.17, dcr_avg_shares_per_card: 1548.25 64 | 2017-06-17T23:02:28Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.443, eth_total_shares: 2145, eth_total_rejected: 0, eth_avg_speed_per_card: 27.36, eth_avg_shares_per_card: 536.25, dcr_total_speed: 966.390, dcr_total_shares: 6193, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.6, dcr_avg_shares_per_card: 1548.25 65 | 2017-06-17T23:02:38Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.635, eth_total_shares: 2146, eth_total_rejected: 0, eth_avg_speed_per_card: 27.41, eth_avg_shares_per_card: 536.5, dcr_total_speed: 968.593, dcr_total_shares: 6194, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242.15, dcr_avg_shares_per_card: 1548.5 66 | 2017-06-17T23:02:48Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.161, eth_total_shares: 2146, eth_total_rejected: 0, eth_avg_speed_per_card: 27.29, eth_avg_shares_per_card: 536.5, dcr_total_speed: 963.042, dcr_total_shares: 6194, dcr_total_rejected: 88, dcr_avg_speed_per_card: 240.76, dcr_avg_shares_per_card: 1548.5 67 | 2017-06-17T23:02:58Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.582, eth_total_shares: 2147, eth_total_rejected: 0, eth_avg_speed_per_card: 27.4, eth_avg_shares_per_card: 536.75, dcr_total_speed: 967.999, dcr_total_shares: 6194, dcr_total_rejected: 88, dcr_avg_speed_per_card: 242, dcr_avg_shares_per_card: 1548.5 68 | 2017-06-17T23:03:08Z02:00, machine: minr, avg_temp: 68.25, avg_fan: 55.5, eth_total_speed: 109.558, eth_total_shares: 2147, eth_total_rejected: 0, eth_avg_speed_per_card: 27.39, eth_avg_shares_per_card: 536.75, dcr_total_speed: 967.749, dcr_total_shares: 6194, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.94, dcr_avg_shares_per_card: 1548.5 69 | 2017-06-17T23:03:18Z02:00, machine: minr, avg_temp: 68, avg_fan: 55.5, eth_total_speed: 109.488, eth_total_shares: 2149, eth_total_rejected: 0, eth_avg_speed_per_card: 27.37, eth_avg_shares_per_card: 537.25, dcr_total_speed: 967.011, dcr_total_shares: 6194, dcr_total_rejected: 88, dcr_avg_speed_per_card: 241.75, dcr_avg_shares_per_card: 1548.5 70 | 2017-06-17T23:03:28Z02:00, machine: minr, avg_temp: 67.75, avg_fan: 55.5, eth_total_speed: 109.221, eth_total_shares: 2149, eth_total_rejected: 0, eth_avg_speed_per_card: 27.31, eth_avg_shares_per_card: 537.25, dcr_total_speed: 963.925, dcr_total_shares: 6195, dcr_total_rejected: 88, dcr_avg_speed_per_card: 240.98, dcr_avg_shares_per_card: 1548.75 71 | --------------------------------------------------------------------------------