Pages:
Author

Topic: P2Pool Server List - page 22. (Read 106619 times)

hero member
Activity: 560
Merit: 500
March 21, 2012, 02:04:17 AM
#93
was a typo in my firewall rules. should be fine now.
Okay, I've added your pool.
It was a shame I had to round the fee's. xD

Looked fine on my screen resolution; looks bad on smaller.
newbie
Activity: 57
Merit: 0
March 21, 2012, 01:57:40 AM
#92
was a typo in my firewall rules. should be fine now.
hero member
Activity: 560
Merit: 500
March 21, 2012, 12:58:32 AM
#91
Chicago, Illinois::USA::66.90.82.155:9332::0.1::btc::CK p2pool::cereal7802



figured i would toss mine up for public use.
Doesn't seem like yours is public.
newbie
Activity: 57
Merit: 0
March 21, 2012, 12:29:03 AM
#90
Chicago, Illinois::USA::66.90.82.155:9332::0.1::btc::CK p2pool::cereal7802



figured i would toss mine up for public use.
hero member
Activity: 560
Merit: 500
March 20, 2012, 09:58:44 PM
#89
NothingG,

Nice page!

Showing the stale rate or expected payout would be a useful addition.. pools with lower than average stale rates will earn more for their users. There is a JSON feed for stale rates, but I had to modify the p2pool code to display the expected payout (see my sig). I setup a simple info page for p2pool that can print it out but it is not standard.
Thanks. Cheesy
And, if you want to give me the math you used to get the expected payout I'll add it to my site.

[Edit]: Something I didn't think about...I could just generated my own graphs using the JSON data I get. I'm not sure, just an idea I had.

Sure, I used code from somewhere else in p2pool.. it is this:
efficiency = "%.02f percent" % (((1 - my_stale_prop)/(1 - pool_stale_prop))*100,)

my_stale_prop is your stale rate, ie 0.05, pool_stale_prop is the pool stale rate, ie 0.10

Hmm I just saw that the standard local_stats feed is only for the past hour which would be quite variable. But still a little useful.
I'm trying to code this up in PHP/JSON but can't find a pool that has non-null stales. So, it's hard to base it off of something. :\

Ya that sucks.. few pools will have stales in the past hour. Quick! this guy has a stale:

http://p2pool.soon.it:9332/local_stats

I altered mine to track them forever.. my info page has similiar data and is currently showing 0.0's. 0.5 == 50%


Code:
$efficiency = (((1-$stalePropHr->{'stale'})/(1-$globalStats->{"pool_stale_prop"}))*100);
Does that seem right? I've pushed this to my nodes list, so if it looks wrong let me know.

I don't understand your code where it shows:
Code:
"%.02f percent" % 


[Edit]: Just added some JavaScript to the nodes list for even faster page-load times. "Page generated in 4.9437 seconds"
Now, if I can just get it under 1 second...lol.

[Edit 2]: Forgot to cache 1 remote call and saved a LOAD of the time. "Page generated in 1.1933 seconds."
Still not under 1 second load times. xD
sr. member
Activity: 604
Merit: 250
March 20, 2012, 08:46:42 PM
#88
NothingG,

Nice page!

Showing the stale rate or expected payout would be a useful addition.. pools with lower than average stale rates will earn more for their users. There is a JSON feed for stale rates, but I had to modify the p2pool code to display the expected payout (see my sig). I setup a simple info page for p2pool that can print it out but it is not standard.
Thanks. Cheesy
And, if you want to give me the math you used to get the expected payout I'll add it to my site.

[Edit]: Something I didn't think about...I could just generated my own graphs using the JSON data I get. I'm not sure, just an idea I had.

Sure, I used code from somewhere else in p2pool.. it is this:
efficiency = "%.02f percent" % (((1 - my_stale_prop)/(1 - pool_stale_prop))*100,)

my_stale_prop is your stale rate, ie 0.05, pool_stale_prop is the pool stale rate, ie 0.10

Hmm I just saw that the standard local_stats feed is only for the past hour which would be quite variable. But still a little useful.
I'm trying to code this up in PHP/JSON but can't find a pool that has non-null stales. So, it's hard to base it off of something. :\

Ya that sucks.. few pools will have stales in the past hour. Quick! this guy has a stale:

http://p2pool.soon.it:9332/local_stats

Code:
{
    "miner_hash_rates": {
        "spiccioli.m2": 672878209.7066668
    },
    "my_stale_proportions_in_last_hour": {
        "orphan_stale": 0.5,
        "stale": 0.5,
        "dead_stale": 0
    },
    "my_hash_rates_in_last_hour": {
        "note": "DEPRECATED",
        "actual": 1789594554.303134,
        "rewarded": 981791456.874636,
        "nonstale": 894797277.151567
    },
    "miner_dead_hash_rates": {
        "spiccioli.m2": 21474836.48
    },
    "my_share_counts_in_last_hour": {
        "doa_stale_shares": 0,
        "stale_shares": 1,
        "orphan_stale_shares": 1,
        "shares": 2,
        "unstale_shares": 1
    }
}

I altered mine to track them forever.. my info page has similiar data and is currently showing 0.0's. 0.5 == 50%

hero member
Activity: 560
Merit: 500
March 20, 2012, 08:01:49 PM
#87
NothingG,

Nice page!

Showing the stale rate or expected payout would be a useful addition.. pools with lower than average stale rates will earn more for their users. There is a JSON feed for stale rates, but I had to modify the p2pool code to display the expected payout (see my sig). I setup a simple info page for p2pool that can print it out but it is not standard.
Thanks. Cheesy
And, if you want to give me the math you used to get the expected payout I'll add it to my site.

[Edit]: Something I didn't think about...I could just generated my own graphs using the JSON data I get. I'm not sure, just an idea I had.

Sure, I used code from somewhere else in p2pool.. it is this:
efficiency = "%.02f percent" % (((1 - my_stale_prop)/(1 - pool_stale_prop))*100,)

my_stale_prop is your stale rate, ie 0.05, pool_stale_prop is the pool stale rate, ie 0.10

Hmm I just saw that the standard local_stats feed is only for the past hour which would be quite variable. But still a little useful.
I'm trying to code this up in PHP/JSON but can't find a pool that has non-null stales. So, it's hard to base it off of something. :\
sr. member
Activity: 604
Merit: 250
March 20, 2012, 12:26:50 PM
#86
NothingG,

Nice page!

Showing the stale rate or expected payout would be a useful addition.. pools with lower than average stale rates will earn more for their users. There is a JSON feed for stale rates, but I had to modify the p2pool code to display the expected payout (see my sig). I setup a simple info page for p2pool that can print it out but it is not standard.
Thanks. Cheesy
And, if you want to give me the math you used to get the expected payout I'll add it to my site.

[Edit]: Something I didn't think about...I could just generated my own graphs using the JSON data I get. I'm not sure, just an idea I had.

Sure, I used code from somewhere else in p2pool.. it is this:
efficiency = "%.02f percent" % (((1 - my_stale_prop)/(1 - pool_stale_prop))*100,)

my_stale_prop is your stale rate, ie 0.05, pool_stale_prop is the pool stale rate, ie 0.10

Hmm I just saw that the standard local_stats feed is only for the past hour which would be quite variable. But still a little useful.
hero member
Activity: 560
Merit: 500
March 20, 2012, 11:51:20 AM
#85
NothingG,

Nice page!

Showing the stale rate or expected payout would be a useful addition.. pools with lower than average stale rates will earn more for their users. There is a JSON feed for stale rates, but I had to modify the p2pool code to display the expected payout (see my sig). I setup a simple info page for p2pool that can print it out but it is not standard.
Thanks. Cheesy
And, if you want to give me the math you used to get the expected payout I'll add it to my site.

[Edit]: Something I didn't think about...I could just generated my own graphs using the JSON data I get. I'm not sure, just an idea I had.
sr. member
Activity: 604
Merit: 250
March 20, 2012, 11:42:29 AM
#84
NothingG,

Nice page!

Showing the stale rate or expected payout would be a useful addition.. pools with lower than average stale rates will earn more for their users. There is a JSON feed for stale rates, but I had to modify the p2pool code to display the expected payout (see my sig). I setup a simple info page for p2pool that can print it out but it is not standard.
hero member
Activity: 560
Merit: 500
March 20, 2012, 03:46:43 AM
#83

[Edit 4]: Added current hash rates per pool.
Gotta <3 code...gotta love not sleeping. *snooze*


NothingG,

hash per pool means nothing, every p2pool entry point is part of p2pool as a whole, the only hash rate that matters is p2pool hash rate.

You don't get any advantage choosing an entry point with 5GHs instead of one with 500MHs.

spiccioli.


Maybe people want to spread the load. If X p2pool has 2Ghash/s but Y p2pool only has 1Ghash/s, I might want to go to Y to spread the load.
That's the only reason I saw it to be useful. It can't do any harm, it's public information. Wink
legendary
Activity: 1378
Merit: 1003
nec sine labore
March 20, 2012, 03:45:10 AM
#82

[Edit 4]: Added current hash rates per pool.
Gotta <3 code...gotta love not sleeping. *snooze*


NothingG,

hash per pool means nothing, every p2pool entry point is part of p2pool as a whole, the only hash rate that matters is p2pool hash rate.

You don't get any advantage choosing an entry point with 5GHs instead of one with 500MHs.

spiccioli.

hero member
Activity: 560
Merit: 500
March 19, 2012, 10:41:06 PM
#81
Okay, I'm pulling a copy of my site to code on.
The power where I live is going on and off, thank god for laptops. Grin

When I get back or a few hours if the internet is still up, I should have:

1) Pool Cached Images Locally (Faster Page Loads)
2) Smoother Theme
3) Registration System (kind of a last thing I'll add, but at least a submission page)

[Edit 1]: Just added Image Caching. Still working on loading bug if the servers are offline.

[Edit 2]: Just figured out how to check if it is a BTC or LTC pool.
Code:
$payoutAdd = file_get_contents("http://SERVER:PORT/payout_addr");
$poolType = substr($payoutAdd, 1, 1);
if($poolType == "L") $poolType = "LTC"; elseif($poolType=="1") $poolType = "BTC"; else $poolType = "ERR: Detect Pool Type";

[Edit 3]: Added search (not very well implemented to the site...but it gets the job done):
http://nodes.p2pmine.com/?poolType=BTC
http://nodes.p2pmine.com/?poolType=LTC
-Image Caching is moved to every 5 minutes. If you want/need to see more up-to-date images, go check out the pool by clicking on the image's links.

[Edit 4]: Added current hash rates per pool.
Gotta <3 code...gotta love not sleeping. *snooze*

[Edit 5]: From LTC: Page generated in 8.2375 seconds ->  LTC: Page generated in 4.8374 seconds.
After adding the page generated time, I am able to code a little better. I'll try to get 85% of page loads bellow 2 seconds if I can. For now; Sleep...
hero member
Activity: 742
Merit: 500
March 19, 2012, 04:12:14 PM
#80
I'll see if I can get in contact with forrestv and see if he can code a pool version to be public.
That way it will be whoever is the most up-to-date with the longest up-time.
This is a great idea.
sr. member
Activity: 459
Merit: 250
March 19, 2012, 02:07:47 PM
#79
I was just about to open a request ticket on p2pool's git page for this.  Wink
hero member
Activity: 560
Merit: 500
March 19, 2012, 02:05:47 PM
#78
Nice work on the nodes page NothinG!
Thanks. Smiley

Hi NothinG,

I'm not sure the uptime on your page is very relevant (at least without a comment): usually you look for high uptimes, but for p2pool you probably want low uptimes (which means the node is probably running a recent p2pool version).
For example since yesterday my node checks each day if the git code is updated and if it is, it starts a new instance of p2pool, wait for it to be ready for miners and kill the old one so that miners reconnect to a node running up to date code. So if forrestv updates the code everyday my node will never have more than 1 day of uptime...
I'll see if I can get in contact with forrestv and see if he can code a pool version to be public.
That way it will be whoever is the most up-to-date with the longest up-time.
hero member
Activity: 896
Merit: 1000
March 19, 2012, 01:49:35 PM
#77
Nice work on the nodes page NothinG!
Thanks. Smiley

Hi NothinG,

I'm not sure the uptime on your page is very relevant (at least without a comment): usually you look for high uptimes, but for p2pool you probably want low uptimes (which means the node is probably running a recent p2pool version).
For example since yesterday my node checks each day if the git code is updated and if it is, it starts a new instance of p2pool, wait for it to be ready for miners and kill the old one so that miners reconnect to a node running up to date code. So if forrestv updates the code everyday my node will never have more than 1 day of uptime...
hero member
Activity: 560
Merit: 500
March 19, 2012, 12:31:08 PM
#76
Nice work on the nodes page NothinG!
Thanks. Smiley
vip
Activity: 756
Merit: 503
March 19, 2012, 10:28:47 AM
#75
Nice work on the nodes page NothinG!
hero member
Activity: 560
Merit: 500
March 19, 2012, 04:26:00 AM
#74
My node appears to be back online, ticking over @ around 800-950Mh/s and finding shares again - looks like something had got badly corrupted before when I was running 0.5.3.1
New bitcoin install, new p2pool install, new blockchain download, working again  Grin
I just added your pool to my server list.
Pages:
Jump to: