Sunday, February 6, 2022
Killing a process every day at certain time?
Gotta Schedule it with crontab -e (I use joe a wordstar equivalent)
alias cron='crontab -e'
=====================================================
root@ms2:/home/timc/bin# select-editor Select an editor. To change later, run 'select-editor'. 1. /usr/bin/joe 2. /usr/bin/jstar 3. /usr/bin/jpico 4. /usr/bin/jmacs 5. /bin/nano <---- easiest 6. /usr/bin/vim.basic 7. /usr/bin/rjoe 8. /usr/bin/vim.tiny 9. /bin/ed
=====================================================
4 0 * * * /home/timc/bin/kill.exp.sh &> /var/log/kill.log
===========================================================
#!/bin/bash #ps -elf | grep chia | grep exp > t TOUCH=/usr/bin/touch ECHO=/usr/bin/echo CHMOD=/usr/bin/chmod RM=/usr/bin/rm PS=/usr/bin/ps CAT=/usr/bin/cat GREP=/usr/bin/grep AWK=/usr/bin/awk DIR="/home/timc/bin" TMPFILE="temp.kill.file" KILLFILE="kill.up.exp.sh" $RM $DIR/$TMPFILE $RM $DIR/$KILLFILE $TOUCH $DIR/$TMPFILE $TOUCH $DIR/$KILLFILE $PS -elf | $GREP chia | $GREP exp | $AWK '{print $4}' >> $TMPFILE $ECHO "Start kill file to exec (kill.up.exp.sh)" $CAT $DIR/$TMPFILE | while read line do $ECHO kill -9 $line >> $DIR/$KILLFILE done $CHMOD 755 $DIR/$KILLFILE $DIR/$KILLFILE
Monday, August 30, 2021
An Interesting AWK Script I wrote last night
Of course it’s for working with Chia!!! :)
HVAR=”Count by time taken” HEADER $GREP -i qualities $LONGPLOTS | $AWK {’print $11′} | $AWK -F. {’print $1′} | $SORT -n | $UNIQ -c | $AWK -v PER=”%” -v LONGP=”$LONGP” -v LOGELIT=”$LOGELIT” ‘{ printf(”%1g Sec - %1g CNT - %1.2g %0s Longplots %.2g %0s Totaln”, $2, $1, ($1 / LONGP * 100), PER, ($1 / LOGELIT * 100), PER) }’
RESULTS
Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Count by time taken —————————————————————- 5 Sec - 750 CNT - 33 % Longplots 1.1 % Total 6 Sec - 523 CNT - 23 % Longplots 0.76 % Total 7 Sec - 135 CNT - 5.9 % Longplots 0.2 % Total 8 Sec - 93 CNT - 4.1 % Longplots 0.14 % Total 9 Sec - 42 CNT - 1.8 % Longplots 0.061 % Total 10 Sec - 46 CNT - 2 % Longplots 0.067 % Total 11 Sec - 138 CNT - 6.1 % Longplots 0.2 % Total
The awk script is basically parsing a temp file I created out of the log files
LONGPLOTS =/tmp/longplots.tmp
root@ms2:~/bin# grep qualities /tmp/longplots.tmp | tail -10 2021-08-23T07:02:09.920 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/h/plots/plot-k32-2021-06-01-02-23-8bbea0477b514310c244984ceef47b0f41e79e0dd3cf6b716fb1017d731ecf55.plot took: 21.72266125679016. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:02:09.920 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-04-30-15-27-045de6d0fe1f16b3c478ac43575bd37c4d4a3b669aa00da6b8939b36935edf73.plot took: 21.722743272781372. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:02:10.097 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/a/plots/plot-k32-2021-07-04-22-22-fa73ce855e1db23a577eb4be390581e324b4a64174ae4a692d5ce98b1cc96a5b.plot took: 12.023487567901611. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:02:10.097 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/g/plots/plot-k32-2021-06-28-21-58-7f57303d0b82aefe6245b09517f6a9de8e92179c358c4596e0585882ed36997a.plot took: 12.023878574371338. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:03:31.133 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-07-30-06-16-1ea66b80292c284646673762cfcb12a947835144163f311714d1dd9c8e7f97b2.plot took: 10.404966831207275. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:05:13.834 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-07-27-22-53-c8272e00e88c8335f66e938c8341da0d945cb616dcbb5d676fd85e071589bf51.plot took: 8.03150486946106. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:24:26.028 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-07-24-18-17-f3a865a801ca78540713d9262e581a5a8345ebf6a107fc35844fa9c9996ff13c.plot took: 5.538493394851685. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:37:34.878 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-07-30-06-16-1ea66b80292c284646673762cfcb12a947835144163f311714d1dd9c8e7f97b2.plot took: 5.647717714309692. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T07:57:19.040 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-08-02-22-02-933a77c8d839b0870b4c4611ec4d63158c4a46cb6c95eb4d120d61ec212ed110.plot took: 5.058545112609863. This should be below 5 seconds to minimize risk of losing rewards. 2021-08-23T08:24:42.001 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-08-04-11-08-6b21e8bb8ef0238ec8e6d0b04e22dc0f9b91fe80c21444406cedb1c8f70ad69f.plot took: 6.0560503005981445. This should be below 5 seconds to minimize risk of losing rewards.
Grabbing the 11th field with the first awk pass (The # of seconds for the plot confirmation)
(Grabbgint the Most significant digits of the 11th field. Which is # Seconds without decimal point) with the second awk.
Sorting that by the number of seconds taken.
uniq that list with counts for number of each second. (So I have a count of each # of seconds)
and then the final awk which is the interesting piece….
$AWK -v PER=”%” -v LONGP=”$LONGP” -v LOGELIT=”$LOGELIT” ‘{ printf(”%1g Sec - %1g CNT - %1.2g %0s Longplots %.2g %0s Totaln”, $2, $1, ($1 / LONGP * 100), PER, ($1 / LOGELIT * 100), PER) }’
In order for awk to use variables. I have to pass them to awk
LONGP is the Total number of plots that took over 5 seconds
LOGELIT is the Total number of plots.
PER is a percent sign. printf uses % as a secial character and I want to use it in my output….
Then I do a printf of the output I’d like to see followed by the list of variables.
printf statement
printf(”%1g Sec - %1g CNT - %1.2g %0s Longplots %.2g %0s Totaln”,
VARIABLE LIST
$2, $1, ($1 / LONGP * 100), PER, ($1 / LOGELIT * 100), PER)
Where $1 is the count of seconds
Where $2 is the Seconds
Where PER is a percent sign “%”
Where ($1 / LONGP * 100) is the percent of that second divided by # long plots
Where ($1 / LOGELIT *100) is the percent of that second dived by Total # plots
Simple really…. ;)
—————————————————————- – Chia Debug Plots taking too long all log files —————————————————————- LONGPLOTS = 2278 TOTAL Plots = 68662 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Count by time taken —————————————————————- 5 Sec - 750 CNT - 33 % Longplots 1.1 % Total 6 Sec - 523 CNT - 23 % Longplots 0.76 % Total 7 Sec - 135 CNT - 5.9 % Longplots 0.2 % Total 8 Sec - 93 CNT - 4.1 % Longplots 0.14 % Total 9 Sec - 42 CNT - 1.8 % Longplots 0.061 % Total 10 Sec - 46 CNT - 2 % Longplots 0.067 % Total
Full code / results below
root@ms2:~/bin# cat chia.status.sh #!/bin/bash # # Start Chia Environment # source /root/chia-blockchain/activate # # Progs I USe # ECHO=”/usr/bin/echo -e” # -e interupt escaped chars CAT=/usr/bin/cat CHIA=/root/chia-blockchain/venv/bin/chia WC=/usr/bin/wc LS=/usr/bin/ls TAIL=/usr/bin/tail HEAD=/usr/bin/head SORT=/usr/bin/sort TAIL=/usr/bin/tail DATE=`/usr/bin/date` DU=/usr/bin/du DF=/usr/bin/df PS=/usr/bin/ps DMESG=/usr/bin/dmesg AWK=/usr/bin/awk UNIQ=/usr/bin/uniq PLOTTIME=/root/bin/plottime STRING=Total GREP=/usr/bin/grep PS=/usr/bin/ps # # Variables # HOWMANY=10 # How many ports of phase information to report on each drive DRIVES=25 # How many drives to report free space on LOGL=10 # How much of each log file to see LOGH=100 # How many from the Header for Long lookup times PLOTDRIVES=”n1a n1b n2a n2b n4a n4b sc1a sc1b sc1c sc1d sc1e zero zero2 a b c d e f g h i j k” LOCALDRIVES=”a b c d e f” LOGFILES=”1 2 3 4 5 6 7 8 9 10” HEADER () { $ECHO “” $ECHO $DATE $ECHO “—————————————————————-” $ECHO “– “$HVAR $ECHO “—————————————————————-” $ECHO “” } DIVIDER () { $ECHO “” $ECHO “
” $ECHO “
” $ECHO “” } # # TEMP Files / log files # LOGFILE=/root/.chia/mainnet/log/debug.log LOGDIR=/root/.chia/mainnet/log LONGPLOTS=/tmp/longplots.tmp CHIACONS=/tmp/chiacons.tmp # $ECHO “” ####################################################### HVAR=”Chia Wallet Show” HEADER $CHIA wallet show | $GREP -v fingerprint | $GREP -v height ####################################################### HVAR=”Chia farm summary” HEADER $CHIA farm summary ######################################################### HVAR=”Chia Show Network Connections” HEADER $CHIA show -c > $CHIACONS $ECHO “FULL_NODE Connextions” $GREP FULL $CHIACONS | $WC -l $ECHO “” $ECHO “WALLET Connextions” $GREP WALLET $CHIACONS | $WC -l DIVIDER ####################################################### HVAR=”Drive Temp” HEADER $TAIL -11 /var/log/drivetemp.log | $SORT ######################################################## HVAR=”Plot Details” HEADER for CNT in $PLOTDRIVES do $DU -h /nas/$CNT/plots if [ $CNT == “n1b” ]; then $ECHO “”; fi if [ $CNT == “n2b” ]; then $ECHO “”; fi if [ $CNT == “n3e” ]; then $ECHO “”; fi if [ $CNT == “n4b” ]; then $ECHO “”; fi if [ $CNT == “sc1e” ]; then $ECHO “”; fi if [ $CNT == “zero2” ]; then $ECHO “”; fi done ######################################################## HVAR=”Drive Free” HEADER $TAIL -$DRIVES /var/log/drivefree.log | $SORT $ECHO “” $DF /dev/sdc2 | $GREP dev ######################################################### HVAR=”Memory Information” HEADER $CAT /proc/meminfo | $HEAD -n $HOWMANY ######################################################### HVAR=”DMESG | Tail - $HOWMANY” HEADER $DMESG | $TAIL -n $HOWMANY ######################################################### HVAR=”PSCPU10 | HEAD - 10” HEADER $PS -auxf | $SORT -nr -k 3 | $HEAD -n 10 ######################################################### HVAR=”Chia show PLOTing Processeses” HEADER $PS -elf | $GREP blockchain | $GREP -v grep DIVIDER ######################################################### HVAR=”Log Eligible & How Long” HEADER LOGELIT=`$GREP plots were $LOGFILE | $WC -l ` LONGPLOT=`$GREP losing $LOGFILE | $GREP qualities > $LONGPLOTS | $WC -l $LONGPLOTS| $AWK ‘{print $1}’ ` $LS -ltr $LOGDIR | $SORT +8 echo “——————————————————————-” $ECHO “debug 0: ” $LOGELIT for CNT in $LOGFILES do LOGELI=`$GREP plots were $LOGFILE.$CNT | $WC -l` LONGPLOT=`$GREP losing $LOGFILE.$CNT >> $LONGPLOTS | $WC -l $LONGPLOTS | $AWK ‘{print $1}’` $ECHO “debug $CNT: “$LOGELI LOGELIT=$(($LOGELIT + $LOGELI)) LONGPLOTT=$(($LONGPLOTT + $LONGPLOT)) done ######################################################## HVAR=”PLOT TIMES” HEADER $PLOTTIME ######################################################## HVAR=” PLOTs PER DAY” HEADER $CAT /var/log/plots.per.day ######################################################## HVAR=”Plot Total Times [a-h]” HEADER $GREP “Total time” /var/log/plot* $ECHO “” $ECHO “
” ######################################################## HVAR=”Plot Process per drive” HEADER for CNT in $LOCALDRIVES do $ECHO $DATE “Drive “$CNT”: Last:”$HOWMANY $ECHO “——————————————————————” $GREP phase /var/log/plot$CNT.log | $TAIL -$HOWMANY $ECHO “” $ECHO “” done DIVIDER ######################################################## HVAR=” CHIA Debug Log Warning / Error (LAST $LOGL)” HEADER $ECHO `$LS -l $LOGFILE` $ECHO “——————————————————————” $ECHO “FOUND Proofs :”; $GREP Found 1 proof $LOGFILE $ECHO “” $GREP ERROR $LOGFILE |$GREP -v peername | $GREP -v Failed to fetch | $GREP -vi closing connection |$GREP -v Traceback |$TAIL -40 $ECHO “” for CNT in $LOGFILES do HVAR=”CHIA Debug Log ( $CNT ) Warning / Error LAST $LOGL ” HEADER $ECHO `$LS -l $LOGFILE.$CNT` $ECHO “——————————————————————” $ECHO “FOUND Proofs :”; $GREP Found 1 proof $LOGFILE.$CNT $ECHO “” $GREP ERROR $LOGFILE.$CNT | $GREP -v peername | $GREP -v Failed to fetch | $GREP -vi closing connection | $GREP -v Traceback |$TAIL -$LOGL $ECHO “” done ######################################################## HVAR=”Total LOG Eligible Last $CNT log files = $LOGELIT” HEADER ####################################################### HVAR=”Chia Debug Plots taking too long all log files” HEADER LONGP=`$GREP qualities $LONGPLOTS | $WC -l` $ECHO LONGPLOTS = $LONGP $ECHO TOTAL Plots = $LOGELIT HVAR=”Count by time taken” HEADER $GREP -i qualities $LONGPLOTS | $AWK {’print $11′} | $AWK -F. {’print $1′} | $SORT -n | $UNIQ -c | $AWK -v PER=”%” -v LONGP=”$LONGP” -v LOGELIT=”$LOGELIT” ‘{ printf(”%1g Sec - %1g CNT - %1.2g %0s Longplots %.2g %0s Totaln”, $2, $1, ($1 / LONGP * 100), PER, ($1 / LOGELIT * 100), PER) }’ $ECHO “”
Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Chia Wallet Show —————————————————————- Sync status: Synced Wallet ID 1 type STANDARD_WALLET Chia Wallet -Total Balance: 0.0 xch (0 mojo) -Pending Total Balance: 0.0 xch (0 mojo) -Spendable: 0.0 xch (0 mojo) Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Chia farm summary —————————————————————- Farming status: Farming Total chia farmed: 0.0 User transaction fees: 0.0 Block rewards: 0.0 Last height farmed: 0 Local Harvester 1310 plots of size: 129.671 TiB Plot count for all harvesters: 1310 Total size of plots: 129.671 TiB Estimated network space: 35.727 EiB Expected time to win: 2 months Note: log into your key using ‘chia wallet show’ to see rewards for each key Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Chia Show Network Connections —————————————————————- FULL_NODE Connextions 58 WALLET Connextions 2 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Drive Temp —————————————————————- 08.30.21.04.40:/dev/sda:33 08.30.21.04.40:/dev/sdb:34 08.30.21.04.40:/dev/sdc:33 08.30.21.04.40:/dev/sdd:34 08.30.21.04.40:/dev/sde:34 08.30.21.04.40:/dev/sdf:31 08.30.21.04.40:/dev/sdg:39 08.30.21.04.40:/dev/sdh:41 08.30.21.04.40:/dev/sdi:41 08.30.21.04.40:/dev/sdj:40 08.30.21.04.40:/dev/sdk:43 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Plot Details —————————————————————- 11T /nas/n1a/plots 9.9T /nas/n1b/plots 1.8T /nas/n2a/plots 1.9T /nas/n2b/plots 12T /nas/n4a/plots 12T /nas/n4b/plots 1.3T /nas/sc1a/plots 3.6T /nas/sc1b/plots 3.6T /nas/sc1c/plots 3.6T /nas/sc1d/plots 3.6T /nas/sc1e/plots 609G /nas/zero/plots 811G /nas/zero2/plots 7.2T /nas/a/plots 7.0T /nas/b/plots 406G /nas/c/plots 3.3T /nas/d/plots 3.3T /nas/e/plots 913G /nas/f/plots 11T /nas/g/plots 11T /nas/h/plots 11T /nas/i/plots 3.6T /nas/j/plots 3.6T /nas/k/plots Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Drive Free —————————————————————- //cp1/zero 1913454044 1754140992 159313052 92% /home/zero //cp1/zero2 1441098196 1316590244 124507952 92% /home/zero2 /dev/sda1 7751366404 7652595324 98754696 99% /nas/a /dev/sdb1 7751366404 7613526628 137823392 99% /nas/b /dev/sdd1 3844659208 3677526672 167116152 96% /nas/d /dev/sde1 3844661068 3683797692 160846992 96% /nas/e /dev/sdf1 960385056 956600380 3768292 100% /nas/f /dev/sdg1 11625432492 11585587080 39829028 100% /nas/g /dev/sdh1 11625432492 11597845396 27570712 100% /nas/h /dev/sdi1 11625432492 11603558940 21857168 100% /nas/i /dev/sdj1 3844629500 3826289616 18323500 100% /nas/j /dev/sdk1 3844640564 3825653056 18971124 100% /nas/k //n1/n1a 31130140152 24618514728 6511625424 80% /nas/n1a //n1/n1b 31130140152 24304991880 6825148272 79% /nas/n1b //n2/n2a 7752457832 7262403900 490053932 94% /nas/n2a //n2/n2b 7752326760 7387896148 364430612 96% /nas/n2b //n3/n3a 3844660232 3826219484 18440748 100% /nas/n3a //n3/n3b 960380628 744113508 216267120 78% /nas/n3b //n4/n4a 58359505136 51391752944 6967752192 89% /nas/n4a //n4/n4b 58359505136 50772609888 7586895248 87% /nas/n4b //sc1/sc1a 3834087900 2905899404 928188496 76% /nas/sc1a //sc1/sc1b 3845578572 3826587384 18991188 100% /nas/sc1b //sc1/sc1c 3845578572 3826368252 19210320 100% /nas/sc1c //sc1/sc1d 3845578572 3826454204 19124368 100% /nas/sc1d //sc1/sc1e 3845578572 3833644088 11934484 100% /nas/sc1e /dev/sdc2 1921285344 632693660 1190925892 35% / Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Memory Information —————————————————————- MemTotal: 32764796 kB MemFree: 302560 kB MemAvailable: 25767792 kB Buffers: 534716 kB Cached: 23971440 kB SwapCached: 483960 kB Active: 6342728 kB Inactive: 24266284 kB Active(anon): 4814680 kB Inactive(anon): 1297852 kB Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – DMESG | Tail - 10 —————————————————————- [858876.773836] CIFS VFS: n4 has not responded in 180 seconds. Reconnecting… [858877.285345] CIFS VFS: n2 has not responded in 180 seconds. Reconnecting… [858877.285366] CIFS VFS: n2 has not responded in 180 seconds. Reconnecting… [858877.797376] CIFS VFS: n1 has not responded in 180 seconds. Reconnecting… [858877.797400] CIFS VFS: cp1 has not responded in 180 seconds. Reconnecting… [858879.333476] CIFS VFS: n3 has not responded in 180 seconds. Reconnecting… [858879.333479] CIFS VFS: n3 has not responded in 180 seconds. Reconnecting… [931444.226591] EXT4-fs (sda1): error count since last fsck: 70 [931444.226605] EXT4-fs (sda1): initial error at time 1628798920: ext4_journal_check_start:61 [931444.226608] EXT4-fs (sda1): last error at time 1629311738: ext4_discard_preallocations:4094 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – PSCPU10 | HEAD - 10 —————————————————————- root 1594572 61.9 4.1 1473596 1354392 tty1 DL Aug28 1211:11 /root/chia-blockchain/venv/bin/python /root/chia-blockchain/venv/bin/chia plots create -n 15 -r 2 -t /nas/b/chia/ -2 /nas/b/chia/ -d /nas/n1a/plots/ root 1594574 61.8 4.1 1473504 1354948 tty1 RL Aug28 1210:38 /root/chia-blockchain/venv/bin/python /root/chia-blockchain/venv/bin/chia plots create -n 10 -r 2 -t /nas/e/chia/ -2 /nas/e/chia/ -d /nas/c/plots/ root 1594573 51.7 0.1 252488 42936 tty1 DL Aug28 1012:22 /root/chia-blockchain/venv/bin/python /root/chia-blockchain/venv/bin/chia plots create -n 15 -r 2 -t /nas/d/chia/ -2 /nas/d/chia/ -d /nas/n1b/plots/ root 3075 6.5 5.5 2574676 1814172 ? Sl Aug18 1108:28 _ chia_full_node root 3073 1.2 0.1 3798812 59676 ? Sl Aug18 212:19 _ chia_harvester root 3074 1.0 0.1 306628 52540 ? SLl Aug18 175:19 _ chia_farmer root 175 1.0 0.0 0 0 ? S Aug18 176:35 _ [kswapd0] root 1831775 0.7 0.0 0 0 ? I 04:15 0:11 _ [kworker/u32:3-events_power_efficient] root 1828134 0.7 0.0 0 0 ? S 04:01 0:18 _ [kworker/u32:5+flush-cifs-3] root 1821438 0.5 0.0 0 0 ? I 02:42 0:40 _ [kworker/u32:0-events_unbound] Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Chia show PLOTing Processeses —————————————————————- 4 R root 1594572 1 61 80 0 - 368399 - Aug28 tty1 20:11:11 /root/chia-blockchain/venv/bin/python /root/chia-blockchain/venv/bin/chia plots create -n 15 -r 2 -t /nas/b/chia/ -2 /nas/b/chia/ -d /nas/n1a/plots/ 4 D root 1594573 1 51 80 0 - 63122 generi Aug28 tty1 16:52:22 /root/chia-blockchain/venv/bin/python /root/chia-blockchain/venv/bin/chia plots create -n 15 -r 2 -t /nas/d/chia/ -2 /nas/d/chia/ -d /nas/n1b/plots/ 4 D root 1594574 1 61 80 0 - 368376 generi Aug28 tty1 20:10:38 /root/chia-blockchain/venv/bin/python /root/chia-blockchain/venv/bin/chia plots create -n 10 -r 2 -t /nas/e/chia/ -2 /nas/e/chia/ -d /nas/c/plots/ Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Log Eligible & How Long —————————————————————- total 213816 -rw-r–r– 1 root root 9034328 Aug 30 04:41 debug.log -rw-r–r– 1 root root 20971610 Aug 29 23:54 debug.log.1 -rw-r–r– 1 root root 20971619 Aug 23 08:27 debug.log.10 -rw-r–r– 1 root root 20971615 Aug 29 10:00 debug.log.2 -rw-r–r– 1 root root 20971624 Aug 28 23:06 debug.log.3 -rw-r–r– 1 root root 20971540 Aug 28 02:26 debug.log.4 -rw-r–r– 1 root root 20971523 Aug 27 05:19 debug.log.5 -rw-r–r– 1 root root 20971822 Aug 26 09:53 debug.log.6 -rw-r–r– 1 root root 20971665 Aug 25 16:06 debug.log.7 -rw-r–r– 1 root root 20971532 Aug 24 22:00 debug.log.8 -rw-r–r– 1 root root 20971529 Aug 24 04:15 debug.log.9 ——————————————————————- debug 0: 1760 debug 1: 4908 debug 2: 3649 debug 3: 7887 debug 4: 8125 debug 5: 7439 debug 6: 6796 debug 7: 6876 debug 8: 6764 debug 9: 7582 debug 10: 6876 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – PLOT TIMES —————————————————————- Drive a Drive b Total time = 8.95597 Hours CPU (61.960%) Sun Aug 29 05:02:54 2021 Total time = 9.02444 Hours CPU (61.140%) Sun Aug 29 14:21:16 2021 Total time = 8.98715 Hours CPU (61.490%) Sun Aug 29 23:37:27 2021 Drive c Drive d Total time = 10.5758 Hours CPU (53.410%) Sun Aug 29 06:40:05 2021 Total time = 10.53 Hours CPU (53.200%) Sun Aug 29 17:29:42 2021 Drive e Total time = 8.94114 Hours CPU (61.760%) Sun Aug 29 05:02:01 2021 Total time = 8.75893 Hours CPU (62.330%) Sun Aug 29 14:06:19 2021 Total time = 8.95444 Hours CPU (62.070%) Sun Aug 29 23:23:50 2021 Drive f Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – PLOTs PER DAY —————————————————————- 04.29.2021 = 2 04.30.2021 = 3 05.01.2021 = 3 05.02.2021 = 5 05.03.2021 = 4 05.06.2021 = 4 05.07.2021 = 6 05.08.2021 = 8 05.09.2021 = 8 05.10.2021 = 5 05.11.2021 = 6 05.12.2021 = 5 05.13.2021 = 4 05.14.2021 = 4 05.15.2021 = 4 05.16.2021 = 6 05.17.2021 = 1 05.18.2021 = 4 05.19.2021 = 8 05.20.2021 = 9 05.21.2021 = 2 05.22.2021 = 2 05.23.2021 = 4 05.24.2021 = 5 05.25.2021 = 8 05.26.2021 = 7 05.27.2021 = 9 05.28.2021 = 9 05.29.2021 = 8 05.30.2021 = 7 05.31.2021 = 7 06.01.2021 = 8 06.02.2021 = 4 06.03.2021 = 6 06.04.2021 = 9 06.05.2021 = 12 06.06.2021 = 10 06.07.2021 = 10 06.08.2021 = 9 06.09.2021 = 14 06.10.2021 = 9 06.11.2021 = 9 06.12.2021 = 8 06.13.2021 = 9 06.14.2021 = 10 06.15.2021 = 11 06.16.2021 = 11 06.17.2021 = 13 06.18.2021 = 13 06.19.2021 = 12 06.20.2021 = 17 06.21.2021 = 15 06.22.2021 = 12 06.23.2021 = 10 06.24.2021 = 12 06.25.2021 = 16 06.26.2021 = 9 06.27.2021 = 12 06.28.2021 = 15 06.29.2021 = 17 06.30.2021 = 12 07.01.2021 = 15 07.02.2021 = 16 07.03.2021 = 15 07.04.2021 = 21 07.05.2021 = 19 07.06.2021 = 17 07.07.2021 = 15 07.08.2021 = 8 07.09.2021 = 4 07.10.2021 = 8 07.11.2021 = 5 07.12.2021 = 8 07.13.2021 = 8 07.14.2021 = 6 07.15.2021 = 4 07.16.2021 = 7 07.17.2021 = 10 07.18.2021 = 6 07.19.2021 = 3 07.20.2021 = 7 07.21.2021 = 8 07.22.2021 = 10 07.23.2021 = 7 07.24.2021 = 7 07.25.2021 = 10 07.26.2021 = 14 07.27.2021 = 4 07.28.2021 = 7 07.29.2021 = 8 07.30.2021 = 7 07.31.2021 = 8 08.01.2021 = 9 08.02.2021 = 7 08.03.2021 = 7 08.04.2021 = 5 08.05.2021 = 5 08.06.2021 = 5 08.07.2021 = 4 08.08.2021 = 3 08.10.2021 = 3 08.11.2021 = 2 08.12.2021 = 3 08.13.2021 = 2 08.14.2021 = 2 08.15.2021 = 2 08.18.2021 = 2 08.19.2021 = 5 08.20.2021 = 4 08.21.2021 = 6 08.22.2021 = 4 08.23.2021 = 1 08.24.2021 = 3 08.28.2021 = 3 08.29.2021 = 5 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Plot Total Times [a-h] —————————————————————- /var/log/plotb.log:Total time = 32241.492 seconds. CPU (61.960%) Sun Aug 29 05:02:54 2021 /var/log/plotb.log:Total time = 32488.000 seconds. CPU (61.140%) Sun Aug 29 14:21:16 2021 /var/log/plotb.log:Total time = 32353.748 seconds. CPU (61.490%) Sun Aug 29 23:37:27 2021 /var/log/plotd.log:Total time = 38072.746 seconds. CPU (53.410%) Sun Aug 29 06:40:05 2021 /var/log/plotd.log:Total time = 37908.051 seconds. CPU (53.200%) Sun Aug 29 17:29:42 2021 /var/log/plote.log:Total time = 32188.105 seconds. CPU (61.760%) Sun Aug 29 05:02:01 2021 /var/log/plote.log:Total time = 31532.149 seconds. CPU (62.330%) Sun Aug 29 14:06:19 2021 /var/log/plote.log:Total time = 32235.976 seconds. CPU (62.070%) Sun Aug 29 23:23:50 2021 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Plot Process per drive —————————————————————- Mon 30 Aug 2021 04:41:01 AM MST Drive a: Last:10 —————————————————————— Mon 30 Aug 2021 04:41:01 AM MST Drive b: Last:10 —————————————————————— Time for phase 1 = 13360.807 seconds. CPU (80.830%) Sun Aug 29 18:20:54 2021 Starting phase 2/4: Backpropagation into tmp files… Sun Aug 29 18:20:54 2021 Time for phase 2 = 5862.213 seconds. CPU (52.650%) Sun Aug 29 19:58:36 2021 Starting phase 3/4: Compression from tmp files into “/nas/b/chia/plot-k32-2021-08-29-14-38-a10cbba19fd7b08d3d161cc7471b9c86cea9d2c907ca3681f6b81d3c45345274.plot.2.tmp” … Sun Aug 29 19:58:36 2021 Time for phase 3 = 12513.239 seconds. CPU (45.010%) Sun Aug 29 23:27:09 2021 Starting phase 4/4: Write Checkpoint tables into “/nas/b/chia/plot-k32-2021-08-29-14-38-a10cbba19fd7b08d3d161cc7471b9c86cea9d2c907ca3681f6b81d3c45345274.plot.2.tmp” … Sun Aug 29 23:27:09 2021 Time for phase 4 = 617.487 seconds. CPU (60.720%) Sun Aug 29 23:37:27 2021 Starting phase 1/4: Forward Propagation into tmp files… Sun Aug 29 23:54:21 2021 Time for phase 1 = 13477.976 seconds. CPU (80.980%) Mon Aug 30 03:38:59 2021 Starting phase 2/4: Backpropagation into tmp files… Mon Aug 30 03:38:59 2021 Mon 30 Aug 2021 04:41:01 AM MST Drive c: Last:10 —————————————————————— Mon 30 Aug 2021 04:41:01 AM MST Drive d: Last:10 —————————————————————— Starting phase 4/4: Write Checkpoint tables into “/nas/d/chia/plot-k32-2021-08-29-06-57-31693f42d45c99497ebd5fec38a248225627d1f48481ec83762bacccfd1bb83e.plot.2.tmp” … Sun Aug 29 17:16:03 2021 Time for phase 4 = 818.452 seconds. CPU (48.070%) Sun Aug 29 17:29:42 2021 Starting phase 1/4: Forward Propagation into tmp files… Sun Aug 29 17:47:46 2021 Time for phase 1 = 16527.715 seconds. CPU (64.920%) Sun Aug 29 22:23:14 2021 Starting phase 2/4: Backpropagation into tmp files… Sun Aug 29 22:23:14 2021 Time for phase 2 = 6313.381 seconds. CPU (49.460%) Mon Aug 30 00:08:27 2021 Starting phase 3/4: Compression from tmp files into “/nas/d/chia/plot-k32-2021-08-29-17-47-8068074c61b57228ab614da814083ab401412b26a9aab839794a90659b7f651d.plot.2.tmp” … Mon Aug 30 00:08:27 2021 Time for phase 3 = 14992.380 seconds. CPU (38.580%) Mon Aug 30 04:18:19 2021 Starting phase 4/4: Write Checkpoint tables into “/nas/d/chia/plot-k32-2021-08-29-17-47-8068074c61b57228ab614da814083ab401412b26a9aab839794a90659b7f651d.plot.2.tmp” … Mon Aug 30 04:18:19 2021 Time for phase 4 = 743.191 seconds. CPU (51.000%) Mon Aug 30 04:30:43 2021 Mon 30 Aug 2021 04:41:01 AM MST Drive e: Last:10 —————————————————————— Time for phase 1 = 13671.927 seconds. CPU (79.870%) Sun Aug 29 18:14:26 2021 Starting phase 2/4: Backpropagation into tmp files… Sun Aug 29 18:14:26 2021 Time for phase 2 = 5700.398 seconds. CPU (54.520%) Sun Aug 29 19:49:26 2021 Starting phase 3/4: Compression from tmp files into “/nas/e/chia/plot-k32-2021-08-29-14-26-a8c828506ec96c8e4370416d88b2604918cc99080d1ce1ae9ae56c8a88565365.plot.2.tmp” … Sun Aug 29 19:49:26 2021 Time for phase 3 = 12184.688 seconds. CPU (45.920%) Sun Aug 29 23:12:31 2021 Starting phase 4/4: Write Checkpoint tables into “/nas/e/chia/plot-k32-2021-08-29-14-26-a8c828506ec96c8e4370416d88b2604918cc99080d1ce1ae9ae56c8a88565365.plot.2.tmp” … Sun Aug 29 23:12:31 2021 Time for phase 4 = 678.961 seconds. CPU (57.110%) Sun Aug 29 23:23:50 2021 Starting phase 1/4: Forward Propagation into tmp files… Sun Aug 29 23:46:56 2021 Time for phase 1 = 13790.544 seconds. CPU (78.390%) Mon Aug 30 03:36:47 2021 Starting phase 2/4: Backpropagation into tmp files… Mon Aug 30 03:36:47 2021 Mon 30 Aug 2021 04:41:01 AM MST Drive f: Last:10 —————————————————————— Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log Warning / Error (LAST 10) —————————————————————- -rw-r–r– 1 root root 9036178 Aug 30 04:41 /root/.chia/mainnet/log/debug.log —————————————————————— FOUND Proofs : Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 1 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971610 Aug 29 23:54 /root/.chia/mainnet/log/debug.log.1 —————————————————————— FOUND Proofs : 2021-08-29T12:17:04.388 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 182.89.89.40 2021-08-29T14:37:59.723 farmer chia.farmer.farmer : ERROR Harvester did not respond. You might need to update harvester to the latest version 2021-08-29T17:06:37.572 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 173.28.202.79 2021-08-29T23:38:22.077 full_node chia.full_node.full_node: ERROR got weight proof request for unknown peak c0d69841dd7a1946a55057f37dc88d8500a233feeb9ae35f4dbe6d9c132e5df3 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 2 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971615 Aug 29 10:00 /root/.chia/mainnet/log/debug.log.2 —————————————————————— FOUND Proofs : 2021-08-29T00:12:02.820 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 111.40.59.242 2021-08-29T05:18:14.070 full_node chia.full_node.full_node: ERROR got weight proof request for unknown peak c51cf7f8964492ef67ae0341c3bd02709aacf14226241b261e9c8f45ffccaad6 2021-08-29T06:11:18.020 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 115.93.222.234 2021-08-29T09:14:50.116 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 114.225.91.68 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 3 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971624 Aug 28 23:06 /root/.chia/mainnet/log/debug.log.3 —————————————————————— FOUND Proofs : Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 4 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971540 Aug 28 02:26 /root/.chia/mainnet/log/debug.log.4 —————————————————————— FOUND Proofs : 2021-08-27T07:43:33.765 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 110.87.81.123 2021-08-27T08:15:53.226 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 120.230.117.188 2021-08-27T09:22:12.484 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 176.33.69.46 2021-08-27T10:04:25.861 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 101.84.52.157 2021-08-27T11:29:09.904 harvester chia.harvester.harvester: ERROR Error using prover object badbit or failbit after reading size 8 at position 85292863315 2021-08-27T11:29:09.935 harvester chia.harvester.harvester: ERROR File: /nas/a/plots/plot-k32-2021-06-29-22-27-f488f56c75a93231e3942e3186880e4edfcc8bd4ef0ceda6f110800ad6f1220b.plot Plot ID: f488f56c75a93231e3942e3186880e4edfcc8bd4ef0ceda6f110800ad6f1220b, challenge: 66fe8b54531fd93788a1e53a61bf1000cd7c4ac8c8e5c73f596c1b4288e96693, plot_info: PlotInfo(prover=, pool_public_key=, pool_contract_puzzle_hash=None, plot_public_key=, file_size=108791552003, time_modified=1625034563.0319898) Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 5 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971523 Aug 27 05:19 /root/.chia/mainnet/log/debug.log.5 —————————————————————— FOUND Proofs : 2021-08-26T10:30:00.837 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 182.126.202.236 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 6 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971822 Aug 26 09:53 /root/.chia/mainnet/log/debug.log.6 —————————————————————— FOUND Proofs : 2021-08-26T02:08:45.956 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 31.60.15.75 2021-08-26T03:42:11.332 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 5.173.241.35 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 7 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971665 Aug 25 16:06 /root/.chia/mainnet/log/debug.log.7 —————————————————————— FOUND Proofs : 2021-08-25T05:21:42.277 full_node full_node_server : ERROR Exception: [Errno 110] Connection timed out with 123.155.68.6 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 8 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971532 Aug 24 22:00 /root/.chia/mainnet/log/debug.log.8 —————————————————————— FOUND Proofs : Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 9 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971529 Aug 24 04:15 /root/.chia/mainnet/log/debug.log.9 —————————————————————— FOUND Proofs : Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – CHIA Debug Log ( 10 ) Warning / Error LAST 10 —————————————————————- -rw-r–r– 1 root root 20971619 Aug 23 08:27 /root/.chia/mainnet/log/debug.log.10 —————————————————————— FOUND Proofs : Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Total LOG Eligible Last 10 log files = 68662 —————————————————————- Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Chia Debug Plots taking too long all log files —————————————————————- LONGPLOTS = 2278 TOTAL Plots = 68662 Mon 30 Aug 2021 04:41:01 AM MST —————————————————————- – Count by time taken —————————————————————- 5 Sec - 750 CNT - 33 % Longplots 1.1 % Total 6 Sec - 523 CNT - 23 % Longplots 0.76 % Total 7 Sec - 135 CNT - 5.9 % Longplots 0.2 % Total 8 Sec - 93 CNT - 4.1 % Longplots 0.14 % Total 9 Sec - 42 CNT - 1.8 % Longplots 0.061 % Total 10 Sec - 46 CNT - 2 % Longplots 0.067 % Total 11 Sec - 138 CNT - 6.1 % Longplots 0.2 % Total 12 Sec - 50 CNT - 2.2 % Longplots 0.073 % Total 13 Sec - 38 CNT - 1.7 % Longplots 0.055 % Total 14 Sec - 19 CNT - 0.83 % Longplots 0.028 % Total 15 Sec - 27 CNT - 1.2 % Longplots 0.039 % Total 16 Sec - 44 CNT - 1.9 % Longplots 0.064 % Total 17 Sec - 46 CNT - 2 % Longplots 0.067 % Total 18 Sec - 27 CNT - 1.2 % Longplots 0.039 % Total 19 Sec - 21 CNT - 0.92 % Longplots 0.031 % Total 20 Sec - 5 CNT - 0.22 % Longplots 0.0073 % Total 21 Sec - 4 CNT - 0.18 % Longplots 0.0058 % Total 22 Sec - 40 CNT - 1.8 % Longplots 0.058 % Total 23 Sec - 26 CNT - 1.1 % Longplots 0.038 % Total 24 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 25 Sec - 13 CNT - 0.57 % Longplots 0.019 % Total 27 Sec - 24 CNT - 1.1 % Longplots 0.035 % Total 28 Sec - 10 CNT - 0.44 % Longplots 0.015 % Total 29 Sec - 21 CNT - 0.92 % Longplots 0.031 % Total 30 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 31 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 33 Sec - 24 CNT - 1.1 % Longplots 0.035 % Total 34 Sec - 5 CNT - 0.22 % Longplots 0.0073 % Total 35 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 36 Sec - 5 CNT - 0.22 % Longplots 0.0073 % Total 38 Sec - 9 CNT - 0.4 % Longplots 0.013 % Total 39 Sec - 5 CNT - 0.22 % Longplots 0.0073 % Total 40 Sec - 9 CNT - 0.4 % Longplots 0.013 % Total 41 Sec - 8 CNT - 0.35 % Longplots 0.012 % Total 42 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 44 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 46 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 47 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 48 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 49 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 51 Sec - 6 CNT - 0.26 % Longplots 0.0087 % Total 52 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 57 Sec - 6 CNT - 0.26 % Longplots 0.0087 % Total 63 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 69 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 73 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 79 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 85 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 89 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 91 Sec - 3 CNT - 0.13 % Longplots 0.0044 % Total 92 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 97 Sec - 5 CNT - 0.22 % Longplots 0.0073 % Total 132 Sec - 2 CNT - 0.088 % Longplots 0.0029 % Total 153 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 166 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 189 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 206 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 213 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 297 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 298 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 430 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 503 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 524 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 526 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total 528 Sec - 1 CNT - 0.044 % Longplots 0.0015 % Total
Thursday, June 17, 2021
Upload my chia stats to the cloud baby
DATE=`/usr/bin/date` echo $DATE >> /var/log/chia.status.upload.log /root/bin/chia.status.up.exp
Which runs the following expect script
root@ms2:~/bin# cat chia.status.up.exp #!/usr/bin/expect -f set timeout -1 spawn $env(SHELL) match_max 100000 send -- "scp -P 2233 /var/log/chia.status.html uscopley@barilin.com:/home/uscopley/public_html/vpls/" expect -exact "scp -P 2233 /var/log/chia.status.html uscopley@barilin.com:/home/uscopley/public_html/vpls/" send -- "r" expect -exact "d: " send -- "XXXXXX" expect -exact "#" send -- "exitr" expect eof (venv) root@ms2:~/bin#
CHIA Stats
Every 5 minutes run stats on my chia Plotter….
1,11,21,31,41,51 * * * * /root/bin/chia.status.sh > /var/log/chia.status.html
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– chia Wallet show –
——————————————————————
Sync status: Synced
Wallet ID 1 type STANDARD_WALLET
-Total Balance: 0.0 xch (0 mojo)
-Pending Total Balance: 0.0 xch (0 mojo)
-Spendable: 0.0 xch (0 mojo)
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– chia farm summary –
——————————————————————
Farming status: Farming
Total chia farmed: 0.0
User transaction fees: 0.0
Block rewards: 0.0
Last height farmed: 0
Plot count: 565
Total size of plots: 55.927 TiB
Estimated network space: 24619.483 PiB
Expected time to win: 3 months
Note: log into your key using ‘chia wallet show’ to see rewards for each key
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– drive temp –
——————————————————————
06.17.21.19.55:/dev/sda:32
06.17.21.19.55:/dev/sdb:33
06.17.21.19.55:/dev/sdc:34
06.17.21.19.55:/dev/sdd:32
06.17.21.19.55:/dev/sde:32
06.17.21.19.55:/dev/sdf:32
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– Plot Details –
——————————————————————
7.4T /nas/n1a/plots
6.9T /nas/n1b/plots
0 /nas/n2a/plots
0 /nas/n2b/plots
3.6T /nas/n3a/plots
3.6T /nas/n3b/plots
0 /nas/n3c/plots
0 /nas/n3d/plots
0 /nas/n3e/plots
5.1T /nas/n4a/plots
5.3T /nas/n4b/plots
4.0K /nas/a/plots
3.3T /nas/b/plots
3.1T /nas/c/plots
4.3T /nas/d/plots
7.8T /nas/e/plots
6.1T /nas/f/plots
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– drive free –
——————————————————————
/dev/sda2 1921285344 19658108 1803961444 2% /
/dev/sda1 523248 8036 515212 2% /boot/efi
/dev/sdc1 3844660232 3485257016 164036000 96% /nas/c
/dev/sdb1 3845578572 3673296532 172265656 96% /nas/b
/dev/sde1 11625432492 8532500552 3092915556 74% /nas/e
/dev/sdf1 11625432492 6530631404 5094784704 57% /nas/f
/dev/sdd1 11625432492 4740637548 6884778560 41% /nas/d
//n1/n1a 31130140152 20985039820 10145100332 68% /nas/n1a
//n4/n4a 58359505136 41394426388 16965078748 71% /nas/n4a
//n4/n4b 58359505136 41603875736 16755629400 72% /nas/n4b
//n1/n1b 31130140152 20453133944 10677006208 66% /nas/n1b
//n2/n2a 7752457832 5340501776 2411956056 69% /nas/n2a
//n2/n2b 7752326760 5361762568 2390564192 70% /nas/n2b
//n3/n3e 3844629500 86024 3844543476 1% /nas/n3e
//n3/n3b 3845578572 3826587376 18991196 100% /nas/n3b
//n3/n3a 3845578572 3826454196 19124376 100% /nas/n3a
//n3/n3d 3845578572 86024 3845492548 1% /nas/n3d
//n3/n3c 3844661068 86024 3844575044 1% /nas/n3c
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– MEMORY INFormation –
——————————————————————
MemTotal: 32732116 kB
MemFree: 299348 kB
MemAvailable: 21355512 kB
Buffers: 109384 kB
Cached: 20206700 kB
SwapCached: 976 kB
Active: 10782136 kB
Inactive: 20091976 kB
Active(anon): 9305636 kB
Inactive(anon): 1262872 kB
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– chia show network connections –
——————————————————————
FULL_NODE Connextions
51
WALLET Connextions
4
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– chia show PLOTing Processeses –
——————————————————————
4 R root 2813 1 49 80 0 - 939958 - Jun15 tty1 1-08:14:01 /root/chia/chia-blockchain/venv/bin/python /root/chia/chia-blockchain/venv/bin/chia plots create -n 20 -r 2 -t /nas/b/chia -2 /nas/b/chia -d /nas/n1b/plots
4 S root 2815 1 81 80 0 - 945857 futex_ Jun15 tty1 2-05:15:24 /root/chia/chia-blockchain/venv/bin/python /root/chia/chia-blockchain/venv/bin/chia plots create -n 20 -r 2 -t /nas/d/chia -2 /nas/d/chia -d /nas/d/plots
4 R root 2816 1 74 80 0 - 936336 - Jun15 tty1 2-00:50:38 /root/chia/chia-blockchain/venv/bin/python /root/chia/chia-blockchain/venv/bin/chia plots create -n 20 -r 2 -t /nas/e/chia -2 /nas/e/chia -d /nas/e/plots
4 S root 2817 1 78 80 0 - 966955 futex_ Jun15 tty1 2-03:10:20 /root/chia/chia-blockchain/venv/bin/python /root/chia/chia-blockchain/venv/bin/chia plots create -n 20 -r 2 -t /nas/f/chia -2 /nas/f/chia -d /nas/f/plots
4 R root 238282 4251 68 80 0 - 386825 - Jun16 tty1 16:49:09 /root/chia/chia-blockchain/venv/bin/python /root/chia/chia-blockchain/venv/bin/chia plots create -n 3 -r 3 -t /nas/c/chia -2 /nas/c/chia -d /nas/c/chia/
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– log eligible & HOW LONG –
——————————————————————
debug 0: 40
debug 1: 255
debug 2: 259
debug 3: 239
debug 4: 240
debug 5: 236
debug 6: 234
debug 7: 221
debug 8: 225
debug 9: 234
debug 10: 215
debug 11: 223
debug 12: 243
debug 13: 241
debug 14: 241
debug 15: 93
debug 16: 147
debug 17: 224
debug 18: 220
debug 19: 221
debug 20: 226
debug 21: 238
debug 22: 226
debug 23: 214
debug 24: 228
debug 25: 0
debug 26: 0
debug 27: 0
debug 28: 0
debug 29: 0
debug 30: 0
debug 31: 0
debug 32: 0
debug 33: 0
debug 34: 0
debug 35: 0
debug 36: 0
debug 37: 0
debug 38: 0
debug 39: 0
debug 40: 0
debug 41: 0
debug 42: 0
debug 43: 0
debug 44: 0
debug 45: 0
debug 46: 0
debug 47: 0
debug 48: 0
debug 49: 0
debug 50: 0
==================================================================
TOTAL Log Eligible last 24 hours = 5383
==================================================================
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– PLOT Times –
——————————————————————
Drive b
Total time = 13.1809 Hours CPU (50.740%) Tue Jun 15 15:37:45 2021
Total time = 13.0042 Hours CPU (49.900%) Wed Jun 16 04:57:11 2021
Total time = 13.0373 Hours CPU (49.210%) Wed Jun 16 18:18:29 2021
Total time = 13.0087 Hours CPU (49.740%) Thu Jun 17 07:38:05 2021
Drive c
Total time = 9.33104 Hours CPU (67.720%) Thu Jun 17 04:41:48 2021
Total time = 9.88766 Hours CPU (63.570%) Thu Jun 17 14:35:04 2021
Drive d
Total time = 7.25706 Hours CPU (88.560%) Tue Jun 15 09:42:19 2021
Total time = 7.22368 Hours CPU (86.790%) Tue Jun 15 17:12:24 2021
Total time = 7.33504 Hours CPU (85.020%) Wed Jun 16 00:50:36 2021
Total time = 7.74646 Hours CPU (80.550%) Wed Jun 16 08:54:38 2021
Total time = 8.62134 Hours CPU (73.090%) Wed Jun 16 17:55:31 2021
Total time = 7.26566 Hours CPU (87.360%) Thu Jun 17 01:32:12 2021
Total time = 7.14746 Hours CPU (85.210%) Thu Jun 17 08:57:14 2021
Total time = 7.4175 Hours CPU (83.230%) Thu Jun 17 16:39:49 2021
Drive e
Total time = 7.79934 Hours CPU (82.990%) Tue Jun 15 10:14:51 2021
Total time = 8.20204 Hours CPU (76.710%) Tue Jun 15 18:48:46 2021
Total time = 8.33224 Hours CPU (75.190%) Wed Jun 16 03:36:26 2021
Total time = 7.7893 Hours CPU (78.670%) Wed Jun 16 11:44:02 2021
Total time = 8.5457 Hours CPU (73.280%) Wed Jun 16 20:42:30 2021
Total time = 8.07113 Hours CPU (77.670%) Thu Jun 17 05:06:54 2021
Total time = 8.49636 Hours CPU (72.530%) Thu Jun 17 14:01:33 2021
Drive f
Total time = 7.35594 Hours CPU (87.240%) Tue Jun 15 09:48:15 2021
Total time = 7.35817 Hours CPU (84.430%) Tue Jun 15 17:27:37 2021
Total time = 7.80425 Hours CPU (79.740%) Wed Jun 16 01:36:35 2021
Total time = 8.44075 Hours CPU (73.540%) Wed Jun 16 10:28:36 2021
Total time = 7.20473 Hours CPU (84.720%) Wed Jun 16 17:57:45 2021
Total time = 7.64956 Hours CPU (82.140%) Thu Jun 17 01:54:59 2021
Total time = 8.6043 Hours CPU (71.900%) Thu Jun 17 10:53:25 2021
Total time = 7.2 Hours CPU (85.510%) Thu Jun 17 18:36:40 2021
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– PLOTs PER DAY –
——————————————————————
04.29.2021 = 10
04.30.2021 = 4
05.01.2021 = 4
05.02.2021 = 7
05.03.2021 = 4
05.04.2021 = 3
05.05.2021 = 6
05.06.2021 = 6
05.07.2021 = 6
05.08.2021 = 8
05.09.2021 = 8
05.10.2021 = 5
05.11.2021 = 6
05.12.2021 = 6
05.13.2021 = 5
05.14.2021 = 5
05.15.2021 = 5
05.16.2021 = 7
05.17.2021 = 1
05.18.2021 = 5
05.19.2021 = 9
05.20.2021 = 11
05.21.2021 = 9
05.22.2021 = 9
05.23.2021 = 10
05.24.2021 = 12
05.25.2021 = 18
05.26.2021 = 14
05.27.2021 = 19
05.28.2021 = 18
05.29.2021 = 19
05.30.2021 = 16
05.31.2021 = 17
06.01.2021 = 16
06.02.2021 = 12
06.03.2021 = 16
06.04.2021 = 18
06.05.2021 = 19
06.06.2021 = 18
06.07.2021 = 18
06.08.2021 = 17
06.09.2021 = 21
06.10.2021 = 17
06.11.2021 = 17
06.12.2021 = 13
06.13.2021 = 14
06.14.2021 = 16
06.15.2021 = 18
06.16.2021 = 17
06.17.2021 = 5
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– PLOT Total TIMES [a-e] –
——————————————————————
/var/log/plotb.log:Total time = 47451.344 seconds. CPU (50.740%) Tue Jun 15 15:37:45 2021
/var/log/plotb.log:Total time = 46815.167 seconds. CPU (49.900%) Wed Jun 16 04:57:11 2021
/var/log/plotb.log:Total time = 46934.159 seconds. CPU (49.210%) Wed Jun 16 18:18:29 2021
/var/log/plotb.log:Total time = 46831.453 seconds. CPU (49.740%) Thu Jun 17 07:38:05 2021
/var/log/plotc.log:Total time = 33591.727 seconds. CPU (67.720%) Thu Jun 17 04:41:48 2021
/var/log/plotc.log:Total time = 35595.586 seconds. CPU (63.570%) Thu Jun 17 14:35:04 2021
/var/log/plotd.log:Total time = 26125.406 seconds. CPU (88.560%) Tue Jun 15 09:42:19 2021
/var/log/plotd.log:Total time = 26005.244 seconds. CPU (86.790%) Tue Jun 15 17:12:24 2021
/var/log/plotd.log:Total time = 26406.139 seconds. CPU (85.020%) Wed Jun 16 00:50:36 2021
/var/log/plotd.log:Total time = 27887.239 seconds. CPU (80.550%) Wed Jun 16 08:54:38 2021
/var/log/plotd.log:Total time = 31036.834 seconds. CPU (73.090%) Wed Jun 16 17:55:31 2021
/var/log/plotd.log:Total time = 26156.380 seconds. CPU (87.360%) Thu Jun 17 01:32:12 2021
/var/log/plotd.log:Total time = 25730.869 seconds. CPU (85.210%) Thu Jun 17 08:57:14 2021
/var/log/plotd.log:Total time = 26703.007 seconds. CPU (83.230%) Thu Jun 17 16:39:49 2021
/var/log/plote.log:Total time = 28077.621 seconds. CPU (82.990%) Tue Jun 15 10:14:51 2021
/var/log/plote.log:Total time = 29527.330 seconds. CPU (76.710%) Tue Jun 15 18:48:46 2021
/var/log/plote.log:Total time = 29996.072 seconds. CPU (75.190%) Wed Jun 16 03:36:26 2021
/var/log/plote.log:Total time = 28041.489 seconds. CPU (78.670%) Wed Jun 16 11:44:02 2021
/var/log/plote.log:Total time = 30764.532 seconds. CPU (73.280%) Wed Jun 16 20:42:30 2021
/var/log/plote.log:Total time = 29056.083 seconds. CPU (77.670%) Thu Jun 17 05:06:54 2021
/var/log/plote.log:Total time = 30586.904 seconds. CPU (72.530%) Thu Jun 17 14:01:33 2021
/var/log/plotf.log:Total time = 26481.383 seconds. CPU (87.240%) Tue Jun 15 09:48:15 2021
/var/log/plotf.log:Total time = 26489.398 seconds. CPU (84.430%) Tue Jun 15 17:27:37 2021
/var/log/plotf.log:Total time = 28095.303 seconds. CPU (79.740%) Wed Jun 16 01:36:35 2021
/var/log/plotf.log:Total time = 30386.710 seconds. CPU (73.540%) Wed Jun 16 10:28:36 2021
/var/log/plotf.log:Total time = 25937.011 seconds. CPU (84.720%) Wed Jun 16 17:57:45 2021
/var/log/plotf.log:Total time = 27538.406 seconds. CPU (82.140%) Thu Jun 17 01:54:59 2021
/var/log/plotf.log:Total time = 30975.484 seconds. CPU (71.900%) Thu Jun 17 10:53:25 2021
/var/log/plotf.log:Total time = 25919.997 seconds. CPU (85.510%) Thu Jun 17 18:36:40 2021
——————————————————————
– Plot Process per drive [a-f] –
——————————————————————
Thu 17 Jun 2021 07:56:01 PM UTC Drive B
——————————————————————
Time for phase 2 = 7806.992 seconds. CPU (45.860%) Thu Jun 17 02:09:16 2021
Starting phase 3/4: Compression from tmp files into “/nas/b/chia/plot-k32-2021-06-16-18-37-87bd075eba95930ead834d306c8b5342ff8b2ec6a37f1a63b40a9101e3d999be.plot.2.tmp” … Thu Jun 17 02:09:16 2021
Time for phase 3 = 18802.629 seconds. CPU (36.650%) Thu Jun 17 07:22:39 2021
Starting phase 4/4: Write Checkpoint tables into “/nas/b/chia/plot-k32-2021-06-16-18-37-87bd075eba95930ead834d306c8b5342ff8b2ec6a37f1a63b40a9101e3d999be.plot.2.tmp” … Thu Jun 17 07:22:39 2021
Time for phase 4 = 926.089 seconds. CPU (49.600%) Thu Jun 17 07:38:05 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 07:58:05 2021
Time for phase 1 = 19900.680 seconds. CPU (60.930%) Thu Jun 17 13:29:45 2021
Starting phase 2/4: Backpropagation into tmp files… Thu Jun 17 13:29:45 2021
Time for phase 2 = 7978.108 seconds. CPU (46.940%) Thu Jun 17 15:42:44 2021
Starting phase 3/4: Compression from tmp files into “/nas/b/chia/plot-k32-2021-06-17-07-58-45926f8717e05bd1eb05ed60e63eae5d2301e894d71266654c65a095f98c2e3e.plot.2.tmp” … Thu Jun 17 15:42:44 2021
Thu 17 Jun 2021 07:56:01 PM UTC Drive C
——————————————————————
Time for phase 1 = 14787.800 seconds. CPU (80.880%) Thu Jun 17 08:48:17 2021
Starting phase 2/4: Backpropagation into tmp files… Thu Jun 17 08:48:17 2021
Time for phase 2 = 6121.735 seconds. CPU (57.340%) Thu Jun 17 10:30:18 2021
Starting phase 3/4: Compression from tmp files into “/nas/c/chia/plot-k32-2021-06-17-04-41-1c969a88a5febd0098152bce54855ca4699cc076bda314d9982d019cce782d7e.plot.2.tmp” … Thu Jun 17 10:30:18 2021
Time for phase 3 = 13887.806 seconds. CPU (48.090%) Thu Jun 17 14:21:46 2021
Starting phase 4/4: Write Checkpoint tables into “/nas/c/chia/plot-k32-2021-06-17-04-41-1c969a88a5febd0098152bce54855ca4699cc076bda314d9982d019cce782d7e.plot.2.tmp” … Thu Jun 17 14:21:46 2021
Time for phase 4 = 798.243 seconds. CPU (59.870%) Thu Jun 17 14:35:04 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 14:35:05 2021
Time for phase 1 = 13901.121 seconds. CPU (86.850%) Thu Jun 17 18:26:46 2021
Starting phase 2/4: Backpropagation into tmp files… Thu Jun 17 18:26:46 2021
Thu 17 Jun 2021 07:56:01 PM UTC Drive D
——————————————————————
Time for phase 4 = 596.827 seconds. CPU (74.530%) Thu Jun 17 08:57:14 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 09:14:46 2021
Time for phase 1 = 10812.367 seconds. CPU (108.030%) Thu Jun 17 12:14:59 2021
Starting phase 2/4: Backpropagation into tmp files… Thu Jun 17 12:14:59 2021
Time for phase 2 = 4860.074 seconds. CPU (71.750%) Thu Jun 17 13:35:59 2021
Starting phase 3/4: Compression from tmp files into “/nas/d/chia/plot-k32-2021-06-17-09-14-776744781b9c8fcb7de10995102e5f47698db0a72b118594efc1febdedbb95ba.plot.2.tmp” … Thu Jun 17 13:35:59 2021
Time for phase 3 = 10421.522 seconds. CPU (63.400%) Thu Jun 17 16:29:40 2021
Starting phase 4/4: Write Checkpoint tables into “/nas/d/chia/plot-k32-2021-06-17-09-14-776744781b9c8fcb7de10995102e5f47698db0a72b118594efc1febdedbb95ba.plot.2.tmp” … Thu Jun 17 16:29:40 2021
Time for phase 4 = 609.042 seconds. CPU (73.940%) Thu Jun 17 16:39:49 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 16:59:56 2021
Thu 17 Jun 2021 07:56:01 PM UTC Drive E
——————————————————————
Time for phase 2 = 5755.397 seconds. CPU (60.450%) Thu Jun 17 10:53:11 2021
Starting phase 3/4: Compression from tmp files into “/nas/e/chia/plot-k32-2021-06-17-05-31-d8cce8bdbc39bfc0517150778b0522170ab182296525fc63cefa083d300ddc6f.plot.2.tmp” … Thu Jun 17 10:53:11 2021
Time for phase 3 = 10684.809 seconds. CPU (61.000%) Thu Jun 17 13:51:16 2021
Starting phase 4/4: Write Checkpoint tables into “/nas/e/chia/plot-k32-2021-06-17-05-31-d8cce8bdbc39bfc0517150778b0522170ab182296525fc63cefa083d300ddc6f.plot.2.tmp” … Thu Jun 17 13:51:16 2021
Time for phase 4 = 617.278 seconds. CPU (72.690%) Thu Jun 17 14:01:33 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 14:21:23 2021
Time for phase 1 = 11327.896 seconds. CPU (102.990%) Thu Jun 17 17:30:11 2021
Starting phase 2/4: Backpropagation into tmp files… Thu Jun 17 17:30:11 2021
Time for phase 2 = 5173.119 seconds. CPU (66.320%) Thu Jun 17 18:56:24 2021
Starting phase 3/4: Compression from tmp files into “/nas/e/chia/plot-k32-2021-06-17-14-21-c8b6ae179b954e9990b2d418c379ea660f18d92f29407a7cb8d36b7ab4843674.plot.2.tmp” … Thu Jun 17 18:56:24 2021
Thu 17 Jun 2021 07:56:01 PM UTC Drive F
——————————————————————
Time for phase 4 = 716.823 seconds. CPU (62.990%) Thu Jun 17 10:53:25 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 11:24:40 2021
Time for phase 1 = 10424.759 seconds. CPU (111.190%) Thu Jun 17 14:18:25 2021
Starting phase 2/4: Backpropagation into tmp files… Thu Jun 17 14:18:25 2021
Time for phase 2 = 4860.849 seconds. CPU (74.790%) Thu Jun 17 15:39:26 2021
Starting phase 3/4: Compression from tmp files into “/nas/f/chia/plot-k32-2021-06-17-11-24-bd12472dbcb216df1d793a9fb24fe4e63fbaf1f519433205e89b2e5c59e8224b.plot.2.tmp” … Thu Jun 17 15:39:26 2021
Time for phase 3 = 10054.525 seconds. CPU (64.810%) Thu Jun 17 18:27:00 2021
Starting phase 4/4: Write Checkpoint tables into “/nas/f/chia/plot-k32-2021-06-17-11-24-bd12472dbcb216df1d793a9fb24fe4e63fbaf1f519433205e89b2e5c59e8224b.plot.2.tmp” … Thu Jun 17 18:27:00 2021
Time for phase 4 = 579.862 seconds. CPU (72.870%) Thu Jun 17 18:36:40 2021
Starting phase 1/4: Forward Propagation into tmp files… Thu Jun 17 18:54:09 2021
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– CHIA Debug Log Warning / Error –
——————————————————————
-rw-r–r– 1 root root 3579465 Jun 17 19:56 /root/.chia/mainnet/log/debug.log
——————————————————————
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– CHIA Debug Log Warning / Error –
——————————————————————
-rw-r–r– 1 root root 20971559 Jun 17 19:49 /root/.chia/mainnet/log/debug.log.1
——————————————————————
2021-06-17T19:17:15.145 full_node full_node_server : WARNING Banning 60.12.136.62 for 10 seconds
2021-06-17T19:17:15.146 full_node full_node_server : WARNING Incompatible network ID. Maybe the peer is on another network
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– CHIA Debug Log Warning / Error –
——————————————————————
-rw-r–r– 1 root root 20971662 Jun 17 19:10 /root/.chia/mainnet/log/debug.log.2
——————————————————————
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– CHIA Debug Log Warning / Error –
——————————————————————
-rw-r–r– 1 root root 20971531 Jun 17 18:29 /root/.chia/mainnet/log/debug.log.3
——————————————————————
2021-06-17T18:21:40.721 full_node full_node_server : WARNING [Errno 32] Broken pipe 159.146.86.37
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– CHIA Debug Plots taking too long past 24 hours –
——————————————————————
LONGPLOTS = 79
——————————————————————
Thu 17 Jun 2021 07:56:01 PM UTC
——————————————————————
– CHIA LONG PLOTS –
——————————————————————
2021-06-17T18:45:26.497 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-13-04-19-05113e33ee800e7488208571646946d46bcd7d82c5a5d571d7371c9916510597.plot took: 5.427309989929199. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.1:2021-06-17T18:27:47.527 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-19-02-02-94316c6783992d933d71c4281cb20cccd16e433a712a53b0f677e2d7dca24d6f.plot took: 6.145429372787476. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.3:2021-06-17T17:01:21.064 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-16-09-18-0190ab682e0bda839e24a137d9e1d553b481428e43ca22c08c53c8954a51717d.plot took: 9.479523420333862. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.3:2021-06-17T17:02:55.881 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-05-16-19-d3a994a21e4dcb2e27d36cc197a0d564ef2ed0509f8c40f76dd1c8505eb1b3df.plot took: 19.550588130950928. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.3:2021-06-17T17:13:21.148 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-06-14-49-b9dc13eea4dee2591d80046c7dc1f520cf2bc0080ecf9fed7df8cfcc45ac40d6.plot took: 5.685353755950928. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.4:2021-06-17T16:06:54.293 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-18-13-27-bc79ee5c14377bc2a44e9248968ed12bcebb897df830d645751adef5df9065a7.plot took: 6.3269219398498535. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.4:2021-06-17T16:08:26.353 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-03-14-34-5f04fa888a852e24580ec67abcb598d63c1b4ea083babccaafbc14a24c81437b.plot took: 5.148165702819824. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.4:2021-06-17T16:25:03.154 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-03-14-34-5f04fa888a852e24580ec67abcb598d63c1b4ea083babccaafbc14a24c81437b.plot took: 5.160356283187866. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.4:2021-06-17T16:33:23.773 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-01-14-46-4bf2e1c3409a0e37083c1d8dc296cfacd984f558c4af49063e018cfcb76afd9f.plot took: 5.1065521240234375. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.6:2021-06-17T15:07:11.595 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-09-20-45-a9e126942975228075dcc8aca461d9e28d17d7688ba8b8fc6e44c825d1ad96be.plot took: 5.712203025817871. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.7:2021-06-17T14:17:53.409 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-05-21-18-38-93b68499863cee2e9b9bebba892772a7bab7283300b92098bba6f089b3af1fd7.plot took: 7.165598392486572. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.7:2021-06-17T14:23:15.489 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-15-10-36-c3d77dc29318355ee3842233455ca30cc6c95a37c74a07ae42e94367bacf8b38.plot took: 12.87739634513855. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.7:2021-06-17T14:33:38.142 full_node full_node_server : ERROR Exception: Failed to fetch block 444509 from None, timed out , closing connection None. Traceback (most recent call last):
/root/.chia/mainnet/log/debug.log.7:2021-06-17T14:33:38.142 full_node full_node_server : ERROR Exception: Failed to fetch block 444510 from None, timed out , closing connection None. Traceback (most recent call last):
/root/.chia/mainnet/log/debug.log.7:2021-06-17T14:38:25.294 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-04-20-13-5cf23e0bbe9ebdad2b746979bf1d89f863b090eba398cf9f2aff21c6c73b171e.plot took: 18.99367618560791. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.8:2021-06-17T13:47:43.154 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-06-05-58-f9babf3f95d31965f85d7ac945b8a1848d41ed809e6fa13e78b638dc4e1cf88b.plot took: 6.437633275985718. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.11:2021-06-17T11:57:08.514 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-03-12-34-50a988cb15d5024d2220cef14c436c620fbadb6f0fb4f9ed5f497d0e4d910abe.plot took: 5.992764234542847. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.11:2021-06-17T12:18:28.168 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-04-20-54-eea392c4fe2e62c00915bd128b15489a458a0912377a997cb7a38887e89cd2fa.plot took: 5.0333168506622314. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.12:2021-06-17T11:24:23.302 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-06-11-02-56-d272adf149d74d6e39ee2e0eb2a56529aaf26f676c065a6b1e1f3823e79dd645.plot took: 6.33660101890564. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.12:2021-06-17T11:25:00.901 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-06-09-11-50-68bb674a755f1ee45ac1a87dacffc059e88aaee905edad1edf0aa838d97550af.plot took: 8.741405963897705. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.12:2021-06-17T11:25:07.786 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-25-01-44-1ce6e3332f389654bb1bbf6cc4478735bd5dcbe38fa953a36d3396366e937426.plot took: 5.712898015975952. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.13:2021-06-17T11:10:07.719 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-05-05-03-32-de0fc79126e0a6d4adb46823c7d2e2f5b2188180fa33d41ccc90dae2833c1b76.plot took: 5.751469135284424. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.15:2021-06-17T10:09:34.561 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-14-08-07-4fec57b808478feb5e8a3a81a688044fd67a7b74baa7865d217984ad2b3e1417.plot took: 5.498882055282593. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.15:2021-06-17T10:14:11.705 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-24-13-52-0b19c110c7f0de53aa677da1725950aff0de1a28eddbf999f68f7bfecb7ff814.plot took: 5.035463809967041. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.15:2021-06-17T10:19:47.444 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-28-15-03-fc2cbaa2a59600df5e9aaf2fe9f9db43ca10e5fce3f4c4ecfa9bf48382594036.plot took: 5.037348747253418. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.16:2021-06-17T09:49:45.751 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-06-07-04-05-38a42f5099ed008c6f2fc48b078705e8cf12360cb3712bfde280b7c7b4269179.plot took: 5.779710292816162. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.17:2021-06-17T09:11:30.587 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-10-19-15-d33f1b3b11636435c151425a0963d9951f97adb40aeb0c46d81456d6d513560c.plot took: 7.629858493804932. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.17:2021-06-17T09:18:55.121 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-01-02-01-f3257920bdbada18e4867b2af4d86244d1097ca5e22c30a39952cd5e93c233eb.plot took: 5.7690346240997314. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:44:35.810 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1a/plots/plot-k32-2021-05-30-05-57-72267cfebe916e3a5880bf260c64b4b6e55ed6c33213fb3b8274783082bce3c3.plot took: 6.021930932998657. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:44:36.497 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-28-15-03-fc2cbaa2a59600df5e9aaf2fe9f9db43ca10e5fce3f4c4ecfa9bf48382594036.plot took: 6.708420276641846. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:44:51.495 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1a/plots/plot-k32-2021-05-07-06-18-8a38686a0be43a4b9dc2937a8a7b583ef2ff78e3dd7525f70ffa2cb188d55f8c.plot took: 5.151033639907837. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:44:52.830 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-29-19-32-719efb931e5549fba7a12c9ab96b2234075aab35b05fbed65e0108bf5aa8198e.plot took: 6.485887050628662. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:45:00.913 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-08-11-12-5d40c77b97766fe8934a5bdb52fd760d4b0167868d89d7fc24b7a203474afe18.plot took: 5.302374839782715. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:45:39.022 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-06-12-02-33-f07868c102abf5a095795279e312e8b433c4e547db1d1157d51a5bcf0e95380c.plot took: 5.112760066986084. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:45:58.170 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-12-00-22-e743ace4638800063ef8d68f407a1aebc021b36b410210632881af4d2769164c.plot took: 5.504668951034546. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:46:08.560 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-06-14-21-07-709b7c0885180ead664e3f1be1612ba740276e2fb97749d88b096b0bbaf2aa2a.plot took: 5.3117241859436035. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:46:25.533 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-19-11-45-23c2aa8f2ebd984b9afc270a2f57f7e175ebc828808844d2a3381c991ceb1496.plot took: 5.206125020980835. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:46:26.544 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-25-12-18-8f46104cc6e82ea9bcf41adcb997e048f3b2f68570acf8f5624efa6c10f3430e.plot took: 6.217198848724365. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:46:33.880 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1a/plots/plot-k32-2021-05-19-02-55-4130ed8515e7ab132f01971570c13b5d93791dff87c07bd7fa4ee7181495b24a.plot took: 5.211463212966919. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:47:26.602 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4b/plots/plot-k32-2021-05-09-16-39-d52eb73b2ca0917204abbe508a6925e55e4e364119630c7e11663317aca0d6ea.plot took: 5.019644737243652. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:47:27.417 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-06-20-34-8665cea0e00a71c6624962ffc03aa7d8be7a8defd29ce35833014581fe332be3.plot took: 5.835049629211426. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:48:41.953 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-05-08-02-45-35a1cd505e6d0bf1de02d7f8a5cb3ed547d5a17b114f3734bd276fa925de7c23.plot took: 6.512155055999756. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.19:2021-06-17T07:59:13.655 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-27-03-57-7f612c5289b1eef55a076c9eee6dc9816027880e6137bf502c857b1177fb344e.plot took: 6.048501968383789. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:28:18.120 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-09-20-10-9597461f3dd2cc5cb2859deab1098943f75477501e8192e6b9605a16aae37733.plot took: 6.389329671859741. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:38:49.760 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-01-02-23-8bbea0477b514310c244984ceef47b0f41e79e0dd3cf6b716fb1017d731ecf55.plot took: 13.976977586746216. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:39:02.450 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-06-07-27-a23623935cdd79b422479c26bbf785a2afa2baa4e31aba82a3ad2e42e0fa5de1.plot took: 5.968679666519165. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:39:21.396 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-06-08-04-05-731c8bdd288d989ce4eac92599c28c87c9dc7117f2d38be54a93db513f27b5ce.plot took: 8.084840536117554. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:39:29.187 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-15-02-26-cf93c961856b0a6f9667f37a48f1b26662b9cd0503fa9684d3b9bae0504c0f98.plot took: 6.952186584472656. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:39:37.060 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n3a/plots/plot-k32-2021-05-05-14-53-09f96b98602f4fb04b7117a687e716f344d8e0e2914a3888c6dfd6611552ddc5.plot took: 6.597527027130127. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:39:46.648 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-05-31-04-59-d698902f96d7e84aee0323cc5591bde5b401cc5b00ac84ea01a2cbe5ddbdd509.plot took: 6.675160646438599. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:40:02.780 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-02-02-15-3ec5bb650f464f5852340d9f757c0ece90950f4c4e9afed784d15aa4967a7285.plot took: 5.071416854858398. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:40:04.422 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-05-20-14-26-75d4d8c21282ca58bc29b08f6793b6e88f7fb2d01f1ac719fe70879aaf718c25.plot took: 6.713035821914673. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:40:13.436 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4b/plots/plot-k32-2021-06-03-11-41-db0401147b404a2cce2e1d8690f904f9c7c47f8c7c3d5d5fc80a57df3c97f0f1.plot took: 5.207667350769043. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:40:13.561 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-16-12-09-dce45bb1ae096055107dcd45ae059ed621c20c158f49c6168730d54e0a753fe1.plot took: 5.333298206329346. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:40:51.839 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-05-09-19-a6a22403009912d92674158ca7ec77836515d6c0dca2a0321cb32b5294385d02.plot took: 6.425107002258301. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:16.069 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n3a/plots/plot-k32-2021-05-24-11-46-f160483f20fd4d6458212fb179403e1f1464a41a2b5febf2088094661050c08e.plot took: 5.51015567779541. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:16.158 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-31-02-38-178757ca40960fef3ba25d5b269b1bdd62e7ab512e6b396927a41c41ab997390.plot took: 5.598696708679199. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:19.621 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-05-20-03-50-de708b2e058dc912208b809797240dc5f72a976c4bbac2aa20cf3eb536d1f298.plot took: 9.061970233917236. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:25.850 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-06-01-02-13-43542ad1b85dab1a2d6918bfe00b190a0337638283b39eb06b1b66e48f6c5c0f.plot took: 6.147296667098999. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:34.556 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-05-09-17-e5a1bd61725de4d9bada25ada5e3607e8a6ecc10163bcc778976a55e6d776a8f.plot took: 5.071340084075928. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:52.777 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-06-09-03-31-6cdaa3aa17088ce372c80864fc6c019081947e62d92d96237d9cc975dc6a003f.plot took: 5.507204055786133. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:41:53.364 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-01-02-01-f3257920bdbada18e4867b2af4d86244d1097ca5e22c30a39952cd5e93c233eb.plot took: 6.093885183334351. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:42:21.458 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-16-18-16-a91f97bd9c004ee7c8f473a1fd7eb018249ef3b7e24a050514d3444f002c0d56.plot took: 7.90155816078186. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:42:38.095 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n4a/plots/plot-k32-2021-05-25-14-05-2e80656254e56586843c5bd3fa8f70224b51ab2913a39ad66ca19f1303565a5c.plot took: 5.779198884963989. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:42:41.103 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-05-21-01-36-24d992e094c2ccad7aaef7cdc6d6003926d5251d0a85c56398ce2bf500a75f75.plot took: 8.787593364715576. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:42:57.673 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n3b/plots/plot-k32-2021-06-01-19-51-4b07ba5bf0370f16e4f2c2e99acb61dba10dfd6e45179c9b46f213263c5dee72.plot took: 6.7194366455078125. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:42:57.733 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/d/plots/plot-k32-2021-06-08-02-43-fe3f5873a8207cce9c3b16d6b7cf15b8d3e757f5a0bc0446f8055a5c46cf322a.plot took: 6.779289722442627. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:42:57.750 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-07-07-05-140c4d8be1cd0b2061fce71d7a84e601c6e4fbf6f93e40055ffc72db24ae509c.plot took: 6.796648025512695. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:43:15.813 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-05-20-14-26-75d4d8c21282ca58bc29b08f6793b6e88f7fb2d01f1ac719fe70879aaf718c25.plot took: 6.804082155227661. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:43:16.821 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-05-16-16-16-d8279b7ebbe45fefcc8e790d7792a92cedd0777fe54b2f0b94edcc500c1efe6b.plot took: 7.812391042709351. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:43:24.566 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1a/plots/plot-k32-2021-05-12-13-38-3936e1edf5a7d6b5b1126880577b6b3a9500e6468c3e12f613778733e8d67c41.plot took: 6.260419845581055. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:43:26.221 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/n1b/plots/plot-k32-2021-05-07-06-17-b1e9998f62cec1f6832be45425dac5c5b022e3e437948c7426d3465356051ebf.plot took: 7.9155638217926025. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:43:51.851 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-08-04-24-d54c3a232fcda1d7ed08c49837a6c685210572a4e57e066b842e568446709e6e.plot took: 5.220176696777344. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.20:2021-06-17T07:44:17.114 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-05-28-04-14-4cf9f4552724824fdd117e46f795bd7860500215a4bff4a0d26f950b2e6f9ee3.plot took: 5.315891265869141. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.21:2021-06-17T07:01:35.772 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-05-29-03-28-4c3eccd4c51f3aabdd82b60abc88f3416da3ac7095555654a8cdc21a9ab2e5a8.plot took: 5.765302896499634. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.22:2021-06-17T06:26:29.959 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-06-10-11-35-d747a35b234f56a4b08d2449955a859203e1b475f5ec4da78d0545c3f3f59afe.plot took: 6.357451915740967. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.23:2021-06-17T05:32:38.468 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-05-16-07-23-7df275051ef1485402f7035c1a85aae9ee81a5402f9b00d25efce99a46ae90a9.plot took: 16.825185775756836. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.23:2021-06-17T05:49:18.114 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/f/plots/plot-k32-2021-06-11-11-34-093fce30c87c492293ab6bd06c3946b4e1417e6991da5504ecb993fc89de7fb2.plot took: 5.4268622398376465. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.24:2021-06-17T05:11:34.694 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/e/plots/plot-k32-2021-05-13-13-39-d864a2daf55fbaf58540f72318d4534b0f03c43c9ec2c473895a786282d6f373.plot took: 5.2927916049957275. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.24:2021-06-17T05:12:09.301 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/c/plots/plot-k32-2021-06-15-02-26-f3c9322c4c87377bc770a4cb70c15f4a1f927791c50a23c04701b67a966db599.plot took: 6.208316326141357. This should be below 5 seconds to minimize risk of losing rewards.
/root/.chia/mainnet/log/debug.log.24:2021-06-17T05:17:15.484 harvester chia.harvester.harvester: WARNING Looking up qualities on /nas/b/plots/plot-k32-2021-06-08-22-34-b0d48ec3c322ab6309606b056861e60ae208096554671aaceca698de6201a6b6.plot took: 7.9665162563323975. This should be below 5 seconds to minimize risk of losing rewards.
#!/bin/bash
source /root/chia/chia-blockchain/activate
ECHO=/usr/bin/echo
CAT=/usr/bin/cat
CHIA=/root/chia/chia-blockchain/venv/bin/chia
WC=/usr/bin/wc
LS=/usr/bin/ls
TAIL=/usr/bin/tail
HEAD=/usr/bin/head
SORT=/usr/bin/sort
TAIL=/usr/bin/tail
DATE=`/usr/bin/date`
DU=/usr/bin/du
PLOTTIME=/root/bin/plottime
STRING=Total
GREP=/usr/bin/grep
PS=/usr/bin/ps
HOWMANY=10
LOGFILE=/root/.chia/mainnet/log/debug.log
LONGPLOTS=/tmp/longplots.tmp
CHIACONS=/tmp/chiacons.tmp
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- chia Wallet show --"
$ECHO "------------------------------------------------------------------"
$CHIA wallet show | $GREP -v fingerprint | $GREP -v height
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- chia farm summary --"
$ECHO "------------------------------------------------------------------"
$CHIA farm summary
$ECHO "
"
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- drive temp --"
$ECHO "------------------------------------------------------------------"
$TAIL -6 /var/log/drivetemp.log
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- Plot Details --"
$ECHO "------------------------------------------------------------------"
$DU -h /nas/n1a/plots
$DU -h /nas/n1b/plots
$DU -h /nas/n2a/plots
$DU -h /nas/n2b/plots
$DU -h /nas/n3a/plots
$DU -h /nas/n3b/plots
$DU -h /nas/n3c/plots
$DU -h /nas/n3d/plots
$DU -h /nas/n3e/plots
$DU -h /nas/n4a/plots
$DU -h /nas/n4b/plots
$DU -h /nas/a/plots
$DU -h /nas/b/plots
$DU -h /nas/c/plots
$DU -h /nas/d/plots
$DU -h /nas/e/plots
$DU -h /nas/f/plots
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- drive free --"
$ECHO "------------------------------------------------------------------"
$TAIL -18 /var/log/drivefree.log
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- MEMORY INFormation --"
$ECHO "------------------------------------------------------------------"
$CAT /proc/meminfo | $HEAD -n 10
$ECHO "
"
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- chia show network connections --"
$ECHO "------------------------------------------------------------------"
$CHIA show -c > $CHIACONS
$ECHO "FULL_NODE Connextions"
$GREP FULL $CHIACONS | $WC -l
$ECHO ""
$ECHO "WALLET Connextions"
$GREP WALLET $CHIACONS | $WC -l
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- chia show PLOTing Processeses --"
$ECHO "------------------------------------------------------------------"
$PS -elf | $GREP blockchain | $GREP -v grep
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- log eligible & HOW LONG --"
$ECHO "------------------------------------------------------------------"
LOGELIT=`$GREP plots were $LOGFILE | $WC -l `
LONGPLOT=`$GREP losing $LOGFILE`
$ECHO "debug 0: " $LOGELIT
for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
do
LOGELI=`$GREP plots were $LOGFILE.$CNT | $WC -l`
LONGPLOT=`$GREP losing $LOGFILE.$CNT | $WC -l`
$ECHO "debug $CNT: "$LOGELI
LOGELIT=$(($LOGELIT + $LOGELI))
LONGPLOTT=$(($LONGPLOTT + $LONGPLOT))
done
$ECHO "=================================================================="
$ECHO "TOTAL Log Eligible last 24 hours = " $LOGELIT
$ECHO "=================================================================="
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- PLOT Times --"
$ECHO "------------------------------------------------------------------"
$PLOTTIME
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- PLOTs PER DAY --"
$ECHO "------------------------------------------------------------------"
$CAT /var/log/plots.per.day
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- PLOT Total TIMES [a-e] --"
$ECHO "------------------------------------------------------------------"
$GREP "Total time" /var/log/plot*
$ECHO ""
$ECHO "
"
$ECHO "------------------------------------------------------------------"
$ECHO "-- Plot Process per drive [a-f] --"
$ECHO "------------------------------------------------------------------"
$ECHO $DATE "Drive B"
$ECHO "------------------------------------------------------------------"
$GREP phase /var/log/plotb.log | $TAIL -$HOWMANY
$ECHO ""
$ECHO ""
$ECHO $DATE "Drive C"
$ECHO "------------------------------------------------------------------"
$GREP phase /var/log/plotc.log | $TAIL -$HOWMANY
$ECHO ""
$ECHO ""
$ECHO $DATE "Drive D"
$ECHO "------------------------------------------------------------------"
$GREP phase /var/log/plotd.log | $TAIL -$HOWMANY
$ECHO ""
$ECHO $DATE "Drive E"
$ECHO "------------------------------------------------------------------"
$GREP phase /var/log/plote.log | $TAIL -$HOWMANY
$ECHO ""
$ECHO ""
$ECHO $DATE "Drive F"
$ECHO "------------------------------------------------------------------"
$GREP phase /var/log/plotf.log | $TAIL -$HOWMANY
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO "
"
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- CHIA Debug Log Warning / Error --"
$ECHO "------------------------------------------------------------------"
$ECHO `$LS -l $LOGFILE`
$ECHO "------------------------------------------------------------------"
$GREP -v INFO $LOGFILE | $GREP -v DOUBLE | $GREP -v losing
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- CHIA Debug Log Warning / Error --"
$ECHO "------------------------------------------------------------------"
$ECHO `$LS -l $LOGFILE.1`
$ECHO "------------------------------------------------------------------"
$GREP -v INFO $LOGFILE.1 | $GREP -v DOUBLE | $GREP -v losing
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- CHIA Debug Log Warning / Error --"
$ECHO "------------------------------------------------------------------"
$ECHO `$LS -l $LOGFILE.2`
$ECHO "------------------------------------------------------------------"
$GREP -v INFO $LOGFILE.2 | $GREP -v DOUBLE | $GREP -v losing
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- CHIA Debug Log Warning / Error --"
$ECHO "------------------------------------------------------------------"
$ECHO `$LS -l $LOGFILE.3`
$ECHO "------------------------------------------------------------------"
$GREP -v INFO $LOGFILE.3 | $GREP -v DOUBLE | $GREP -v losing
$ECHO ""
$ECHO ""
$ECHO "
"
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- CHIA Debug Plots taking too long past 24 hours --"
$ECHO "------------------------------------------------------------------"
#$GREP losing $LOGFILE > $LONGPLOTS
#$GREP losing $LOGFILE.[0-9] >> $LONGPLOTS
#$GREP losing $LOGFILE.1[0-9] >> $LONGPLOTS
#$GREP losing $LOGFILE.2[0-9] >> $LONGPLOTS
#$GREP losing $LOGFILE.3[0-9] >> $LONGPLOTS
#$GREP losing $LOGFILE.4[0-9] >> $LONGPLOTS
#$CAT $LONGPLOTS | $WC -l
$ECHO "LONGPLOTS = " $LONGPLOTT
$ECHO "------------------------------------------------------------------"
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO ""
$ECHO $DATE
$ECHO "------------------------------------------------------------------"
$ECHO "-- CHIA LONG PLOTS --"
$ECHO "------------------------------------------------------------------"
$ECHO ""
$CAT $LONGPLOTS
$ECHO ""
$ECHO ""
$ECHO ""
Plots Per Day… CHIA that is.
GREP=/usr/bin/grep
ECHO=/usr/bin/echo
AWK=/usr/bin/awk
CAT=/usr/bin/cat
SORT=/usr/bin/sort
WC=/usr/bin/wc
YEAR=2021
FILE=/var/log/totalplots
TFILE=/var/log/totalplots.sorted
$CAT $FILE | $AWK -F- ‘{ print $4”.”$5”.”$3 }’ | $SORT -n > $TFILE
for MONTH in 01 02 03 04 05 06 07 08 09 10 11 12
do
for DAY in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
do
X=`$CAT $TFILE |$GREP $MONTH.$DAY.$YEAR | $WC -l`
if ( test $X -ne 0)
then $ECHO $MONTH.$DAY.$YEAR” = “$X
fi
done
done