Pages:
Author

Topic: cryptoGlance [v2.1] :: Open-source, self-hosted, multi-rig monitoring tool! - page 6. (Read 130259 times)

legendary
Activity: 1736
Merit: 1006
any way you can add one of those back to top arrows that scroll down with you and when you click it the page goes back to the top?

err.... would that help ?



 Roll Eyes Roll Eyes Roll Eyes Tongue
most of the time i forget i have a keyboard.. lol
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
any way you can add one of those back to top arrows that scroll down with you and when you click it the page goes back to the top?

err.... would that help ?



 Roll Eyes Roll Eyes Roll Eyes Tongue
legendary
Activity: 1736
Merit: 1006
any way you can add one of those back to top arrows that scroll down with you and when you click it the page goes back to the top?
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
Yes Mike, it does change both the order in the overview and the individual rig panels.

Pretty easy fix and convenient when adding new rigs.

Anyway, just change the order of the rigs in the file, refresh the UI and off you go !
legendary
Activity: 1274
Merit: 1000
Found it !!![/b]

C:\cryptoGlance\application\user_data\configs\miners.json


and modified the order of the rigs directly in the file :p

That's a good find, does it change the order the panels appear in the application, also, or just on the overview panel?  I have always wanted the panels to be draggable so you could arrange them.
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
I do.

I had a look at the application files, but it's kinda above my skills to make too much modifications :p

I managed to get the pool overview at the top without breaking anything Smiley

Found it !!!


C:\cryptoGlance\application\user_data\configs\miners.json


and modified the order of the rigs directly in the file :p
legendary
Activity: 1736
Merit: 1006
hello,

I'm really looking forward a version where I can re-arrange my rigs, instead of having to remove and re-add them in the correct order :p



If I want my 2nd S5 to be on the 2nd line, I have to removed everything except S5_1 and re-add them

it might be a little easier then that..
do you use the windows version of cryptoglance?
 
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
hello,

I'm really looking forward a version where I can re-arrange my rigs, instead of having to remove and re-add them in the correct order :p



If I want my 2nd S5 to be on the 2nd line, I have to removed everything except S5_1 and re-add them
sr. member
Activity: 298
Merit: 250
I would love to see columns user selectable in all the frames, would be cool to be able to customize.

That's the plan Smiley Ideally every table would have customized columns
legendary
Activity: 1274
Merit: 1000
Ok, I knew I saw something in this thread earlier and I found it:

https://bitcointalksearch.org/topic/m.13113378

But I'm definitely too lazy to go through all the steps just to add that "bestShare" column" Cheesy Cheesy Cheesy

Also, if you could add in the next release a separator for "thousands" in the best share, that'll be great Smiley

e.g.: xxx'xxx'xxx'xxx instead of xxxxxxxxxxxx

I tried the steps in that post to add columns, but it was written before some changes were made by cryptoglance (added highest ever temp.) and the steps in that post no longer produce a working table.  I tried twice and it didn't work either time, has anyone else tried with version 2.2.x?

I would love to see columns user selectable in all the frames, would be cool to be able to customize.
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
Will do! I'm hoping to get back into CryptoGlance development by next week. Dealing with a new job that's sucked up all my time and energy Sad

Well a new job is usually a good news Smiley
sr. member
Activity: 298
Merit: 250
Ok, I knew I saw something in this thread earlier and I found it:

https://bitcointalksearch.org/topic/m.13113378

But I'm definitely too lazy to go through all the steps just to add that "bestShare" column" Cheesy Cheesy Cheesy

Also, if you could add in the next release a separator for "thousands" in the best share, that'll be great Smiley

e.g.: xxx'xxx'xxx'xxx instead of xxxxxxxxxxxx

Will do! I'm hoping to get back into CryptoGlance development by next week. Dealing with a new job that's sucked up all my time and energy Sad
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
Ok, I knew I saw something in this thread earlier and I found it:

https://bitcointalksearch.org/topic/m.13113378

But I'm definitely too lazy to go through all the steps just to add that "bestShare" column" Cheesy Cheesy Cheesy

Also, if you could add in the next release a separator for "thousands" in the best share, that'll be great Smiley

e.g.: xxx'xxx'xxx'xxx instead of xxxxxxxxxxxx
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
I'm too lazy to reinstall :p

well, I resintalled, removed everything to have the pool stats first, then added back all my miners... and pool stats ended up at the bottom ....

Is there a way to get the pool stat "bar" at the top of the window ?

Found one:
I put that:
Code:
        foreach ($cryptoGlance->getPools() as $poolId => $pool) {
        
$poolId++;
        include(
"templates/panels/pool.php");
      }
      
?>

Before that in index.php

    
Code:
    // Overview
    
if (count($cryptoGlance->getMiners()) > 0) {
        include(
"templates/modals/manage_rig.php");

        include(
"templates/panels/overview.php");

        
// Miners
        
foreach ($cryptoGlance->getMiners() as $minerId => $miner) {
            
$minerId++; // Doing this because minerID 0 means all devices in ajax calls
            
include("templates/panels/rig.php");
        }
        include(
"templates/modals/switch-pool.php");
    }

    
?>

Now I just have to wait to update to beta again...


updated manually as I still had the beta*.zip Smiley

Now, I'm fiddling around and I'm trying to see if I could get a "best Share" column inserted in the overview...

legendary
Activity: 1274
Merit: 1000
I just tried to add ckpool:



Running V2.2.1-BETA on windows

Did I miss something ?

I realise it's been posted 2 pages ago but I couldn't find a solution.
I do some test tomorrow. (logout/restart app/restart computer)

i had this problem, got fixed with a complete reinstall.. add the pool first, then upgrade..


If you scroll back a few pages you will see the same discussion where this took place.
legendary
Activity: 1736
Merit: 1006
I just tried to add ckpool:



Running V2.2.1-BETA on windows

Did I miss something ?

I realise it's been posted 2 pages ago but I couldn't find a solution.
I do some test tomorrow. (logout/restart app/restart computer)

i had this problem, got fixed with a complete reinstall.. add the pool first, then upgrade..
zOU
hero member
Activity: 728
Merit: 500
★ these are stars ★
I just tried to add ckpool:



Running V2.2.1-BETA on windows

Did I miss something ?

I realise it's been posted 2 pages ago but I couldn't find a solution.
I do some test tomorrow. (logout/restart app/restart computer)
legendary
Activity: 1274
Merit: 1000
Could you add Johnny's pool, http://www.bravo-mining.com/, to the list of pools we can add please?  His site has an api for user stats and pool stats available is json format, would be cool to see that info in crytoglance.


Shouldn't need to remove and re-add. Only have to wait +2 minutes (or something like that, it's a hard-coded "cache" value so pools don't block your IP when fetching data). If nothing has changed after 2 minutes prior to the code change, refresh the dashboard... Or, remove the pool "cache" inside user_data/pools/bitminter/*
That got it changed, thanks.
legendary
Activity: 1274
Merit: 1000
Minor graphical bug to report:

The pool window for BitMiner shows a field "network hashrate" - this field should be titled "pool hashrate".

Would anyone be able to explain quickly what files I need to edit to make this change?  It seems like it should be really simple, I tried editing the only occurrence of the term "network hashrate" in the bitminter.php file (\application\includes\classes\pools) but that did not change it.

after you edited it did you remove the pool and readd it?


Shouldn't need to remove and re-add. Only have to wait +2 minutes (or something like that, it's a hard-coded "cache" value so pools don't block your IP when fetching data). If nothing has changed after 2 minutes prior to the code change, refresh the dashboard... Or, remove the pool "cache" inside user_data/pools/bitminter/*

I did remove the pool, log out and quit the program, then restart it and re-add the pool and that field still read "network hashrate", so it must be cached data.  I'll try changing it again tonight, thanks. Smiley

Also, going back a few pages to this post, https://bitcointalksearch.org/topic/m.13113378, as a feature request I think it would be great to have all sorts of fields in these tables that are user selectable so that we can pick and choose what we want to see for each device/pool.

I need to send you guys another donation as soon as I get some more coins...
sr. member
Activity: 298
Merit: 250
Minor graphical bug to report:

The pool window for BitMiner shows a field "network hashrate" - this field should be titled "pool hashrate".

Would anyone be able to explain quickly what files I need to edit to make this change?  It seems like it should be really simple, I tried editing the only occurrence of the term "network hashrate" in the bitminter.php file (\application\includes\classes\pools) but that did not change it.

after you edited it did you remove the pool and readd it?


Shouldn't need to remove and re-add. Only have to wait +2 minutes (or something like that, it's a hard-coded "cache" value so pools don't block your IP when fetching data). If nothing has changed after 2 minutes prior to the code change, refresh the dashboard... Or, remove the pool "cache" inside user_data/pools/bitminter/*
Pages:
Jump to: