This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/setup-scripts/funds-checker.py

71 lines
2.5 KiB
Python
Raw Normal View History

2020-03-03 20:49:09 +00:00
#!/usr/bin/env python3
2020-03-09 18:54:41 +00:00
"""
health-checker runs simple health checks on a portal node using the siad API and
dispatches messages to a Discord channel.
"""
import discord, traceback
from bot_utils import setup, send_msg, siad, sc_precision
2020-03-05 17:07:37 +00:00
bot_token = setup()
2020-03-03 23:26:51 +00:00
client = discord.Client()
@client.event
async def on_ready():
await run_checks()
await client.close()
2020-03-03 20:49:09 +00:00
async def run_checks():
print("Running Skynet portal health checks")
try:
await check_health()
2020-03-03 20:49:09 +00:00
except: # catch all exceptions
trace = traceback.format_exc()
await send_msg(client, "```\n{}\n```".format(trace), force_notify=True)
2020-03-03 20:49:09 +00:00
2020-03-03 23:26:51 +00:00
# check_health checks that the wallet is unlocked, that it has at least 1
# allowance worth of money left, and if more than hald the allowance is spent. If
# all checks pass it sends a informational message.
async def check_health():
2020-03-09 19:59:21 +00:00
print("\nChecking wallet/funds health...")
wallet_get = siad.get_wallet()
renter_get = siad.get_renter()
2020-03-03 20:49:09 +00:00
if not wallet_get['unlocked']:
await send_msg(client, "Wallet locked", force_notify=True)
2020-03-03 23:26:51 +00:00
return
2020-03-03 20:49:09 +00:00
confirmed_coins = int(wallet_get['confirmedsiacoinbalance'])
unconfirmed_coins = int(wallet_get['unconfirmedincomingsiacoins'])
unconfirmed_outgoing_coins = int(wallet_get['unconfirmedoutgoingsiacoins'])
balance = confirmed_coins + unconfirmed_coins - unconfirmed_outgoing_coins
print("Balance: ", balance / sc_precision)
allowance = renter_get['settings']['allowance']
allowance_funds = int(allowance['funds'])
allocated_funds = int(renter_get['financialmetrics']['totalallocated'])
unallocated_funds = allowance_funds - allocated_funds
2020-03-03 23:26:51 +00:00
balance_msg = "Balance: `{} SC` Allowance Funds: `{} SC`".format(round(balance/sc_precision), round(allowance_funds/sc_precision))
alloc_msg = "Unallocated: `{} SC`\nAllocated: `{} SC`".format(round(unallocated_funds/sc_precision), round(allocated_funds/sc_precision))
2020-03-03 23:26:51 +00:00
# Send an alert if there is less than 1 allowance worth of money left.
if balance < allowance_funds:
await send_msg(client, "Wallet balance running low. \n{}`".format(balance_msg), force_notify=True)
2020-03-03 23:26:51 +00:00
return
# Alert devs when 1/2 the allowance is gone
if allocated_funds >= unallocated_funds:
await send_msg(client, "Allowance half spent: \n{}".format(alloc_msg), force_notify=True)
2020-03-03 23:26:51 +00:00
return
# Send an informational heartbeat if all checks passed.
await send_msg(client, "Health checks passed:\n{} \n{}".format(balance_msg, alloc_msg))
2020-03-03 20:49:09 +00:00
2020-03-03 23:26:51 +00:00
client.run(bot_token)