Author

Topic: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 200000 miners - page 257. (Read 703148 times)

legendary
Activity: 3346
Merit: 1094
Patrike,

Small issue that I've discovered...

All algo's have been benchmarked with one or many GPU's and I have them all selected in Options > Algorithms.

Now here is the issue, if I deselect one or more and then at a later date re-enable them in Options > Algorithms, the benchmark data is lost / missing in the Benchmark box and I have to redo the benchmark for those algos again.

Can you fix that in the next update please so that the data does not get erased when these are disabled in Options > Algorithms, thanks.
Thanks for reporting this issue. I will take a look at this case. For the moment, you can workaround the issue by doing the disable on the algorithm in the Profit Profile instead.
legendary
Activity: 3346
Merit: 1094
could you please add selection support for the zpool South East Asia  STRATUM SERVERS and blockmaster European servers (Please access these by using stratum+tcp://eu.blockmasters.co[:port] ) in the next release?

thanks
Thanks for your suggestion. I will add zpool SEA to the next release.

BlockMasters EU is already included in the latest development release.
legendary
Activity: 3346
Merit: 1094
found a bug, @patrike.

automatic download of custom managed software does not work.
I can create a custom software and add all the download links, folder & executable names and so on to its properties. but then I can't enable that software in any of my profit profiles. when trying to save a profile with new managed software enabled, AM tells me, that I should click the "Configure" button and specify the path. basically it's locked with "Specify existing installation path" option selected, and I can't choose "automatic download" option at all.
I will take a look at this one - thanks for reporting it.

I have another feature in the pipeline where you will be able to use a C# script as a rule action, to set a time limited wallet/worker name on a profit profile. You will be able to run the rule on a schedule you define.
any updates on this?
please make me happy Smiley

thank you for your work.
This is implemented already, but not yet documented as it's quite low-level.

An example of how it can be used is the following C# script action, but I will have to provide some documentation for it before it's really useful
Code:
using AwesomeMiner.Components.ProfitSwitching.Pools;

public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;

public bool Execute(List list)
{
// Specify duration for how long the changes should be used
const int DurationMinutes = 45;

// Pool configuration
SwitchingProfile swProfile = new SwitchingProfile();
swProfile.EnabledPools = OnlineServiceType.MiningPoolHub;
swProfile.MiningPoolHubWorker = "newuser.1";

Context.ProfitSwitcher.SetTemporaryProfitProfileSettings(list, DurationMinutes, swProfile);
return true;
}

}
hello patrike,
this script is broken in two last releases. every time I got an empty miner worker name after running it.
There is a change in the latest development releses for this.

Please remove this line
Code:
swProfile.MiningPoolHubWorker = "newuser.1";

You can replace it with lines like below. You always need the first "Clear" line, but then you can have one or more additional lines for each pool.
Code:
swProfile.PoolProviderList.Clear();
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.MiningPoolHub, "newuser.1"));
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.BlockMasters, "somewallet"));
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.AHashPool, "somewallet"));
legendary
Activity: 3346
Merit: 1094
  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
I can not find this option
Maybe the description in the release notes wasn't too good here. It's not a new setting, but it's refering to when using the existing setting for CoinCalculators.io Exchange Filtering. When enabled, I received feedback that is was filtering away too much coin data where coins didn't have any exchange at all.
member
Activity: 129
Merit: 17
I love AM but wish they would develop more options for ASICs. Most of the options are geared toward CPU/GPU rigs.
jr. member
Activity: 756
Merit: 2
@PATRIKE I would like to remind you that you can not change the OC on the RTX cards using Awesome Miner yet. I look forward to this update.
newbie
Activity: 17
Merit: 0
Patrike, dasboard need to add an option to change graph limits for each miner hashrate and power usage independently (yes, need to add power usage). Usually the area near zero is not useful. If your miner hasrate changes from 120 to 160 MH/s it is better to cut the 0-100 MH/s area and see the more detailed statistics for 100-180 MH/s area. If 1st miner speed is H/s and the second miner speed is MH/s the dashboard screen becomes fully useless for the first miner. That's why need independent limits for each miner. Sometimes you can not understand the real power usage without seeing statistics.
full member
Activity: 270
Merit: 115
Patrike,

Small issue that I've discovered...

All algo's have been benchmarked with one or many GPU's and I have them all selected in Options > Algorithms.

Now here is the issue, if I deselect one or more and then at a later date re-enable them in Options > Algorithms, the benchmark data is lost / missing in the Benchmark box and I have to redo the benchmark for those algos again.

Can you fix that in the next update please so that the data does not get erased when these are disabled in Options > Algorithms, thanks.

newbie
Activity: 18
Merit: 0
could you please add selection support for the zpool South East Asia  STRATUM SERVERS and blockmaster European servers (Please access these by using stratum+tcp://eu.blockmasters.co[:port] ) in the next release?

thanks
jr. member
Activity: 238
Merit: 3
found a bug, @patrike.

automatic download of custom managed software does not work.
I can create a custom software and add all the download links, folder & executable names and so on to its properties. but then I can't enable that software in any of my profit profiles. when trying to save a profile with new managed software enabled, AM tells me, that I should click the "Configure" button and specify the path. basically it's locked with "Specify existing installation path" option selected, and I can't choose "automatic download" option at all.
I will take a look at this one - thanks for reporting it.

I have another feature in the pipeline where you will be able to use a C# script as a rule action, to set a time limited wallet/worker name on a profit profile. You will be able to run the rule on a schedule you define.
any updates on this?
please make me happy Smiley

thank you for your work.
This is implemented already, but not yet documented as it's quite low-level.

An example of how it can be used is the following C# script action, but I will have to provide some documentation for it before it's really useful
Code:
using AwesomeMiner.Components.ProfitSwitching.Pools;

public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;

public bool Execute(List list)
{
// Specify duration for how long the changes should be used
const int DurationMinutes = 45;

// Pool configuration
SwitchingProfile swProfile = new SwitchingProfile();
swProfile.EnabledPools = OnlineServiceType.MiningPoolHub;
swProfile.MiningPoolHubWorker = "newuser.1";

Context.ProfitSwitcher.SetTemporaryProfitProfileSettings(list, DurationMinutes, swProfile);
return true;
}

}
hello patrike,
this script is broken in two last releases. every time I got an empty miner worker name after running it.
jr. member
Activity: 756
Merit: 2
Hi Patrike,

i think there's a big problem with PHI2 algo, profit switching doesn't work,
and "phi2 pool Block Masters" there's on tab "Online Services", but
there isn't in "View Detailts - Profit Switching".

P.S. I'm using Teamredminer!

Bye
Awesome Miner is automatically showing all new algorithms on the Online Services tab, but doesn't automatically add it as a pool to the profit switcher (see Options dialog, Online Services) until I include it in an update.

This implementation will soon change where Awesome Miner automatically will make new pools (from the predefined yiimp-based pools) available without having to update to a later version.

Edit: I just checked and BlockMasters Phi2 should be in the list already. Is Phi2 selected in the Profit Profile you are using? Do you have any mining software that supports Phi2 enabled in the Profit Profile?

Hi Patrike,

i don't know why sometimes the profit switching doesn't work, but if i restart the miner, AwesomeMiner choose the right algo/coin to mine, i have only problem with phi2 algo.

This is a screenshot of View Details

https://drive.google.com/file/d/1Sxiq8hCGlgi48Sgo-0ODU-AoesdWqL2Z/view?usp=sharing

Thanks
I wonder if this could related to the Threshold setting not working as it should. Your 5% limit should have been passed in this case and a pool change should have been made. Do you get the same issue if you disable the Threshold feature?

Next time this happens, could you please send me your log file by mail and let me know the time of the issue - together with a good screenshot like the one your provided here? Thanks!

Mail to [email protected] with new screenshot and log file.

Thanks
Thanks for sharing the logs. I've implemented a correction for this scenario with TeamRedMiner.


  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
I can not find this option
legendary
Activity: 3346
Merit: 1094
Awesome Miner version 5.7.7 ( Development preview of 5.8 )

This is a small update from the development release made yesterday (5.7.6) where a few corrections are included together with updated versions of mining software (CryptoDredge, T-rex, TeamRedMiner, WildRig).
newbie
Activity: 21
Merit: 0
T-Rex 0.7.4

Minor performance improvements for skunk and x16 family of algorithms for Pascal and Turing cards

Bug fixes:
1) Crashes 20 sec after dev fee session when using -r 0
2) Temporary backed out "clean job" feature that was causing rejects on some pools e.g. beepool and bitpoolmining


Linux/Windows
https://github.com/trexminer/T-Rex/releases/tag/0.7.4

FTP mirror:
http://ftp://radio.r41.ru/t-rex-0.7.4-linux-cuda10.0.tar.gz
http://ftp://radio.r41.ru/t-rex-0.7.4-linux-cuda9.1.tar.gz
http://ftp://radio.r41.ru/t-rex-0.7.4-linux-cuda9.2.tar.gz
http://ftp://radio.r41.ru/t-rex-0.7.4-win-cuda10.0.zip
http://ftp://radio.r41.ru/t-rex-0.7.4-win-cuda9.1.zip
http://ftp://radio.r41.ru/t-rex-0.7.4-win-cuda9.2.zip

-------------------------------------------------------------------------------

CryptoDredge v0.9.7

https://github.com/technobyl/CryptoDredge/releases/

Improve Skunkhash
Fix several bugs
member
Activity: 1558
Merit: 69
Nice update Patrike. One question. The Power Usage is only show if i set "Distplay Profit in addition to revenue" in the general options. Is it normal or a bug?
Right now Awesome Miner only calculates the power usage/cost if profit calculations are enabled - but that's not very user friendly. So I would say it's a bug and I will correct this in the next release so you will be able to display Power without also showing Profit.

Thank you for the fast response.
legendary
Activity: 3346
Merit: 1094
Nice update Patrike. One question. The Power Usage is only show if i set "Distplay Profit in addition to revenue" in the general options. Is it normal or a bug?
Right now Awesome Miner only calculates the power usage/cost if profit calculations are enabled - but that's not very user friendly. So I would say it's a bug and I will correct this in the next release so you will be able to display Power without also showing Profit.
legendary
Activity: 3346
Merit: 1094
Awesome Miner Version 5.7.6 ( Development preview of 5.8 )
 
  - Block Explorer configuration for wallet balance to allow balance unit of 1E-7 and 1E-24 to support a wider range of number formats
  

Thanks for update Patrike. But i think there's still something wrong with balance. For BCD, i set unit of 1E-7. When clicking on test button, i get the correct amount. But in balance tab, amount still appear with a unit of 1E-8.
Can you look at this ?
Sorry - I will correct that. Thanks for pointing out this issue.
member
Activity: 1558
Merit: 69
Awesome Miner Version 5.7.6 ( Development preview of 5.8 )
 Features
  - Significant speed optimizations for the Performance History feature
  - Performance History also includes estimated revenue and profit
  - Performance History export to CSV allows selection of data to export
  - The profit switching setting to ignore pools with no accepted shares can now be configured for up to 20 minutes (was 10 minutes previously)
  - Diagnostics includes information about MS VC++ runtime versions installed, as these runtimes are required by some GPU mining software
 Integration
  - Block Explorer configuration for wallet balance to allow balance unit of 1E-7 and 1E-24 to support a wider range of number formats
  - New algorithms added to the predefined Yiimp-based pools will automatically be available if the algorithm is known to Awesome Miner
  - BlockMasters pool configurable for region
  - Mining Dutch Lyra2REv2 profit unit adjusted to latest API changes
  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
  - Siacoin algorithm changed from Blake2b to Sia, which is a modified version of the Blake2b algorithm
 API
  - Added HTTP API for returning the assigned miners and users accounts for each user group (/api/groups/details)
  - A random HTTP API key can be generated with a button click in the Options dialog
 Rules
  - Triggers looking at hashrate and accepted shares can now be configured for looking back at statistics for up to 20 minutes (was 10 minutes previously)
  - The predefined trigger for Accept Progress will by default be set to 16 minutes (was 8 minutes previously) on new installations
 User interface
  - Display of power usage per miner group and as a total for all miners. Configurable via the Options dialog, General section.
  - Display of power usage for the selected Profit Profile on the Coins and Online Services tabs
  - Improved user interface for configuring predefined pools for the profit switcher and for custom wallets for miners
  - Additional coin images added
 Mining software
  - CryptoDredge 0.9.6
  - T-Rex miner 0.7.3
  - Z-enemy Miner 1.23
 Corrections
  - Improved detection of nVidia GPU driver version
  - Correction to scenario where user defined Online Services are being removed, to ensure no old statistics are listed on the Online Services tab
  - Correction to the Profit Profile properties, Override section, where the feature to add a new custom pool didn't work correctly in some scenarios
  - Correction to profit switching with TeamRedMiner where the pool changes wasn't performed correctly
  - Minor corrections

To get access to development versions, open the Options dialog in Awesome Miner. In the General section, enable Check for development versions. Then go to the Menu and click Check for updates

Direct download links
http://www.awesomeminer.com/download/setupdev/AwesomeMiner.msi
http://www.awesomeminer.com/download/setupdev/AwesomeMinerRemoteService.msi

Nice update Patrike. One question. The Power Usage is only show if i set "Distplay Profit in addition to revenue" in the general options. Is it normal or a bug?
newbie
Activity: 92
Merit: 0
Awesome Miner Version 5.7.6 ( Development preview of 5.8 )
 
  - Block Explorer configuration for wallet balance to allow balance unit of 1E-7 and 1E-24 to support a wider range of number formats
  

Thanks for update Patrike. But i think there's still something wrong with balance. For BCD, i set unit of 1E-7. When clicking on test button, i get the correct amount. But in balance tab, amount still appear with a unit of 1E-8.
Can you look at this ?
Jump to: