From f3de94f5c0219d360f1efce4846b888c20a34364 Mon Sep 17 00:00:00 2001 From: rjsears Date: Mon, 9 Aug 2021 10:19:12 -0700 Subject: [PATCH] Version 0.94 Readme created --- chiaplot/readme.md | 110 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 chiaplot/readme.md diff --git a/chiaplot/readme.md b/chiaplot/readme.md new file mode 100644 index 0000000..4e30f5f --- /dev/null +++ b/chiaplot/readme.md @@ -0,0 +1,110 @@ +

+ Chia Plot Manager
+ + Chia Plot, Drive Manager, Coin Monitor & Auto Drive (V0.94 - August 8th, 2021) +

+

+Multi Server Chia Plot and Drive Management Solution +

+ +

+ + +### Basic Installation and Configuration Instructions + +Please read the notes below from the config file instructions as most of these are self explanatory: +

+ +``` +# Once you have made the necessary modifications to this file, change this to +# True. +configured: False + +# Enter the hostname of this server: +hostname: chiaplot01 + +# Are we plotting for pools (prepends `portable.` to the plot name) +pools: True + +# Enter Logging Information +logging: True +log_level: DEBUG + +# I use MadMax to do my plotting, but this should work for anything. This +# has NOTHING to do with setting up your plotting configuration and is +# only used for monitoring drive space for notifications. Set to True if +# locally plotting and configure the rest of the settings. +local_plotter: + active: True + + # Make sure to use the actual mountpoint not the device. + temp_dirs: + dirs: + - /mnt/nvme/drive0 + - /mnt/nvme/drive1 + - /mnt/nvme/drive2 + - /mnt/nvme/drive3 + # What critical usage % should we send an error? Do not make this too low + # or you will get nuisance reports. + critical: 95 + critical_alert_sent: False + + # This is the `-d` directory that you are using for your plots. Currently + # we only support a single drive here for monitoring. MUST have the + # trailing '/'. + dst_dirs: + dirs: + - /mnt/ssdraid/array0/ + + # At what % utilization do we send an error? + critical: 95 + critical_alert_sent: False + +# If you are running multiple remote harvesters, +# and enter their hostnames below.These hostnames +# should be configured for passwordless ssh and should be configured +# such that when you ping the hostname, it goes across the fastest +# interface you have between these harvesters. Set to True if you +# have multiple harvesters and want to automate sending plots to +# the Harvester with the least number of plots. If you are only +# running a single harvester, just list its hostname here. +remote_harvesters: + - chianas01 + - chianas02 + - chianas03 + +# This is our high speed, internal Network interface name that we send plots over +network_interface: eno1 + + +# This is where we set up our notifications +notifications: + active: True + methods: + pb: False + email: True + sms: False + types: + new_plot_drive: True + daily_update: True + per_plot: True + warnings: True + # What email addresses will get the emails? + emails: + - someone@gmail.com + - someoneelse@gmail.com + # What phones numbers will received the SMS text messages? Include '+1' + phones: + - '+18584140000' + + # These are your notification account settings. For email, you must configure + # your locate MTA. Installer installs Postfix by default. Twilio (SMS) requires + # a paid account, PushBullet is free. + accounts: + twilio: + from: '+18582640000' + account: your_account_id + token: your_account_token + pushBullet: + api: your_pushbullet_api_token +```