Pages:
Author

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

legendary
Activity: 3346
Merit: 1094
And some more questions  Smiley

Is it possible to add in the Rules a Trigger like "Detect miners name"? So I could create a rule to detect the "Mining State" and if a specific miner like T-Rex is running and execute some actions because of this.
And maybe is it possible to also detect a running task? So i could do a rule to kill it, like killing a task in the Task-Manager. If this is possible, maybe you also can do a taskkill action, so we dont have to do it with the Run Executable action.

Thanks and all the best to you!
I'm providing a solution for your request about detecting miner name. Please add a C# Script trigger where you paste the following script. Please change "cpuminer-opt" to the software you want to check for. Please enter the name (or part of the name) as displayed on the Summary tab for a selected miner, in the "Miner" section, property name "Mining software".

Code:
public class TriggerScript : IUserScriptTrigger
{
private ContextProvider Context = ScriptManager.Context;

public List Check(List minerList)
{
List resultList = new List();
foreach(MinerBase miner in minerList)
{
if (miner.ValidateStatusUpdate() && miner.StatusUpdate.ConfigStatus.MinerDescription != null && miner.StatusUpdate.ConfigStatus.MinerDescription.Contains("cpuminer-opt"))
resultList.Add(miner);
}
return resultList;
}
}

I've noted your request about an action for terminating a process as well.
legendary
Activity: 3346
Merit: 1094
Is it me or did the stats go away with the latest update?

IE: Summary tab at the bottom all the way to the right... accepted, shares, best, diff, etc area.

Is it me or did the stats go away with the latest update?

IE: Summary tab at the bottom all the way to the right... accepted, shares, best, diff, etc area.

RELEASE NOTES:

User interface
  - Summary tab for a miner has been reorganized to give a better overview


Patrike there is a problem with the new reorganized summary tab on 4:3 screen. It will not show all informations, especially the "mining details"


On another screen with 16:9, there is no problem.

I agree, I do not run it full screen, but now half the information I am  used to seeing, I cannot see. so I have to keep expanding it, then shrinking it back down again.

Thanks for all feedback. I will make some UI adjustments to better fit all the information. You can expect an updated development release within the next 1-2 days.
legendary
Activity: 3346
Merit: 1094
Hi Patrik,



in the "Profit Profile Properties" in "Batch Commands" there seems to be a bug.

The 1st field "Before starting the mining software" is working with no problems.
But the 2nd and 3rd field "Before..." and "After..." isnt working. Everything inside will not be executed, no matter if its a bat.file or just a command with or without "". I have marked the "Administrator privileges", but have not tested without, because I need the admin.

In my example above in the picture and to make it work, I have to execute the taskkill-task in the 1st field "Before starting..." in each of the algorithms. Instead of just execute the task in the 2nd/3rd field "Before/After stopping" just in the ETH-miner. Can you please check this?

Also I have a question about the fields:
Will AM execute each line in the fields separately or just all as one line? Or in other words: Can I put a whole bat.file into the fields and it will work?

P.S. Thank you for the last AM update with the action override function. This is so great!
Hi Joseph,

I'm not able to reproduce the problem.
1) Can you please check your Remote Agent log file and look for "Executing batch commands"? Do you see any error message on the line below?
2) Please verify that you don't have miner-specific overrides for batch commands (Managed Miner Properties, Command line section)
3) Can you also try with something other than your own batch-file. What happens for example if you simply launch "calc.exe" or "notepad.exe" as stop script?

What Awesome Miner is doing for these batch commands is to create a bat-file, put your defined content inside the bat-file and finally execute the bat-file. This makes it possible to take the content of a bat-file and paste it in Awesome Miner and it will run as a single bat-file.
legendary
Activity: 1754
Merit: 1007
Hi Patrike, i cant understand how i can configure new feature of rules "run actions of another rule"
Example:
i have created "rule1" where i set:
  Apply profit profile: "power profit profile for miner1"
  activate: "run action of another rule" and select "rule2"

in rule2 i do the same actions but only for miner2

Problem is, that the "rule1" only execute actions of "rule2" for "miner1". Cant understand rule configuration logic.

How i can configure rule where i can run rules in a chain, one by one Huh First rule execute commands for actual miner and then delegate execution to other miner and so on.

Regards
legendary
Activity: 2254
Merit: 2419
EIN: 82-3893490


User interface
  - Summary tab for a miner has been reorganized to give a better overview




I agree, I do not run it full screen, but now half the information I am  used to seeing, I cannot see. so I have to keep expanding it, then shrinking it back down again.
member
Activity: 418
Merit: 21
And some more questions  Smiley

Is it possible to add in the Rules a Trigger like "Detect miners name"? So I could create a rule to detect the "Mining State" and if a specific miner like T-Rex is running and execute some actions because of this.
And maybe is it possible to also detect a running task? So i could do a rule to kill it, like killing a task in the Task-Manager. If this is possible, maybe you also can do a taskkill action, so we dont have to do it with the Run Executable action.

Thanks and all the best to you!
member
Activity: 1558
Merit: 69
Is it me or did the stats go away with the latest update?

IE: Summary tab at the bottom all the way to the right... accepted, shares, best, diff, etc area.

RELEASE NOTES:

User interface
  - Summary tab for a miner has been reorganized to give a better overview


Patrike there is a problem with the new reorganized summary tab on 4:3 screen. It will not show all informations, especially the "mining details"



On another screen with 16:9, there is no problem.
member
Activity: 418
Merit: 21
Hi Patrik,



in the "Profit Profile Properties" in "Batch Commands" there seems to be a bug.

The 1st field "Before starting the mining software" is working with no problems.
But the 2nd and 3rd field "Before..." and "After..." isnt working. Everything inside will not be executed, no matter if its a bat.file or just a command with or without "". I have marked the "Administrator privileges", but have not tested without, because I need the admin.

In my example above in the picture and to make it work, I have to execute the taskkill-task in the 1st field "Before starting..." in each of the algorithms. Instead of just execute the task in the 2nd/3rd field "Before/After stopping" just in the ETH-miner. Can you please check this?

Also I have a question about the fields:
Will AM execute each line in the fields separately or just all as one line? Or in other words: Can I put a whole bat.file into the fields and it will work?

P.S. Thank you for the last AM update with the action override function. This is so great!
jr. member
Activity: 195
Merit: 4
Is it me or did the stats go away with the latest update?

IE: Summary tab at the bottom all the way to the right... accepted, shares, best, diff, etc area.
legendary
Activity: 3346
Merit: 1094
Hi Patrike,

SRBMULTIMINER 0.4.7 work not correct with Awesomeminer. AM write the Pool information in the config file, but if SRBMultiminer start with config file, it ignore every commandline argument. So if i set --disable-gpu in commandline it will not start because no suiteable gpu found or it will mine with all gpu´s. I must set "disable_gpu" : true in the config file on every rig.
Maybe it is better to start SRBMultiminer only with commandline or can you add a tab to configurate the config file like XMRig or Nanominer?
Hi and thanks for the feedback.
I will have to look into this as in the past everything couldn't be set via the command line and using a configuration file was the only way for Awesome Miner to get things to work.
member
Activity: 1558
Merit: 69
Hi Patrike,

SRBMULTIMINER 0.4.7 work not correct with Awesomeminer. AM write the Pool information in the config file, but if SRBMultiminer start with config file, it ignore every commandline argument. So if i set --disable-gpu in commandline it will not start because no suiteable gpu found or it will mine with all gpu´s. I must set "disable_gpu" : true in the config file on every rig.
Maybe it is better to start SRBMultiminer only with commandline or can you add a tab to configurate the config file like XMRig or Nanominer?
newbie
Activity: 23
Merit: 0
Thanks for the works around Patrike.

Hi, After upgrading to this Development version, I can no longer define a pool coin on my managed profit miners? It's greyed out. Any suggestions?

Thanks

I will correct this in the next release. The purpose was only to prevent it for some of the predefined pools where the coin shouldn't be changed (as it would only cause problems).

As a workaround, it should be possible for you to go to the Options dialog, Pools section, to select the coin for your pool.
legendary
Activity: 3346
Merit: 1094
Hi, After upgrading to this Development version, I can no longer define a pool coin on my managed profit miners? It's greyed out. Any suggestions?

Thanks

I will correct this in the next release. The purpose was only to prevent it for some of the predefined pools where the coin shouldn't be changed (as it would only cause problems).

As a workaround, it should be possible for you to go to the Options dialog, Pools section, to select the coin for your pool.
newbie
Activity: 23
Merit: 0
Hi, After upgrading to this Development version, I can no longer define a pool coin on my managed profit miners? It's greyed out. Any suggestions?

Thanks

Awesome Miner version 7.8.6 (Development preview of 8.0)
 ASIC mining
  - The operations to set Default Pools, Reboot, Change firmware and set web password have been redesigned to work on multiple kinds of ASIC miners
  - NOTE: If using Innosilicon, Avalon 10-series or Whatsminer, please open the Properties of the External Miner and select the correct ASIC hardware type. The miner credentials are also entered for the External Miner (Advanced section) or globally in the Options dialog, Mining Settings section.
  - Avalon 10-series ASIC integration improved with: Default Pools, LED on/off, Pause/Resume mining
  - Updated Avalon ASIC support for latest firmware versions
  - Whatsminer ASIC integration improved with: Reboot, Restart, Default Pools, LED on/off, Pause/Resume mining. Requires August 2020 firmware.
 GPU mining
  - Detection of nVidia Cuda 10.2 and 11.0 to support selection of mining software with dependencies on recent Cuda versions
 Features
  - The miners in a miner group can be sorted by IP address
  - Miner groups: Display of ideal hashrate. Configurable in the Options dialog, General section
  - Miner groups: Display the number of hashing miners (miners with a non-zero hashrate). Configurable in the Options dialog, General section
  - Information column: Display ASIC chip temperature
  - Information column: Display ASIC firmware version for more ASIC models
  - Add miner wizard: Network scan supports IP ranges to be entered like 192.168.0-2.100-199
  - Add miner wizard: External Miners can also be added with IP ranges, to add a large number of miners at once
  - Filtering of miners to only show miners with zero hashrate
 Configuration
  - ASIC hardware selection for an External Miner has moved from the Advanced section of the External Miner Properties to the General section, to make it easier to find
  - Number of coins to show with exchange rate the status bar can be configured (from 0 - 20). The default is still to show 15 coins. Configurable in the Options dialog, Coins section.
 User interface
  - Summary tab for a miner has been reorganized to give a better overview
  - ASIC tools menu has been reorganized to match the improved support of ASIC miners for several of the operations
  - Operations performed via the ASIC tools menu with progress display will now list all miners with their configured ASIC hardware before any operation is performed
  - Rule action menu for ASIC related operations has been reorganized in a similar way
 Mining software
  - CryptoDredge 0.24
  - Lolminer 1.05
  - Nanominer 1.10.0
  - Lolminer 1.06
  - Miniz 1.6v5
  - PhoenixMiner 5.1c
  - Gminer 2.21
 Corrections
  - Correction to Remote Agent running on Fedora with 7 digit process identifiers
  - Correction to reading of nVidia power usage on Linux
  - Correction to NbMiner Ethereum mining protocol for 2miners.com

legendary
Activity: 3346
Merit: 1094
Awesome Miner version 7.8.6 (Development preview of 8.0)
 ASIC mining
  - The operations to set Default Pools, Reboot, Change firmware and set web password have been redesigned to work on multiple kinds of ASIC miners
  - NOTE: If using Innosilicon, Avalon 10-series or Whatsminer, please open the Properties of the External Miner and select the correct ASIC hardware type. The miner credentials are also entered for the External Miner (Advanced section) or globally in the Options dialog, Mining Settings section.
  - Avalon 10-series ASIC integration improved with: Default Pools, LED on/off, Pause/Resume mining
  - Updated Avalon ASIC support for latest firmware versions
  - Whatsminer ASIC integration improved with: Reboot, Restart, Default Pools, LED on/off, Pause/Resume mining. Requires August 2020 firmware.
 GPU mining
  - Detection of nVidia Cuda 10.2 and 11.0 to support selection of mining software with dependencies on recent Cuda versions
 Features
  - The miners in a miner group can be sorted by IP address
  - Miner groups: Display of ideal hashrate. Configurable in the Options dialog, General section
  - Miner groups: Display the number of hashing miners (miners with a non-zero hashrate). Configurable in the Options dialog, General section
  - Information column: Display ASIC chip temperature
  - Information column: Display ASIC firmware version for more ASIC models
  - Add miner wizard: Network scan supports IP ranges to be entered like 192.168.0-2.100-199
  - Add miner wizard: External Miners can also be added with IP ranges, to add a large number of miners at once
  - Filtering of miners to only show miners with zero hashrate
 Configuration
  - ASIC hardware selection for an External Miner has moved from the Advanced section of the External Miner Properties to the General section, to make it easier to find
  - Number of coins to show with exchange rate the status bar can be configured (from 0 - 20). The default is still to show 15 coins. Configurable in the Options dialog, Coins section.
 User interface
  - Summary tab for a miner has been reorganized to give a better overview
  - ASIC tools menu has been reorganized to match the improved support of ASIC miners for several of the operations
  - Operations performed via the ASIC tools menu with progress display will now list all miners with their configured ASIC hardware before any operation is performed
  - Rule action menu for ASIC related operations has been reorganized in a similar way
 Mining software
  - CryptoDredge 0.24
  - Lolminer 1.05
  - Nanominer 1.10.0
  - Lolminer 1.06
  - Miniz 1.6v5
  - PhoenixMiner 5.1c
  - Gminer 2.21
 Corrections
  - Correction to Remote Agent running on Fedora with 7 digit process identifiers
  - Correction to reading of nVidia power usage on Linux
  - Correction to NbMiner Ethereum mining protocol for 2miners.com
legendary
Activity: 2254
Merit: 2419
EIN: 82-3893490
still looking for anyone that has gotten AM to work with Innosilicon miners - specifically the A6 - I tried the instructions for the A4/A5 but made zero progress. So, either it doesnt work or I just dont understand it - entirely possible.
Just to make sure I understand case correctly - you are able to use the file editor 'vi' to open the configuration file? But from there on you are not able to make any changes?
Did you try to use the 'i' key once the file is opened in order to make it possible to type text and make modifications?

I tried everything nothing happens, nothing opens. Not sure what it is supposed to do. I have never had any innosilicon miners - I will try looking on youtube. The miner is working great, I just cant get it be picked up by AM.
legendary
Activity: 3346
Merit: 1094
Hi Patrike,

Question about GPU OC Group Profiles:

If i save a GPU OC Groupe, it will create a Group for the Rig and sorted the GPU profiles by GPU ID, but i think the better way is to sorted by PCI Bus ID, because if a GPU died, the order will be change.
So better way is to sorted it by PCI BUS, i know i can change it after saving, but i think this not comfortable. Maybe AM can ask us, when i save a GPU OC Group, what we want, sorted by GPU ID or sorted by PCI BUS ID.
Hello. This is a good point. There are a few design changes I need to do to support saving with PCI Bus ID instead, but your request is noted. Once implemented, I think PCI Bus ID should be the new default way of saving these profiles.
member
Activity: 1558
Merit: 69
Hi Patrike,

Question about GPU OC Group Profiles:

If i save a GPU OC Groupe, it will create a Group for the Rig and sorted the GPU profiles by GPU ID, but i think the better way is to sorted by PCI Bus ID, because if a GPU died, the order will be change.
So better way is to sorted it by PCI BUS, i know i can change it after saving, but i think this not comfortable. Maybe AM can ask us, when i save a GPU OC Group, what we want, sorted by GPU ID or sorted by PCI BUS ID.
legendary
Activity: 3346
Merit: 1094
hello
any news about to modify hashrate with current or average hashrate within a rule command or automatically (option) when switching ?
if possible ? :-) thanks in advance
I agree this would me a nice feature. What would make it a bit complicated is if you are running a mix of GPUs. What should be saved to the Profit Profile - the first GPU only (given that the profile represents a single GPU)? And additional feedback on this is of course appreciated as well. Many thanks!
legendary
Activity: 3346
Merit: 1094
Thanks!

Also had another request for Cloud UI. It currently shows only top 8 coins and top 8 algorithms on the Dashboard. It would be nice if it showed all or maybe 12-15.
Thanks for the suggestion - it's noted!
Pages:
Jump to: