I knocked together a script to go through the transaction history for a given address, filter out the pool transactions, add them up, and chart them so you can more easily see what you're making:
For P2Pool or solo mining, use this type of URL:
http://alfter.us/income.php?addr=<your-bitcoin-address>For other pools, use this type of URL:
http://alfter.us/income.php?addr=<your-bitcoin-address>&src=<pool-bitcoin-address>The second address is where your pool receives its generated coins; you can get this from blockchain.info by digging back through the transaction history for recently-mined coin. (For instance, Eclipse receives its generated coins at 1Baf75Ferj6A7AoN565gCQj9kGWbDMHfN9.) A recursive search is done on transactions on your address to filter out those which can be traced back to your pool. It's probably not perfect; for instance, coins sent to your address by someone else that originated at some point at the same pool will be counted.
For a couple of examples, here's what I made with P2Pool:
http://alfter.us/income.php?addr=1N6UPydscNkUAL6ab1XaJ9i1hTV17EFr67...and here's what I've gotten so far with Eclipse:
http://alfter.us/income.php?addr=1NgYDzGuHrJUmRSocfScYgBuGwsuvBB9Kz&src=1Baf75Ferj6A7AoN565gCQj9kGWbDMHfN9&simple=trueIt will give you your total income to date (in
BTC and $, the latter based on the current MtGox bid price) and graphs of the last 30 days' daily income and 30 weeks' weekly income. Source information is from BlockExplorer and Blockchain.info.
P2Pool and solo-mining results will come up much more quickly than results for other pools, due to the aforementioned recursive search.
Update: Since the recursive-search feature is so slow that PHP can time out, you might have better luck appending "&simple=true" to your mining-pool query to disable it. So long as the only income at that address is mining income (no change received back from a transaction, no income from other sources), the graph will still be an accurate indication of mining income. In this case, src can be any non-empty string.