Post
Topic
Board Mining (Altcoins)
Re: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 200000 miners
by
patrike
on 06/03/2019, 10:43:32 UTC
Awesome Miner version 6.2.4

 ASIC mining
  - Diagnostics improved to support older Antminers
 GPU mining
  - Added algorithm CryptoNight HeavyX for XCash mining
  - Generic Miners improved with command line variables for pool related parameters
 User interface
  - User defined actions can be accessed from the context menu in the Miners tab
 Mining softare
  - BMiner 15.1
  - TT-Miner 2.1.3
 Corrections
  - Correction to detection of AMD cards for GPU monitoring

NICE!!!

Patrike can i add or delete a specifie tag to a specifie miner via api? I use the api to stop and start the miners for zilliqa mining. It works very good without any errors, but i want to add a tag for the moment of zilliqa mining and want to delete it when the main miner starts.

If needed i can make a description for other guys for mining Zilliqa with Aweseomeminer.
Is this for the HTTP API? You can use this API to add and remove tags for a miner. See the section "Tags":
https://support.awesomeminer.com/support/solutions/articles/35000085916-awesome-miner-http-api

Sorry i am new in API  Smiley
I use curl and this command line in a cmd file to start and stop the miner:

curl -i -d POST http://192.168.2.113:17790/api/miners/2?action=start

I saw the tags section in your FAQ, but i don´t understand how i set only a tag to one of my miners. As i understand your FAQ it will add the tag to every miner.

Ok i try a little bit.
Thanks for the details. If you already have your tags defined in the system, you can use the Tags API (/api/tags) to get a mapping between tag name and tag ID.

When you know the tag ID you want to modify on a miner, you can do like this with the API for "Managed Miners". It works in a similar way for External Miners as well.

1) Get the properties for a specific Managed Miner:
  GET http://mypc:17790/api/managedminers/{id}
2) Modify the tagList property of the response body
3) Save the new properties for the Managed Miner, where you put the updated JSON data in request body:
  POST http://mypc:17790/api/managedminers/{id}