Updated Bash Script to Monitor Your Witness Node by lukestokes

View this thread on steempeak.com
· @lukestokes ·
Updated Bash Script to Monitor Your Witness Node
<h1>Hello Witnesses!</h1>

I made a little tweak to <a href="https://steemit.com/witness-category/@lukestokes/bash-script-to-monitor-your-witness-node">my witness node monitoring script</a> today as I've received two false positives recently. One of them was after midnight this past weekend while camping with the family. Yes, I opened up my laptop in the tent, tethered through my phone, and logged in to find everything was fine. Grr.

Here's the diff of the changes:

```
~/steem-docker # diff check_status.sh check_status_2017-09-10 
21c21
< #latest_block="failtest"
---
> #latest_block=""
25d24
<   rm -f possible_problem.txt
27,33d25
< fi
< 
< if [ ! -f possible_problem.txt ]; then
<     now=$(date)
<     echo  $latest_block > possible_problem.txt
<     echo  $latest_block > "past_issues_$now.txt"
<     exit 1
```

I basically added a second chance test, and I'm recording failures to a dated file for curiosity's sake. It's quick and dirty, but works fairly well.

Here's the full updated script:

```
#!/usr/bin/env bash
if [ -f notification_sent.txt ]; then
    exit 1
fi

if [ ! -f last_block.txt ]; then
    echo "1" > last_block.txt
    exit 1
fi

last_saved_block=$(< last_block.txt)
latest_log_entry=$(./run.sh logs | tail -n 1)

if [[ $latest_log_entry == *"Generated block"* ]]; then
    echo "We just mined a block. Exiting."
    exit 1
fi

latest_block=$(echo $latest_log_entry | awk '{print $11;}')
# to test, uncomment this next line:
#latest_block="failtest"
if [[ "$latest_block" -gt "$last_saved_block" ]]; then
  echo "We're good. Latest block is... $latest_block"
  echo $latest_block > last_block.txt
  rm -f possible_problem.txt
  exit 1
fi

if [ ! -f possible_problem.txt ]; then
    now=$(date)
    echo  $latest_block > possible_problem.txt
    echo  $latest_block > "past_issues_$now.txt"
    exit 1
fi

# Houston, we have a problem!

echo "There seems to be a problem."
echo "Last saved block: $last_saved_block"
echo "Latest block: $latest_block"

python sendnotice.py

echo -e "Something went wrong. Here's what we got for the latest block: $latest_block \r\n" > notification_sent.txt
```

Now, if you get two errors in a row (I cron this script for every minute), then you'll get the text message/email instead of with every random funky error notice steemd spits out which happens to line up with the moment you test for successful blocks coming in.

You can see my original post here: <a href="https://steemit.com/witness-category/@lukestokes/bash-script-to-monitor-your-witness-node">Bash Script to Monitor Your Witness Node</a>.

Steem on!

-----

<p>
    <div class="pull-left">
        <a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in"><img src="https://storage.googleapis.com/steemimgimgs/2016/10/23/luke_stokes_head_shot31b50.png" /></a>
    </div>
    <em><a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in">Luke Stokes</a> is a father, <a href="https://steemit.com/@corinnestokes">husband</a>, <a href="https://www.foxy.io/">business owner</a>, programmer, and voluntaryist who wants to help create a world we all want to live in. Visit <a href="http://understandingblockchainfreedom.com/">UnderstandingBlockchainFreedom.com</a></em>
</p>

<center>[![](https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/commented.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/votes.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/70x80/http://steemitboard.com/@lukestokes/posts.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/100x80/http://steemitboard.com/@lukestokes/level.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/70x80/http://steemitboard.com/@lukestokes/comments.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/voted.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/payout.png?v=20170910)](http://steemitboard.com/board.html?user=lukestokes)</center>

<center><sub><a href="https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth">I'm a Witness</a>! Please <a href="https://steemit.com/~witnesses">vote for @lukestokes.mhth</a></sub></center><center><a href="https://steemit.com/~witnesses" alt="Please vote for @lukestokes.mhth"><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/321c474e-2f46-4750-a426-4df6f842396f/00003787.png"></a></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 75 others
properties (23)
post_id12,497,700
authorlukestokes
permlinkupdated-bash-script-to-monitor-your-witness-node
categorywitness-category
json_metadata"{"app": "steemit/0.1", "format": "markdown", "links": ["https://steemit.com/witness-category/@lukestokes/bash-script-to-monitor-your-witness-node", "https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in", "https://steemit.com/@corinnestokes", "https://www.foxy.io/", "http://understandingblockchainfreedom.com/", "http://steemitboard.com/board.html?user=lukestokes", "https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth", "https://steemit.com/~witnesses"], "image": ["https://storage.googleapis.com/steemimgimgs/2016/10/23/luke_stokes_head_shot31b50.png"], "tags": ["witness-category"]}"
created2017-09-10 22:20:09
last_update2017-09-10 22:20:09
depth0
children21
net_rshares9,617,983,955,230
last_payout2017-09-17 22:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4,847
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout0.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (139)
@sports-2018 ·
Thanks for sharing... Love it.
properties (22)
post_id12,497,813
authorsports-2018
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170910t222240048z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-10 22:22:39
last_update2017-09-10 22:22:39
depth1
children0
net_rshares0
last_payout2017-09-17 22:22:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation194,486,243,893
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rsarvas ·
How much upkeep does a Witness Node take once it is up and running?
properties (22)
post_id12,498,849
authorrsarvas
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170910t224335696z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-10 22:43:33
last_update2017-09-10 22:43:33
depth1
children2
net_rshares0
last_payout2017-09-17 22:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length67
author_reputation23,144,321,016
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@lukestokes ·
$0.02
Not too much, if you're on a good hosting provider. It's more like a 24-hour on call setup. Also, you have to be involved and engaged with the witness discussions in chat and here on the site. It's kind if a labor of love that also rewards you, which is nice. Check @timcliff's weekly resorts to get a feel for what efforts witnesses put in.
👍  
properties (23)
post_id12,504,292
authorlukestokes
permlinkre-rsarvas-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t003242332z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "users": ["timcliff"], "tags": ["witness-category"]}"
created2017-09-11 00:32:42
last_update2017-09-11 00:32:42
depth2
children1
net_rshares7,766,913,490
last_payout2017-09-18 00:32:42
cashout_time1969-12-31 23:59:59
total_payout_value0.015 SBD
curator_payout_value0.005 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length341
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rsarvas ·
Thanks for the info. I'll check that out.
properties (22)
post_id12,679,779
authorrsarvas
permlinkre-lukestokes-re-rsarvas-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170912t225608604z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-12 22:56:06
last_update2017-09-12 22:56:06
depth3
children0
net_rshares0
last_payout2017-09-19 22:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length41
author_reputation23,144,321,016
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bien · (edited)
$0.96
Ooops! Another witnesses on my list..@lukestokes.mhth

![Screenshot_20170911_071343.png](https://steemitimages.com/DQmcsMeAS5MmWTvdxznDRtuEf9j2jruq2nKF6GkpMTUY7NG/Screenshot_20170911_071343.png)
👍  , , ,
properties (23)
post_id12,500,259
authorbien
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170910t231453113z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmcsMeAS5MmWTvdxznDRtuEf9j2jruq2nKF6GkpMTUY7NG/Screenshot_20170911_071343.png"], "tags": ["witness-category"]}"
created2017-09-10 23:10:39
last_update2017-09-10 23:13:03
depth1
children2
net_rshares347,012,998,366
last_payout2017-09-17 23:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.724 SBD
curator_payout_value0.238 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length194
author_reputation115,996,382,246,766
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@lukestokes ·
BOOM!!!

Thank you for your support. :)
properties (22)
post_id12,503,893
authorlukestokes
permlinkre-bien-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t002529409z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 00:25:30
last_update2017-09-11 00:25:30
depth2
children1
net_rshares0
last_payout2017-09-18 00:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length39
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bien ·
As always sir! Looking forward to your vision!
properties (22)
post_id12,505,647
authorbien
permlinkre-lukestokes-re-bien-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t010353206z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 00:59:39
last_update2017-09-11 00:59:39
depth3
children0
net_rshares0
last_payout2017-09-18 00:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation115,996,382,246,766
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptokeepr ·
$0.95
I appreciate the work that you and the other witnesses put into maintaining this platform. You were one of the first witnesses I voted for two reasons--1) you give pretty consistent updates and 2) you're  one of the first people here I interacted with who is a witness.
👍  , ,
properties (23)
post_id12,504,643
authorcryptokeepr
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t003912655z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 00:39:12
last_update2017-09-11 00:39:12
depth1
children4
net_rshares343,968,788,389
last_payout2017-09-18 00:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.718 SBD
curator_payout_value0.235 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length269
author_reputation12,849,578,706,819
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@lukestokes ·
Ah, very cool. Thank you. :)
properties (22)
post_id12,506,827
authorlukestokes
permlinkre-cryptokeepr-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t012250315z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 01:22:51
last_update2017-09-11 01:22:51
depth2
children3
net_rshares0
last_payout2017-09-18 01:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptokeepr ·
Just out of curiosity and for my own learning....did you decline payout on this post? I noticed the payout amount appears to be crossed out.
properties (22)
post_id12,536,353
authorcryptokeepr
permlinkre-lukestokes-re-cryptokeepr-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t102954182z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 10:29:51
last_update2017-09-11 10:29:51
depth3
children2
net_rshares0
last_payout2017-09-18 10:29:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length140
author_reputation12,849,578,706,819
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@alketcecaj ·
$0.02
Hi @lukestrokes . Is there a guide or tutorial that will help me to become a witnes ?
👍  
properties (23)
post_id12,520,069
authoralketcecaj
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t054530863z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "users": ["lukestrokes"], "tags": ["witness-category"]}"
created2017-09-11 05:45:30
last_update2017-09-11 05:45:30
depth1
children2
net_rshares9,226,280,963
last_payout2017-09-18 05:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.018 SBD
curator_payout_value0.006 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation2,411,138,858,071
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@lukestokes ·
Why do you want to become a witness?

(And yes, there are a number of them if you search around but it's not quite like just putting up a mining server. It's more like running for political office.)
👍  
properties (23)
post_id12,551,629
authorlukestokes
permlinkre-alketcecaj-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t141614250z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 14:16:15
last_update2017-09-11 14:16:15
depth2
children1
net_rshares1,275,844,317
last_payout2017-09-18 14:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length198
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@alketcecaj ·
I see ! Ok I will get informed better about this political office :-) Since then have a nice week.
properties (22)
post_id12,552,540
authoralketcecaj
permlinkre-lukestokes-re-alketcecaj-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170911t142810108z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-11 14:28:09
last_update2017-09-11 14:28:09
depth3
children0
net_rshares0
last_payout2017-09-18 14:28:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length98
author_reputation2,411,138,858,071
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@charles1 ·
Thanks for the update, glad that I voted for you...thanks for your support too...more success
👍  
properties (23)
post_id12,561,945
authorcharles1
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-2017911t182443135z
categorywitness-category
json_metadata"{"tags": [], "format": "markdown+html", "app": "chainbb/0.3"}"
created2017-09-11 16:24:45
last_update2017-09-11 16:24:45
depth1
children0
net_rshares6,379,579,620
last_payout2017-09-18 16:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length93
author_reputation73,564,225,445,964
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@vm2904 ·
$0.12
@lukestokes  -  **Hehehe - I understand nothing about Bash scripts but can imagine your frustration at being disturbed while of a camping weekend with family!!**
Someday - I will understand more on witness nodes and bash scripts - I am reading up.   By the way - am now able to do more stuff on SQL, inspired by your comments and your reports!  Thanks a ton.

Regards,
[![vm2904](https://steemitimages.com/DQmX7Azwc4E2dj92DqHKKdiRw96gRsgaUuo7STWPGJNDw23/image.png)](https://steemit.com/@vm2904)
👍  
properties (23)
post_id12,618,576
authorvm2904
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170912t082313864z
categorywitness-category
json_metadata"{"links": ["https://steemit.com/@vm2904"], "app": "steemit/0.1", "users": ["lukestokes"], "image": ["https://steemitimages.com/DQmX7Azwc4E2dj92DqHKKdiRw96gRsgaUuo7STWPGJNDw23/image.png"], "tags": ["witness-category"]}"
created2017-09-12 08:24:12
last_update2017-09-12 08:24:12
depth1
children2
net_rshares43,842,625,365
last_payout2017-09-19 08:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.124 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length494
author_reputation25,442,252,331,525
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@lukestokes ·
Very cool! I've been doing SQL for so long it's become a comfortable language for me. Things get really fun when I start building SQL scripts to generate SQL scripts (for mass inserts and updates of specific records). Fun stuff for nerds like me. :)
properties (22)
post_id12,638,658
authorlukestokes
permlinkre-vm2904-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170912t132947488z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-12 13:29:45
last_update2017-09-12 13:29:45
depth2
children1
net_rshares0
last_payout2017-09-19 13:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length249
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vm2904 · (edited)
$0.28
Ouch - SQL scripts to write SQL scripts?   Just when I start feelings that I learnt something, you go and say something like that and I feel 'illiterate' again.  Lol.   Well - what is life if there is nothing left to learn !

Note to self - ( apart from writing better blogs) - Nose to grindstone again !!  😄😄
👍  , , , , , , , , ,
properties (23)
post_id12,642,613
authorvm2904
permlinkre-lukestokes-2017912t194721878z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "format": "markdown+html", "community": "esteem", "tags": ["witness-category"]}"
created2017-09-12 14:17:39
last_update2017-09-12 14:22:51
depth3
children0
net_rshares104,711,438,698
last_payout2017-09-19 14:17:39
cashout_time1969-12-31 23:59:59
total_payout_value0.276 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length309
author_reputation25,442,252,331,525
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (10)
@jerrybanfield ·
$0.05
Very nice Luke I was just looking for a script to get this done!  I appreciate you making it all available here and updating it to limit false positives!
👍  , ,
properties (23)
post_id12,716,267
authorjerrybanfield
permlinkre-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170913t102333529z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-13 10:23:33
last_update2017-09-13 10:23:33
depth1
children1
net_rshares17,626,276,805
last_payout2017-09-20 10:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.049 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length153
author_reputation358,463,090,245,284
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@lukestokes ·
Let me know if you have any questions getting it working.
properties (22)
post_id12,728,863
authorlukestokes
permlinkre-jerrybanfield-re-lukestokes-updated-bash-script-to-monitor-your-witness-node-20170913t133217772z
categorywitness-category
json_metadata"{"app": "steemit/0.1", "tags": ["witness-category"]}"
created2017-09-13 13:32:18
last_update2017-09-13 13:32:18
depth2
children0
net_rshares0
last_payout2017-09-20 13:32:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length57
author_reputation395,063,281,398,324
root_title"Updated Bash Script to Monitor Your Witness Node"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000