Bitcoin Forum
May 01, 2024, 06:55:13 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: Antminer S1 monitor via snmp/syslog  (Read 5214 times)
jimrome
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 14, 2014, 05:11:48 AM
 #21

....... WHAT......?  Huh  enabling API may caused dead chips? Where you find this?

W_M

Complete bullshit until proven otherwise.

https://bitcointalk.org/index.php?topic=412322.msg5072840#msg5072840

Not an unreasonable claim. I've gotten dead chips from simply rebooting. I've had to unplug the antminer and plug it back in to resolve them.

I disagree, and still call bullshit. Unless there is some other underlying issue (software corruption?) simply enabling the API shouldn't cause "dead chips".
1714589713
Hero Member
*
Offline Offline

Posts: 1714589713

View Profile Personal Message (Offline)

Ignore
1714589713
Reply with quote  #2

1714589713
Report to moderator
1714589713
Hero Member
*
Offline Offline

Posts: 1714589713

View Profile Personal Message (Offline)

Ignore
1714589713
Reply with quote  #2

1714589713
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
jimrome
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
April 14, 2014, 05:18:11 AM
 #22

Hi, API are active on Antminer S1, infact if you connect to console ad run the command cgminer-api summary there is an answer like this

<snip>

but is not allowed to call API from another computer else localhost (127.0.0.1) because in the configuration there aren't all necessary permission. So you need to enable the API for remote access. Someone suggest to edit /etc/config/cgminer. I do not know what solution is correct, but I think it is to edit /etc/init.d/cgminer because the etc/config/cgminer is written directly by Luci interface.

W_M

I think the 'correct' way would be to edit the /etc/config/cgminer config file - you'll see that /etc/config/init.d actually pulls values from it as well. Doesn't really matter I suppose as long as the values are properly passed onto cgminer upon launch.
criggie
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 14, 2014, 02:52:08 AM
 #23

is there any way to monitor a Antminer S1 via snmp/syslog.
im trying to get the temperature from the Unit.

Yes - I've just done this.

1) log into GUI and go to System --> Software --> [ Update lists ]   then wait a bit
2) Under Status, click the /Available Packages\ tab then click the /S\ tab
3) Scroll down to snmpd and click install.  You can ignore the snmpd-static and snmpd-utils packages.

4) SSH to your miner and log in as root
5) vi  /etc/snmp/snmpd.conf  and set it like this

rocommunity Waizphzbp3
exec minerstatus1 /bin/sh /root/cgminer-api-summary


6) vi /root/cgminer-api-summary    and set the contents like this

/usr/bin/cgminer-api stats      | egrep "temp|fan" | grep -v "Reply was"  | tr -d " []><()" | tr "=" ":"
/usr/bin/cgminer-api coin       | egrep "Time|Difficulty" | grep -v "Reply was"  | tr -d " []><()" | tr "=" ":"


7) Back to the web gui, go to System --> Startup  and "enable snmpd"   then click the start button for snmpd.

8) FAIL  This is the bit I haven't done yet.  My miner is not publicly accessible, so I simply disabled its firewall.
If you have an uncontrolled environment, you want to permit port 161 UDP from the monitoring host only.

9) To scan it I did this on my remote host.

snmpwalk -Os -c Waizphzbp3 -v 2c 192.168.1.93   .1.3.6.1.4.1.2021.8

which returns this output:

extIndex.1 = INTEGER: 1
extNames.1 = STRING: minerstatus1
extCommand.1 = STRING: /bin/sh /root/cgminer-api-summary
extResult.1 = INTEGER: 0
extOutput.1 = STRING: fan_num:1
fan1:2820
fan2:0
fan3:0
fan4:0
temp_num:2
temp1:41
temp2:44
temp3:0
temp4:0
temp_avg:42
temp_max:45
temp_hi:44
overheat_temp:0
opt_bitmain_temp:50
opt_bitmain_fan_min:32
opt_bitmain_fan_max:160
PoolAttempts:0
CurrentBlockTime:1405304337.011621
NetworkDifficulty:17336316978.50783100
extErrFix.1 = INTEGER: noError(0)
extErrFixCmd.1 = STRING:


So my S1 is at 41 and 44 degrees C, with the front fan doing 2820 RPM .  My rear fan is only 3 wire and doesn't report speeds.


To customise, simply edit the shell script in /root/cgminer-api-summary to suit your needs.
There are a heap of different options that  cgminer-api takes, the shell script simply formats them.
Some of the ones I've looks at:

/usr/bin/cgminer-api devs                      Info on attached asics
/usr/bin/cgminer-api pools                     Info on pools
/usr/bin/cgminer-api switchpool                Change to another configured pool
/usr/bin/cgminer-api notify                    unsure
/usr/bin/cgminer-api devdetails                device info, more details
/usr/bin/cgminer-api stats
/usr/bin/cgminer-api summary
/usr/bin/cgminer-api config         failover info
/usr/bin/cgminer-api coin           stats about current block and difficulty
/usr/bin/cgminer-api usbstats               Lots of stuff
/usr/bin/cgminer-api zero           reset counters ?
/usr/bin/cgminer-api hotplug                ?
/usr/bin/cgminer-api ascset         configure asics on the fly
/usr/bin/cgminer-api asccount               count attached asics
/usr/bin/cgminer-api lockstats              dunno - not compiled
/usr/bin/cgminer-api edevs          devs but for devices that are enabled only
/usr/bin/cgminer-api estats         stats but for enabled devices only.
/usr/bin/cgminer-api lcd                    One liner?  Not compiled in


Any questions please ask, and if you have fiddled your firewall please let us know the clean tidy way to do that.

Pjones
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
July 15, 2014, 05:56:07 AM
 #24

https://github.com/mdude77/MAntMonitor

It does what you need.
btcfade
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
December 01, 2014, 11:07:31 AM
 #25

Mine doesn't work I guess.  I just filled in the IP under GUI SYSTEM/SYSTEM/LOGGING. My log server never shows anything. Is there something else besides this you have to do?
btcfade
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
December 01, 2014, 12:08:46 PM
 #26

nevermind, adding api-listen worked.. thanks for all the great help..
btcfade
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
December 01, 2014, 01:55:03 PM
 #27

it's logging to 514 syslog .. i'm gonna have to wait for it to crash again to see if it says anything other than /usr/bin/cgminer-monitor..

anybody know what i'm saying?
btcfade
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
December 01, 2014, 02:27:51 PM
 #28

is there any way to monitor a Antminer S1 via snmp/syslog.
im trying to get the temperature from the Unit.

Yes - I've just done this.

1) log into GUI and go to System --> Software --> [ Update lists ]   then wait a bit
2) Under Status, click the /Available Packages\ tab then click the /S\ tab
3) Scroll down to snmpd and click install.  You can ignore the snmpd-static and snmpd-utils packages.

4) SSH to your miner and log in as root
5) vi  /etc/snmp/snmpd.conf  and set it like this

rocommunity Waizphzbp3
exec minerstatus1 /bin/sh /root/cgminer-api-summary


6) vi /root/cgminer-api-summary    and set the contents like this

/usr/bin/cgminer-api stats      | egrep "temp|fan" | grep -v "Reply was"  | tr -d " []><()" | tr "=" ":"
/usr/bin/cgminer-api coin       | egrep "Time|Difficulty" | grep -v "Reply was"  | tr -d " []><()" | tr "=" ":"


7) Back to the web gui, go to System --> Startup  and "enable snmpd"   then click the start button for snmpd.

Cool FAIL  This is the bit I haven't done yet.  My miner is not publicly accessible, so I simply disabled its firewall.
If you have an uncontrolled environment, you want to permit port 161 UDP from the monitoring host only.

9) To scan it I did this on my remote host.

snmpwalk -Os -c Waizphzbp3 -v 2c 192.168.1.93   .1.3.6.1.4.1.2021.8

which returns this output:

extIndex.1 = INTEGER: 1
extNames.1 = STRING: minerstatus1
extCommand.1 = STRING: /bin/sh /root/cgminer-api-summary
extResult.1 = INTEGER: 0
extOutput.1 = STRING: fan_num:1
fan1:2820
fan2:0
fan3:0
fan4:0
temp_num:2
temp1:41
temp2:44
temp3:0
temp4:0
temp_avg:42
temp_max:45
temp_hi:44
overheat_temp:0
opt_bitmain_temp:50
opt_bitmain_fan_min:32
opt_bitmain_fan_max:160
PoolAttempts:0
CurrentBlockTime:1405304337.011621
NetworkDifficulty:17336316978.50783100
extErrFix.1 = INTEGER: noError(0)
extErrFixCmd.1 = STRING:


So my S1 is at 41 and 44 degrees C, with the front fan doing 2820 RPM .  My rear fan is only 3 wire and doesn't report speeds.


To customise, simply edit the shell script in /root/cgminer-api-summary to suit your needs.
There are a heap of different options that  cgminer-api takes, the shell script simply formats them.
Some of the ones I've looks at:

/usr/bin/cgminer-api devs                      Info on attached asics
/usr/bin/cgminer-api pools                     Info on pools
/usr/bin/cgminer-api switchpool                Change to another configured pool
/usr/bin/cgminer-api notify                    unsure
/usr/bin/cgminer-api devdetails                device info, more details
/usr/bin/cgminer-api stats
/usr/bin/cgminer-api summary
/usr/bin/cgminer-api config         failover info
/usr/bin/cgminer-api coin           stats about current block and difficulty
/usr/bin/cgminer-api usbstats               Lots of stuff
/usr/bin/cgminer-api zero           reset counters ?
/usr/bin/cgminer-api hotplug                ?
/usr/bin/cgminer-api ascset         configure asics on the fly
/usr/bin/cgminer-api asccount               count attached asics
/usr/bin/cgminer-api lockstats              dunno - not compiled
/usr/bin/cgminer-api edevs          devs but for devices that are enabled only
/usr/bin/cgminer-api estats         stats but for enabled devices only.
/usr/bin/cgminer-api lcd                    One liner?  Not compiled in


Any questions please ask, and if you have fiddled your firewall please let us know the clean tidy way to do that.



how can i do this without downloading snmp? i mean i already got talking to the server, do i have to send it commands? can it just send updates to the syslog?
criggie
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
December 01, 2014, 07:27:40 PM
 #29

how can i do this without downloading snmp? i mean i already got talking to the server, do i have to send it commands? can it just send updates to the syslog?

Well the commands given above will return you info on your miner when run at the command prompt.

The SNMP stuff is just one way of running those commands remotely.  You could easily use a command like
    ssh miner /usr/bin/cgminer-api stats
And get the info that way.

Good thing about SNMP is it already offers permissions and networking framework.  I poll from Cacti which likes SNMP.
Pages: « 1 [2]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!