Hello, Travis
Weewx does not actually use rainRate for what it sends to the WU. Instead, it sums the amount of rain over the last hour, and sends that.
So, let's see what's in the database. I'm assuming your time zone is EDT.
If you have not done so, first install the utility sqlite3:
sudo apt-get install sqlite3
Then run it against your sqlite database:
sqlite3 /var/lib/weewx/weewx.sdb
sqlite> select datetime(dateTime, 'unixepoch', 'localtime'), rain from archive where dateTime>= 1458100800 and dateTime <= 1458104400;
sqlite> .quit
If I've done the time zone math correctly, this will show all the rain values between midnight and 1am your time for today (3/16). Please post the results.