API-README 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. This README contains details about the cgminer RPC API
  2. It also includes some detailed information at the end,
  3. about using miner.php
  4. If you start cgminer with the "--api-listen" option, it will listen on a
  5. simple TCP/IP socket for single string API requests from the same machine
  6. running cgminer and reply with a string and then close the socket each time
  7. If you add the "--api-network" option, it will accept API requests from any
  8. network attached computer.
  9. You can only access the comands that reply with data in this mode.
  10. By default, you cannot access any privileged command that affects the miner -
  11. you will receive an access denied status message see --api-allow below.
  12. You can specify IP addresses/prefixes that are only allowed to access the API
  13. with the "--api-allow" option e.g. --api-allow W:192.168.0.1,10.0.0/24
  14. will allow 192.168.0.1 or any address matching 10.0.0.*, but nothing else
  15. IP addresses are automatically padded with extra '.0's as needed
  16. Without a /prefix is the same as specifying /32
  17. 0/0 means all IP addresses.
  18. The 'W:' on the front gives that address/subnet privileged access to commands
  19. that modify cgminer (thus all API commands)
  20. Without it those commands return an access denied status.
  21. See --api-groups below to define other groups like W:
  22. Privileged access is checked in the order the IP addresses were supplied to
  23. "--api-allow"
  24. The first match determines the privilege level.
  25. Using the "--api-allow" option overides the "--api-network" option if they
  26. are both specified
  27. With "--api-allow", 127.0.0.1 is not by default given access unless specified
  28. If you start cgminer also with the "--api-mcast" option, it will listen for
  29. a multicast message and reply to it with a message containing it's API port
  30. number, but only if the IP address of the sender is allowed API access
  31. More groups (like the privileged group W:) can be defined using the
  32. --api-groups command
  33. Valid groups are only the letters A-Z (except R & W are predefined) and are
  34. not case sensitive
  35. The R: group is the same as not privileged access
  36. The W: group is (as stated) privileged access (thus all API commands)
  37. To give an IP address/subnet access to a group you use the group letter
  38. in front of the IP address instead of W: e.g. P:192.168.0/32
  39. An IP address/subnet can only be a member of one group
  40. A sample API group would be:
  41. --api-groups
  42. P:switchpool:enablepool:addpool:disablepool:removepool:poolpriority:*
  43. This would create a group 'P' that can do all current pool commands and all
  44. non-priviliged commands - the '*' means all non-priviledged commands
  45. Without the '*' the group would only have access to the pool commands
  46. Defining multiple groups example:
  47. --api-groups Q:quit:restart:*,S:save
  48. This would define 2 groups:
  49. Q: that can 'quit' and 'restart' as well as all non-priviledged commands
  50. S: that can only 'save' and no other commands
  51. The RPC API request can be either simple text or JSON.
  52. If the request is JSON (starts with '{'), it will reply with a JSON formatted
  53. response, otherwise it replies with text formatted as described further below.
  54. The JSON request format required is '{"command":"CMD","parameter":"PARAM"}'
  55. (though of course parameter is not required for all requests)
  56. where "CMD" is from the "Request" column below and "PARAM" would be e.g.
  57. the ASC/PGA number if required.
  58. An example request in both formats to disable Hotplug:
  59. hotplug|0
  60. {"command":"hotplug","parameter":"0"}
  61. The format of each reply (unless stated otherwise) is a STATUS section
  62. followed by an optional detail section
  63. From API version 1.7 onwards, reply strings in JSON and Text have the
  64. necessary escaping as required to avoid ambiguity - they didn't before 1.7
  65. For JSON the 2 characters '"' and '\' are escaped with a '\' before them
  66. For Text the 4 characters '|' ',' '=' and '\' are escaped the same way
  67. Only user entered information will contain characters that require being
  68. escaped, such as Pool URL, User and Password or the Config save filename,
  69. when they are returned in messages or as their values by the API
  70. For API version 1.4 and later:
  71. The STATUS section is:
  72. STATUS=X,When=NNN,Code=N,Msg=string,Description=string|
  73. STATUS=X Where X is one of:
  74. W - Warning
  75. I - Informational
  76. S - Success
  77. E - Error
  78. F - Fatal (code bug)
  79. When=NNN
  80. Standard long time of request in seconds
  81. Code=N
  82. Each unique reply has a unique Code (See api.c - #define MSG_NNNNNN)
  83. Msg=string
  84. Message matching the Code value N
  85. Description=string
  86. This defaults to the cgminer version but is the value of --api-description
  87. if it was specified at runtime.
  88. With API V3.1 you can also request multiple report replies in a single command
  89. request
  90. e.g. to request both summary and devs, the command would be summary+devs
  91. This is only available for report commands that don't need parameters,
  92. and is not available for commands that change anything
  93. Any parameters supplied will be ignored
  94. The extra formatting of the result is to have a section for each command
  95. e.g. CMD=summary|STATUS=....|CMD=devs|STATUS=...
  96. With JSON, each result is within a section of the command name
  97. e.g. {"summary":{"STATUS":[{"STATUS":"S"...}],"SUMMARY":[...],"id":1},
  98. "devs":{"STATUS":[{"STATUS:"S"...}],"DEVS":[...],"id":1},"id":1}
  99. As before, if you supply bad JSON you'll just get a single 'E' STATUS section
  100. in the old format, since it doesn't switch to using the new format until it
  101. correctly processes the JSON and can match a '+' in the command
  102. If you request a command multiple times, e.g. devs+devs
  103. you'll just get it once
  104. If this results in only one command, it will still use the new layout
  105. with just the one command
  106. If you request a command that can't be used due to requiring parameters,
  107. a command that isn't a report, or an invalid command, you'll get an 'E' STATUS
  108. for that one but it will still attempt to process all other commands supplied
  109. Blank/missing commands are ignored e.g. +devs++
  110. will just show 'devs' using the new layout
  111. For API version 1.10 and later:
  112. The list of requests - a (*) means it requires privileged access - and replies:
  113. Request Reply Section Details
  114. ------- ------------- -------
  115. version VERSION CGMiner=cgminer, version
  116. API=API| version
  117. config CONFIG Some miner configuration information:
  118. ASC Count=N, <- the number of ASCs
  119. PGA Count=N, <- the number of PGAs
  120. Pool Count=N, <- the number of Pools
  121. Strategy=Name, <- the current pool strategy
  122. Log Interval=N, <- log interval (--log N)
  123. Device Code=ICA , <- spaced list of compiled
  124. device drivers
  125. OS=Linux/Apple/..., <- operating System
  126. Failover-Only=true/false, <- failover-only setting
  127. ScanTime=N, <- --scan-time setting
  128. Queue=N, <- --queue setting
  129. Expiry=N| <- --expiry setting
  130. summary SUMMARY The status summary of the miner
  131. e.g. Elapsed=NNN,Found Blocks=N,Getworks=N,...|
  132. pools POOLS The status of each pool e.g.
  133. Pool=0,URL=http://pool.com:6311,Status=Alive,...|
  134. devs DEVS Each available PGA and ASC with their details
  135. e.g. ASC=0,Accepted=NN,MHS av=NNN,...,Intensity=D|
  136. Last Share Time=NNN, <- standand long time in sec
  137. (or 0 if none) of last accepted share
  138. Last Share Pool=N, <- pool number (or -1 if none)
  139. Last Valid Work=NNN, <- standand long time in sec
  140. of last work returned that wasn't an HW:
  141. Will not report PGAs if PGA mining is disabled
  142. Will not report ASCs if ASC mining is disabled
  143. edevs[|old] DEVS The same as devs, except it ignores blacklisted
  144. devices and zombie devices
  145. If you specify the optional 'old' parameter, then
  146. the output will include zombie devices that became
  147. zombies less than 'old' seconds ago
  148. A value of zero for 'old', which is the default,
  149. means ignore all zombies
  150. It will return an empty list of devices if all
  151. devices are blacklisted or zombies
  152. pga|N PGA The details of a single PGA number N in the same
  153. format and details as for DEVS
  154. This is only available if PGA mining is enabled
  155. Use 'pgacount' or 'config' first to see if there
  156. are any
  157. pgacount PGAS Count=N| <- the number of PGAs
  158. Always returns 0 if PGA mining is disabled
  159. switchpool|N (*)
  160. none There is no reply section just the STATUS section
  161. stating the results of switching pool N to the
  162. highest priority (the pool is also enabled)
  163. The Msg includes the pool URL
  164. enablepool|N (*)
  165. none There is no reply section just the STATUS section
  166. stating the results of enabling pool N
  167. The Msg includes the pool URL
  168. addpool|URL,USR,PASS (*)
  169. none There is no reply section just the STATUS section
  170. stating the results of attempting to add pool N
  171. The Msg includes the pool URL
  172. Use '\\' to get a '\' and '\,' to include a comma
  173. inside URL, USR or PASS
  174. poolpriority|N,... (*)
  175. none There is no reply section just the STATUS section
  176. stating the results of changing pool priorities
  177. See usage below
  178. poolquota|N,Q (*)
  179. none There is no reply section just the STATUS section
  180. stating the results of changing pool quota to Q
  181. disablepool|N (*)
  182. none There is no reply section just the STATUS section
  183. stating the results of disabling pool N
  184. The Msg includes the pool URL
  185. removepool|N (*)
  186. none There is no reply section just the STATUS section
  187. stating the results of removing pool N
  188. The Msg includes the pool URL
  189. N.B. all details for the pool will be lost
  190. save|filename (*)
  191. none There is no reply section just the STATUS section
  192. stating success or failure saving the cgminer
  193. config to filename
  194. The filename is optional and will use the cgminer
  195. default if not specified
  196. quit (*) none There is no status section but just a single "BYE"
  197. reply before cgminer quits
  198. notify NOTIFY The last status and history count of each devices
  199. problem
  200. This lists all devices including those not
  201. supported by the 'devs' command e.g.
  202. NOTIFY=0,Name=ASC,ID=0,Last Well=1332432290,...|
  203. privileged (*)
  204. none There is no reply section just the STATUS section
  205. stating an error if you do not have privileged
  206. access to the API and success if you do have
  207. privilege
  208. The command doesn't change anything in cgminer
  209. pgaenable|N (*)
  210. none There is no reply section just the STATUS section
  211. stating the results of the enable request
  212. You cannot enable a PGA if it's status is not WELL
  213. This is only available if PGA mining is enabled
  214. pgadisable|N (*)
  215. none There is no reply section just the STATUS section
  216. stating the results of the disable request
  217. This is only available if PGA mining is enabled
  218. pgaidentify|N (*)
  219. none There is no reply section just the STATUS section
  220. stating the results of the identify request
  221. This is only available if PGA mining is enabled
  222. and currently only BFL singles and Cairnsmore1's
  223. with the appropriate firmware support this command
  224. On a BFL single it will flash the led on the front
  225. of the device for appoximately 4s
  226. All other non BFL,ICA PGA devices will return a
  227. warning status message stating that they dont
  228. support it. Non-CMR ICAs will ignore the command.
  229. This adds a 4s delay to the BFL share being
  230. processed so you may get a message stating that
  231. procssing took longer than 7000ms if the request
  232. was sent towards the end of the timing of any work
  233. being worked on
  234. e.g.: BFL0: took 8438ms - longer than 7000ms
  235. You should ignore this
  236. devdetails DEVDETAILS Each device with a list of their static details
  237. This lists all devices including those not
  238. supported by the 'devs' command
  239. e.g. DEVDETAILS=0,Name=ASC,ID=0,Driver=yuu,...|
  240. restart (*) none There is no status section but just a single
  241. "RESTART" reply before cgminer restarts
  242. stats STATS Each device or pool that has 1 or more getworks
  243. with a list of stats regarding getwork times
  244. The values returned by stats may change in future
  245. versions thus would not normally be displayed
  246. Device drivers are also able to add stats to the
  247. end of the details returned
  248. estats[|old] STATS The same as stats, except it ignores blacklisted
  249. devices, zombie devices and pools
  250. If you specify the optional 'old' parameter, then
  251. the output will include zombie devices that became
  252. zombies less than 'old' seconds ago
  253. A value of zero for 'old', which is the default,
  254. means ignore all zombies
  255. It will return an empty list of devices if all
  256. devices are blacklisted or zombies
  257. check|cmd COMMAND Exists=Y/N, <- 'cmd' exists in this version
  258. Access=Y/N| <- you have access to use 'cmd'
  259. failover-only|true/false (*)
  260. none There is no reply section just the STATUS section
  261. stating what failover-only was set to
  262. coin COIN Coin mining information:
  263. Hash Method=sha256/scrypt,
  264. Current Block Time=N.N, <- 0 means none
  265. Current Block Hash=XXXX..., <- blank if none
  266. LP=true/false, <- LP is in use on at least 1 pool
  267. Network Difficulty=NN.NN|
  268. debug|setting (*)
  269. DEBUG Debug settings
  270. The optional commands for 'setting' are the same
  271. as the screen curses debug settings
  272. You can only specify one setting
  273. Only the first character is checked - case
  274. insensitive:
  275. Silent, Quiet, Verbose, Debug, RPCProto,
  276. PerDevice, WorkTime, Normal
  277. The output fields are (as above):
  278. Silent=true/false,
  279. Quiet=true/false,
  280. Verbose=true/false,
  281. Debug=true/false,
  282. RPCProto=true/false,
  283. PerDevice=true/false,
  284. WorkTime=true/false|
  285. setconfig|name,N (*)
  286. none There is no reply section just the STATUS section
  287. stating the results of setting 'name' to N
  288. The valid values for name are currently:
  289. queue, scantime, expiry
  290. N is an integer in the range 0 to 9999
  291. usbstats USBSTATS Stats of all LIBUSB mining devices except ztex
  292. e.g. Name=MMQ,ID=0,Stat=SendWork,Count=99,...|
  293. pgaset|N,opt[,val] (*)
  294. none There is no reply section just the STATUS section
  295. stating the results of setting PGA N with
  296. opt[,val]
  297. This is only available if PGA mining is enabled
  298. If the PGA does not support any set options, it
  299. will always return a WARN stating pgaset isn't
  300. supported
  301. If opt=help it will return an INFO status with a
  302. help message about the options available
  303. The current options are:
  304. MMQ opt=clock val=160 to 230 (a multiple of 2)
  305. CMR opt=clock val=100 to 220
  306. zero|Which,true/false (*)
  307. none There is no reply section just the STATUS section
  308. stating that the zero, and optional summary, was
  309. done
  310. If Which='all', all normal cgminer and API
  311. statistics will be zeroed other than the numbers
  312. displayed by the usbstats and stats commands
  313. If Which='bestshare', only the 'Best Share' values
  314. are zeroed for each pool and the global
  315. 'Best Share'
  316. The true/false option determines if a full summary
  317. is shown on the cgminer display like is normally
  318. displayed on exit.
  319. hotplug|N (*) none There is no reply section just the STATUS section
  320. stating that the hotplug setting succeeded
  321. If the code is not compiled with hotplug in it,
  322. the the warning reply will be
  323. 'Hotplug is not available'
  324. If N=0 then hotplug will be disabled
  325. If N>0 && <=9999, then hotplug will check for new
  326. devices every N seconds
  327. asc|N ASC The details of a single ASC number N in the same
  328. format and details as for DEVS
  329. This is only available if ASC mining is enabled
  330. Use 'asccount' or 'config' first to see if there
  331. are any
  332. ascenable|N (*)
  333. none There is no reply section just the STATUS section
  334. stating the results of the enable request
  335. You cannot enable a ASC if it's status is not WELL
  336. This is only available if ASC mining is enabled
  337. ascdisable|N (*)
  338. none There is no reply section just the STATUS section
  339. stating the results of the disable request
  340. This is only available if ASC mining is enabled
  341. ascidentify|N (*)
  342. none There is no reply section just the STATUS section
  343. stating the results of the identify request
  344. This is only available if ASC mining is enabled
  345. and currently only BFL ASICs support this command
  346. On a BFL single it will flash the led on the front
  347. of the device for appoximately 4s
  348. All other non BFL ASIC devices will return a
  349. warning status message stating that they dont
  350. support it
  351. asccount ASCS Count=N| <- the number of ASCs
  352. Always returns 0 if ASC mining is disabled
  353. ascset|N,opt[,val] (*)
  354. none There is no reply section just the STATUS section
  355. stating the results of setting ASC N with
  356. opt[,val]
  357. This is only available if ASC mining is enabled
  358. If the ASC does not support any set options, it
  359. will always return a WARN stating ascset isn't
  360. supported
  361. If opt=help it will return an INFO status with a
  362. help message about the options available
  363. The current options are:
  364. AVA+BTB opt=freq val=256 to 1024 - chip frequency
  365. BTB opt=millivolts val=1000 to 1400 - corevoltage
  366. lcd LCD An all-in-one short status summary of the miner
  367. e.g. Elapsed,GHS av,GHS 5m,GHS 5s,Temp,
  368. Last Share Difficulty,Last Share Time,
  369. Best Share,Last Valid Work,Found Blocks,
  370. Pool,User|
  371. lockstats (*) none There is no reply section just the STATUS section
  372. stating the results of the request
  373. A warning reply means lock stats are not compiled
  374. into cgminer
  375. The API writes all the lock stats to stderr
  376. When you enable, disable or restart a PGA or ASC, you will also get
  377. Thread messages in the cgminer status window
  378. The 'poolpriority' command can be used to reset the priority order of multiple
  379. pools with a single command - 'switchpool' only sets a single pool to first
  380. priority
  381. Each pool should be listed by id number in order of preference (first = most
  382. preferred)
  383. Any pools not listed will be prioritised after the ones that are listed, in the
  384. priority order they were originally
  385. If the priority change affects the miner's preference for mining, it may switch
  386. immediately
  387. When you switch to a different pool to the current one (including by priority
  388. change), you will get a 'Switching to URL' message in the cgminer status
  389. windows
  390. Obviously, the JSON format is simply just the names as given before the '='
  391. with the values after the '='
  392. If you enable cgminer debug (-D or --debug) or, when cgminer debug is off,
  393. turn on debug with the API command 'debug|debug' you will also get messages
  394. showing some details of the requests received and the replies
  395. There are included 4 program examples for accessing the API:
  396. api-example.php - a php script to access the API
  397. usAge: php api-example.php command
  398. by default it sends a 'summary' request to the miner at 127.0.0.1:4028
  399. If you specify a command it will send that request instead
  400. You must modify the line "$socket = getsock('127.0.0.1', 4028);" at the
  401. beginning of "function request($cmd)" to change where it looks for cgminer
  402. api-example.rb - a Ruby script to access the API.
  403. usage: ruby api-example.rb command[:parameter] [HOST [PORT]]
  404. This script prints the parsed cgminer API response
  405. API.java/API.class
  406. a java program to access the API (with source code)
  407. usAge is: java API command address port
  408. Any missing or blank parameters are replaced as if you entered:
  409. java API summary 127.0.0.1 4028
  410. api-example.c - a 'C' program to access the API (with source code)
  411. usAge: api-example [command [ip/host [port]]]
  412. again, as above, missing or blank parameters are replaced as if you entered:
  413. api-example summary 127.0.0.1 4028
  414. miner.php - an example web page to access the API
  415. This includes buttons and inputs to attempt access to the privileged commands
  416. See the end of this API-README for details of how to tune the display
  417. and also to use the option to display a multi-rig summary
  418. ----------
  419. Feature Changelog for external applications using the API:
  420. API V3.4 (cgminer v4.3.?)
  421. Added API commands:
  422. 'lcd' - An all-in-one short status summary of the miner
  423. ---------
  424. API V3.3 (cgminer v4.2.0)
  425. Added API commands:
  426. 'edevs' - Only enabled devices, for 'devs'
  427. 'estats' - Only enabled devices, for 'stats'
  428. ---------
  429. API V3.2 (cgminer v4.1.0)
  430. Fix for:
  431. HEX32 data type in the API version v3.1 JSON - since cgminer v3.12.1 -
  432. returns an incorrect formatted json data element for the API stats command
  433. for HashFast hardware
  434. ---------
  435. API V3.1 (cgminer v3.12.1)
  436. Multiple report request command with '+' e.g. summary+devs
  437. ---------
  438. API V3.0 (cgminer v3.11.0)
  439. Allow unlimited size replies
  440. ---------
  441. API V2.0 (cgminer v3.8.0)
  442. Removed all GPU related commands and information from the replies
  443. ---------
  444. API V1.32 (cgminer v3.6.5)
  445. Modified API commands:
  446. 'devs' 'gpu' 'pga' and 'asc' - add 'Device Elapsed'
  447. ---------
  448. API V1.31 (cgminer v3.6.3)
  449. Added API command:
  450. 'lockstats' - display cgminer dev lock stats if compiled in
  451. Modified API command:
  452. 'summary' - add 'MHS %ds' (where %d is the log interval)
  453. ---------
  454. API V1.30 (cgminer v3.4.3)
  455. Added API command:
  456. 'poolquota' - Set pool quota for load-balance strategy.
  457. Modified API command:
  458. 'pools' - add 'Quota'
  459. ---------
  460. API V1.29 (cgminer v3.4.1)
  461. Muticast identification added to the API
  462. ----------
  463. API V1.28 (cgminer v3.3.4)
  464. Modified API commands:
  465. 'devs', 'pga', 'asc', 'gpu' - add 'Device Hardware%' and 'Device Rejected%'
  466. 'pools' - add 'Pool Rejected%' and 'Pool Stale%'
  467. 'summary' - add 'Device Hardware%', 'Device Rejected%', 'Pool Rejected%',
  468. 'Pool Stale%'
  469. ----------
  470. API V1.27 (cgminer v3.3.2)
  471. Added API commands:
  472. 'ascset' - with: BTB opt=millivolts val=1000 to 1310 - core voltage
  473. AVA+BTB opt=freq val=256 to 450 - chip frequency
  474. ----------
  475. API V1.26 (cgminer v3.2.3)
  476. Remove all CPU support (cgminer v3.0.0)
  477. Added API commands:
  478. 'asc'
  479. 'ascenable'
  480. 'ascdisable'
  481. 'ascidentify|N' (only works for BFL ASICs so far)
  482. 'asccount'
  483. Various additions to the debug 'stats' command
  484. ----------
  485. API V1.25
  486. Added API commands:
  487. 'hotplug'
  488. Modified API commands:
  489. 'devs' 'gpu' and 'pga' - add 'Last Valid Work'
  490. 'devs' - list ASIC devices
  491. 'config' - add 'Hotplug', 'ASC Count'
  492. 'coin' - add 'Network Difficulty'
  493. ----------
  494. API V1.24 (cgminer v2.11.0)
  495. Added API commands:
  496. 'zero'
  497. Modified API commands:
  498. 'pools' - add 'Best Share'
  499. 'devs' and 'pga' - add 'No Device' for PGAs if MMQ or BFL compiled
  500. 'stats' - add pool: 'Net Bytes Sent', 'Net Bytes Recv'
  501. ----------
  502. API V1.23 (cgminer v2.10.2)
  503. Added API commands:
  504. 'pgaset' - with: MMQ opt=clock val=160 to 230 (and a multiple of 2)
  505. ----------
  506. API V1.22 (cgminer v2.10.1)
  507. Enforced output limitation:
  508. all extra records beyond the output limit of the API (~64k) are ignored
  509. and chopped off at the record boundary before the limit is reached
  510. however, JSON brackets will be correctly closed and the JSON id will be
  511. set to 0 (instead of 1) if any data was truncated
  512. Modified API commands:
  513. 'stats' - add 'Times Sent', 'Bytes Sent', 'Times Recv', 'Bytes Recv'
  514. ----------
  515. API V1.21 (cgminer v2.10.0)
  516. Added API commands:
  517. 'usbstats'
  518. Modified API commands:
  519. 'summary' - add 'Best Share'
  520. Modified output:
  521. each MMQ shows up as 4 devices, each with it's own stats
  522. ----------
  523. API V1.20 (cgminer v2.8.5)
  524. Modified API commands:
  525. 'pools' - add 'Has Stratum', 'Stratum Active', 'Stratum URL'
  526. ----------
  527. API V1.19 (cgminer v2.7.6)
  528. Added API commands:
  529. 'debug'
  530. 'pgaidentify|N' (only works for BFL Singles so far)
  531. 'setconfig|name,N'
  532. Modified API commands:
  533. 'devs' - add 'Diff1 Work', 'Difficulty Accepted', 'Difficulty Rejected',
  534. 'Last Share Difficulty' to all devices
  535. 'gpu|N' - add 'Diff1 Work', 'Difficulty Accepted',
  536. 'Difficulty Rejected', 'Last Share Difficulty'
  537. 'pga|N' - add 'Diff1 Work', 'Difficulty Accepted',
  538. 'Difficulty Rejected', 'Last Share Difficulty'
  539. 'notify' - add '*Dev Throttle' (for BFL Singles)
  540. 'pools' - add 'Proxy Type', 'Proxy', 'Difficulty Accepted',
  541. 'Difficulty Rejected', 'Difficulty Stale',
  542. 'Last Share Difficulty'
  543. 'config' - add 'Queue', 'Expiry'
  544. 'stats' - add 'Work Diff', 'Min Diff', 'Max Diff', 'Min Diff Count',
  545. 'Max Diff Count' to the pool stats
  546. ----------
  547. API V1.18 (cgminer v2.7.4)
  548. Modified API commands:
  549. 'stats' - add 'Work Had Roll Time', 'Work Can Roll', 'Work Had Expire',
  550. 'Work Roll Time' to the pool stats
  551. 'config' - include 'ScanTime'
  552. ----------
  553. API V1.17 (cgminer v2.7.1)
  554. Added API commands:
  555. 'coin'
  556. Modified API commands:
  557. 'summary' - add 'Work Utility'
  558. 'pools' - add 'Diff1 Shares'
  559. ----------
  560. API V1.16 (cgminer v2.6.5)
  561. Added API commands:
  562. 'failover-only'
  563. Modified API commands:
  564. 'config' - include failover-only state
  565. ----------
  566. API V1.15 (cgminer v2.6.1)
  567. Added API commands:
  568. 'poolpriority'
  569. ----------
  570. API V1.14 (cgminer v2.5.0)
  571. Modified API commands:
  572. 'stats' - more icarus timing stats added
  573. 'notify' - include new device comms error counter
  574. The internal code for handling data was rewritten (~25% of the code)
  575. Completely backward compatible
  576. ----------
  577. API V1.13 (cgminer v2.4.4)
  578. Added API commands:
  579. 'check'
  580. Support was added to cgminer for API access groups with the --api-groups option
  581. It's 100% backward compatible with previous --api-access commands
  582. ----------
  583. API V1.12 (cgminer v2.4.3)
  584. Modified API commands:
  585. 'stats' - more pool stats added
  586. Support for the ModMinerQuad FPGA was added
  587. ----------
  588. API V1.11 (cgminer v2.4.2)
  589. Modified API commands:
  590. 'save' no longer requires a filename (use default if not specified)
  591. 'save' incorrectly returned status E (error) on success before.
  592. It now correctly returns S (success)
  593. ----------
  594. API V1.10 (cgminer v2.4.1)
  595. Added API commands:
  596. 'stats'
  597. N.B. the 'stats' command can change at any time so any specific content
  598. present should not be relied upon.
  599. The data content is mainly used for debugging purposes or hidden options
  600. in cgminer and can change as development work requires
  601. Modified API commands:
  602. 'pools' added "Last Share Time"
  603. ----------
  604. API V1.9 (cgminer v2.4.0)
  605. Added API commands:
  606. 'restart'
  607. Modified API commands:
  608. 'notify' corrected invalid JSON
  609. ----------
  610. API V1.8 (cgminer v2.3.5)
  611. Added API commands:
  612. 'devdetails'
  613. Support for the ZTex FPGA was added
  614. ----------
  615. API V1.7 (cgminer v2.3.4)
  616. Added API commands:
  617. 'removepool'
  618. Modified API commands:
  619. 'pools' added "User"
  620. From API version 1.7 onwards, reply strings in JSON and Text have the
  621. necessary escaping as required to avoid ambiguity
  622. For JSON the 2 characters '"' and '\' are escaped with a '\' before them
  623. For Text the 4 characters '|' ',' '=' and '\' are escaped the same way
  624. ----------
  625. API V1.6 (cgminer v2.3.2)
  626. Added API commands:
  627. 'pga'
  628. 'pgaenable'
  629. 'pgadisable'
  630. 'pgacount'
  631. Modified API commands:
  632. 'devs' now includes Icarus and Bitforce FPGA devices
  633. 'notify' added "*" to the front of the name of all numeric error fields
  634. 'config' correct "Log Interval" to use numeric (not text) type for JSON
  635. Support for Icarus and Bitforce FPGAs was added
  636. ----------
  637. API V1.5 was not released
  638. ----------
  639. API V1.4 (Kano's interim release of cgminer v2.3.1)
  640. Added API commands:
  641. 'notify'
  642. Modified API commands:
  643. 'config' added "Device Code" and "OS"
  644. Added "When" to the STATUS reply section of all commands
  645. ----------
  646. API V1.3 (cgminer v2.3.1-2)
  647. Added API commands:
  648. 'addpool'
  649. Modified API commands:
  650. 'devs'/'gpu' added "Total MH" for each device
  651. 'summary' added "Total MH"
  652. ----------
  653. API V1.2 (cgminer v2.3.0)
  654. Added API commands:
  655. 'enablepool'
  656. 'disablepool'
  657. 'privileged'
  658. Modified API commands:
  659. 'config' added "Log Interval"
  660. Starting with API V1.2, any attempt to access a command that requires
  661. privileged security, from an IP address that does not have privileged
  662. security, will return an "Access denied" Error Status
  663. ----------
  664. API V1.1 (cgminer v2.2.4)
  665. There were no changes to the API commands in cgminer v2.2.4,
  666. however support was added to cgminer for IP address restrictions
  667. with the --api-allow option
  668. ----------
  669. API V1.1 (cgminer v2.2.2)
  670. Prior to V1.1, devs/gpu incorrectly reported GPU0 Intensity for all GPUs
  671. Modified API commands:
  672. 'devs'/'gpu' added "Last Share Pool" and "Last Share Time" for each device
  673. ----------
  674. API V1.0 (cgminer v2.2.0)
  675. Remove default CPU support
  676. Added API commands:
  677. 'config'
  678. 'gpucount'
  679. 'cpucount'
  680. 'switchpool'
  681. 'gpuintensity'
  682. 'gpumem'
  683. 'gpuengine'
  684. 'gpufan'
  685. 'gpuvddc'
  686. 'save'
  687. ----------
  688. API V0.7 (cgminer v2.1.0)
  689. Initial release of the API in the main cgminer git
  690. Commands:
  691. 'version'
  692. 'devs'
  693. 'pools'
  694. 'summary'
  695. 'gpuenable'
  696. 'gpudisable'
  697. 'gpurestart'
  698. 'gpu'
  699. 'cpu'
  700. 'gpucount'
  701. 'cpucount'
  702. 'quit'
  703. ----------------------------------------
  704. miner.php
  705. =========
  706. miner.php is a PHP based interface to the cgminer RPC API
  707. (referred to simply as the API below)
  708. It can show rig details, summaries and input fields to allow you to change
  709. cgminer
  710. You can also create custom summary pages with it
  711. It has two levels to the security:
  712. 1) cgminer can be configured to allow or disallow API access and access level
  713. security for miner.php
  714. 2) miner.php can be configured to allow or disallow privileged cgminer
  715. access, if cgminer is configured to allow privileged access for miner.php
  716. ---------
  717. To use miner.php requires a web server with PHP
  718. Basics: On xubuntu 11.04, to install apache2 and php, the commands are:
  719. sudo apt-get install apache2
  720. sudo apt-get install php5
  721. sudo /etc/init.d/apache2 reload
  722. On Fedora 17:
  723. yum install httpd php
  724. systemctl restart httpd.service
  725. systemctl enable httpd.service --system
  726. On windows there are a few options.
  727. Try one of these (apparently the first one is easiest - thanks jborkl)
  728. http://www.easyphp.org/
  729. http://www.apachefriends.org/en/xampp.html
  730. http://www.wampserver.com/en/
  731. ---------
  732. The basic cgminer option to enable the API is:
  733. --api-listen
  734. or in your cgminer.conf
  735. "api-listen" : true,
  736. (without the ',' on the end if it is the last item)
  737. If the web server is running on the cgminer computer, the above
  738. is the only change required to give miner.php basic access to
  739. the cgminer API
  740. -
  741. If the web server runs on a different computer to cgminer,
  742. you will also need to tell cgminer to allow the web server
  743. to access cgminer's API and tell miner.php where cgminer is
  744. Assuming a.b.c.d is the IP address of the web server, you
  745. would add the following to cgminer:
  746. --api-listen --api-allow a.b.c.d
  747. or in your cgminer.conf
  748. "api-listen" : true,
  749. "api-allow" : "a.b.c.d",
  750. to tell cgminer to give the web server read access to the API
  751. You also need to tell miner.php where cgminer is.
  752. Assuming cgminer is at IP address e.f.g.h, then you would
  753. edit miner.php and change the line
  754. $rigs = array('127.0.0.1:4028');
  755. to
  756. $rigs = array('e.f.g.h:4028');
  757. See --api-network or --api-allow for more access details
  758. and how to give write access
  759. You can however, also tell miner.php to find your cgminer rigs automatically
  760. on the local subnet
  761. Add the following to each cgminer:
  762. --api-mcast
  763. or in your cgminer.conf
  764. "api-mcast" : true,
  765. And in miner.php set $mcast = true;
  766. This will ignore the value of $rigs and overwrite it with the list of zero or
  767. more rigs found on the network in the timeout specified
  768. A rig will not reply if the API settings would mean it would also ignore an
  769. API request from the web server running miner.php
  770. ---------
  771. Once you have a web server with PHP running
  772. copy your miner.php to the main web folder
  773. On Xubuntu 11.04
  774. /var/www/
  775. On Fedora 17
  776. /var/www/html/
  777. On Windows
  778. see your windows Web/PHP documentation
  779. Assuming the IP address of the web server is a.b.c.d
  780. Then in your web browser go to:
  781. http://a.b.c.d/miner.php
  782. Done :)
  783. ---------
  784. The rest of this documentation deals with the more complex
  785. functions of miner.php, using myminer.php, creaing custom
  786. summaries and displaying multiple cgminer rigs
  787. ---------
  788. If you create a file called myminer.php in the same web folder
  789. where you put miner.php, miner.php will load it when it runs
  790. This is useful, to put any changes you need to make to miner.php
  791. instead of changing miner.php
  792. Thus if you update/get a new miner.php, you won't lose the changes
  793. you have made if you put all your changes in myminer.php
  794. (and don't change miner.php at all)
  795. A simple example myminer.php that defines 2 rigs
  796. (that I will keep referring to further below) is:
  797. <?php
  798. #
  799. $rigs = array('192.168.0.100:4028:A', '192.168.0.102:4028:B');
  800. #
  801. ?>
  802. Changes in myminer.php superscede what is in miner.php
  803. However, this is only valid for variables in miner.php before the
  804. 2 lines where myminer.php is included by miner.php:
  805. if (file_exists('myminer.php'))
  806. include_once('myminer.php');
  807. Every variable in miner.php above those 2 lines, can be changed by
  808. simply defining them in your myminer.php
  809. So although miner.php originally contains the line
  810. $rigs = array('127.0.0.1:4028');
  811. if you created the example myminer.php given above, it would actually
  812. change the value of $rigs that is used when miner.php is running
  813. i.e. you don't have to remove or comment out the $rigs line in miner.php
  814. It will be superceded by myminer.php
  815. ---------
  816. The example myminer.php above also shows how to define more that one rig
  817. to be shown my miner.php
  818. Each rig string is 2 or 3 values seperated by colons ':'
  819. They are simply an IP address or host name, followed by the
  820. port number (usually 4028) and an optional Name string
  821. miner.php displays rig buttons that will show the defails of a single
  822. rig when you click on it - the button shows either the rig number,
  823. or the 'Name' string if you provide it
  824. PHP arrays contain each string seperated by a comma, but no comma after
  825. the last one
  826. So an example for 3 rigs would be:
  827. $rigs = array('192.168.0.100:4028:A', '192.168.0.102:4028:B',
  828. '192.168.0.110:4028:C');
  829. Of course each of the rigs listed would also have to have the API
  830. running and be set to allow the web server to access the API - as
  831. explained before
  832. ---------
  833. So basically, any variable explained below can be put in myminer.php
  834. if you wanted to set it to something different to it's default value
  835. and did not want to change miner.php itself every time you updated it
  836. Below is each variable that can be changed and an explanation of each
  837. ---------
  838. Default:
  839. $dfmt = 'H:i:s j-M-Y \U\T\CP';
  840. Define the date format used to print full length dates
  841. If you get the string 'UTCP' on the end of your dates shown, that
  842. means you are using an older version of PHP and you can instead use:
  843. $dfmt = 'H:i:s j-M-Y \U\T\CO';
  844. The PHP documentation on the date format is here:
  845. http://us.php.net/manual/en/function.date.php
  846. ---------
  847. Default:
  848. $title = 'Mine';
  849. Web page title
  850. If you know PHP you can of course use code to define it e.g.
  851. $title = 'My Rig at: '.date($dfmt);
  852. Which would set the web page title to something like:
  853. My Rig at: 10:34:00 22-Aug-2012 UTC+10:00
  854. ---------
  855. Default:
  856. $readonly = false;
  857. Set $readonly to true to force miner.php to be readonly
  858. This means it won't allow you to change cgminer even if the cgminer API
  859. options allow it to
  860. If you set $readonly to false then it will check cgminer 'privileged'
  861. and will show input fields and buttons on the single rig page
  862. allowing you to change devices, pools and even quit or restart
  863. cgminer
  864. However, if the 'privileged' test fails, the code will set $readonly to
  865. true
  866. ---------
  867. Default:
  868. $userlist = null;
  869. Define password checking and default access
  870. null means there is no password checking
  871. $userlist is an array of 3 arrays e.g.
  872. $userlist = array('sys' => array('boss' => 'bpass'),
  873. 'usr' => array('user' => 'upass', 'pleb' => 'ppass'),
  874. 'def' => array('Pools'));
  875. 'sys' is an array of system users and passwords (full access)
  876. 'usr' is an array of user level users and passwords (readonly access)
  877. 'def' is an array of custompages that anyone not logged in can view
  878. Any of the 3 can be null, meaning there are none of that item
  879. All validated 'usr' users are given $readonly = true; access
  880. All validated 'sys' users are given the $readonly access you defined
  881. If 'def' has one or more values, and allowcustompages is true, then
  882. anyone without a password can see the list of custompage buttons given
  883. in 'def' and will see the first one when they go to the web page, with
  884. a login button at the top right
  885. From the login page, if you login with no username or password, it will
  886. show the first 'def' custompage (if there are any)
  887. If you are logged in, it will show a logout button at the top right
  888. ---------
  889. Default:
  890. $notify = true;
  891. Set $notify to false to NOT attempt to display the notify command
  892. table of data
  893. Set $notify to true to attempt to display the notify command on
  894. the single rig page
  895. If your older version of cgminer returns an 'Invalid command'
  896. coz it doesn't have notify - it just shows the error status table
  897. ---------
  898. Default:
  899. $checklastshare = true;
  900. Set $checklastshare to true to do the following checks:
  901. If a device's last share is 12x expected ago then display as an error
  902. If a device's last share is 8x expected ago then display as a warning
  903. If either of the above is true, also display the whole line highlighted
  904. This assumes shares are 1 difficulty shares
  905. Set $checklastshare to false to not do the above checks
  906. 'expected' is calculated from the device MH/s value
  907. So for example, a device that hashes at 380MH/s should (on average)
  908. find a share every 11.3s
  909. If the last share was found more than 11.3 x 12 seconds (135.6s) ago,
  910. it is considered an error and highlighted
  911. If the last share was found more than 11.3 x 8 seconds (90.4s) ago,
  912. it is considered a warning and highlighted
  913. The default highlighting is very subtle
  914. ---------
  915. Default:
  916. $poolinputs = false;
  917. Set $poolinputs to true to show the input fields for adding a pool
  918. and changing the pool priorities on a single rig page
  919. However, if $readonly is true, it will not display them
  920. ---------
  921. Default:
  922. $rigport = 4028;
  923. Default port to use if any $rigs entries don't specify the port number
  924. ---------
  925. Default:
  926. $rigs = array('127.0.0.1:4028');
  927. Set $rigs to an array of your cgminer rigs that are running
  928. format: 'IP' or 'Host' or 'IP:Port' or 'Host:Port' or 'Host:Port:Name'
  929. If you only have one rig, it will just show the detail of that rig
  930. If you have more than one rig it will show a summary of all the rigs
  931. with buttons to show the details of each rig -
  932. the button contents will be 'Name' rather than rig number, if you
  933. specify 'Name'
  934. If Port is missing or blank, it will try $rigport
  935. e.g. $rigs = array('127.0.0.1:4028','myrig.com:4028:Sugoi');
  936. ---------
  937. Default:
  938. $rignames = false;
  939. Set $rignames to false to not affect the display.
  940. Set $rignames to one of 'ip' or 'ipx' to alter the name displayed
  941. if the rig doesn't have a 'name' in $rigs
  942. Currently:
  943. 'ip' means use the 4th byte of the rig IP address as an integer
  944. 'ipx' means use the 4th byte of the rig IP address as 2 hex bytes
  945. ---------
  946. Default:
  947. $rigbuttons = true;
  948. Set $rigbuttons to false to display a link rather than a button on
  949. the left of any summary table with rig buttons, in order to reduce
  950. the height of the table cells
  951. ---------
  952. Default:
  953. $mcast = false;
  954. Set $mcast to true to look for your rigs and ignore $rigs
  955. ---------
  956. Default:
  957. $mcastexpect = 0;
  958. The minimum number of rigs expected to be found when $mcast is true
  959. If fewer are found, an error will be included at the top of the page
  960. ---------
  961. Default:
  962. $mcastaddr = '224.0.0.75';
  963. API Multicast address all cgminers are listening on
  964. ---------
  965. Default:
  966. $mcastport = 4028;
  967. API Multicast UDP port all cgminers are listening on
  968. ---------
  969. Default:
  970. $mcastcode = 'FTW';
  971. The code all cgminers expect in the Multicast message sent
  972. The message sent is "cgm-code-listport"
  973. Don't use the '-' character if you change it
  974. ---------
  975. Default:
  976. $mcastlistport = 4027;
  977. UDP port number that is added to the broadcast message sent
  978. that specifies to the cgminers the port to reply on
  979. ---------
  980. Default:
  981. $mcasttimeout = 1.5;
  982. Set $mcasttimeout to the number of seconds (floating point)
  983. to wait for replies to the Multicast message
  984. N.B. the accuracy of the timing used to wait for the replies is
  985. ~0.1s so there's no point making it more than one decimal place
  986. ---------
  987. Default:
  988. $mcastretries = 0;
  989. Set $mcastretries to the number of times to retry the multicast
  990. If $mcastexpect is 0, this is simply the number of extra times
  991. that it will send the multicast request
  992. N.B. cgminer doesn't listen for multicast requests for 1000ms after
  993. each one it hears
  994. If $mcastexpect is > 0, it will stop looking for replies once it
  995. has found at least $mcastexpect rigs, but it only checks this rig
  996. limit each time it reaches the $mcasttimeout limit, thus it can find
  997. more than $mcastexpect rigs if more exist
  998. It will send the multicast message up to $mcastretries extra times or
  999. until it has found at least $mcastexpect rigs
  1000. However, when using $mcastretries, it is possible for it to sometimes
  1001. ignore some rigs on the network if $mcastexpect is less than the
  1002. number of rigs on the network and some rigs are too slow to reply
  1003. ---------
  1004. Default:
  1005. $allowgen = false;
  1006. Set $allowgen to true to allow customsummarypages to use 'gen' and 'bgen'
  1007. false means ignore any 'gen' or 'bgen' options
  1008. This is disabled by default due to the possible security risk of using it
  1009. See the end of this document for an explanation
  1010. ---------
  1011. Default:
  1012. $rigipsecurity = true;
  1013. Set $rigipsecurity to false to show the IP/Port of the rig
  1014. in the socket error messages and also show the full socket message
  1015. ---------
  1016. Default:
  1017. $rigtotals = true;
  1018. $forcerigtotals = false;
  1019. Set $rigtotals to true to display totals on the single rig page
  1020. 'false' means no totals (and ignores $forcerigtotals)
  1021. If $rigtotals is true, all data is also right aligned
  1022. With false, it's as before, left aligned
  1023. This option is just here to allow people to set it to false
  1024. if they prefer the old non-total display when viewing a single rig
  1025. Also, if there is only one line shown in any section, then no
  1026. total will be shown (to save screen space)
  1027. You can force it to always show rig totals on the single rig page,
  1028. even if there is only one line, by setting $forcerigtotals = true;
  1029. ---------
  1030. Default:
  1031. $socksndtimeoutsec = 10;
  1032. $sockrcvtimeoutsec = 40;
  1033. The numbers are integer seconds
  1034. The defaults should be OK for most cases
  1035. However, the longer SND is, the longer you have to wait while
  1036. php hangs if the target cgminer isn't runnning or listening
  1037. RCV should only ever be relevant if cgminer has hung but the
  1038. API thread is still running, RCV would normally be >= SND
  1039. Feel free to increase SND if your network is very slow
  1040. or decrease RCV if that happens often to you
  1041. Also, on some windows PHP, apparently the $usec is ignored
  1042. (so usec can't be specified)
  1043. ---------
  1044. Default:
  1045. $hidefields = array();
  1046. List of fields NOT to be displayed
  1047. You can use this to hide data you don't want to see or don't want
  1048. shown on a public web page
  1049. The list of sections are:
  1050. SUMMARY, POOL, PGA, GPU, NOTIFY, CONFIG, DEVDETAILS, DEVS
  1051. See the web page for the list of field names (the table headers)
  1052. It is an array of 'SECTION.Field Name' => 1
  1053. This example would hide the slightly more sensitive pool information:
  1054. Pool URL and pool username:
  1055. $hidefields = array('POOL.URL' => 1, 'POOL.User' => 1);
  1056. If you just want to hide the pool username:
  1057. $hidefields = array('POOL.User' => 1);
  1058. ---------
  1059. Default:
  1060. $ignorerefresh = false;
  1061. $changerefresh = true;
  1062. $autorefresh = 0;
  1063. Auto-refresh of the page (in seconds) - integers only
  1064. $ignorerefresh = true/false always ignore refresh parameters
  1065. $changerefresh = true/false show buttons to change the value
  1066. $autorefresh = default value, 0 means dont auto-refresh
  1067. ---------
  1068. Default:
  1069. $miner_font_family = 'verdana,arial,sans';
  1070. $miner_font_size = '13pt';
  1071. Change these to set the font and font size used on the web page
  1072. ---------
  1073. Default:
  1074. $add_css_names = array();
  1075. List of CSS names to add to the CSS style object
  1076. e.g. array('td.cool' => false);
  1077. true/false to not include the default $miner_font
  1078. The CSS name/value pairs must be defined in $colouroverride below
  1079. This allows you to create multiple complete CSS styles, optionally
  1080. using a different font to the default used/specified for all other
  1081. styles, and then when using the class name in a custom formatting
  1082. function (fmt) in a customsummarypage, it can use this style
  1083. ---------
  1084. Default:
  1085. $colouroverride = array();
  1086. Use this to change the web page colour scheme
  1087. See $colourtable in miner.php for the list of possible names to change
  1088. Simply put in $colouroverride, just the colours you wish to change
  1089. e.g. to change the colour of the header font and background
  1090. you could do the following:
  1091. $colouroverride = array(
  1092. 'td.h color' => 'green',
  1093. 'td.h background' => 'blue'
  1094. );
  1095. You can also add your own CSS styles to be used by a customsummarypage
  1096. custom format function, if you specify the class name in $add_css_names
  1097. and put the class styles in $colouroverride
  1098. ---------
  1099. Default:
  1100. $placebuttons = 'top';
  1101. Where to place the Refresh, Summary, Custom Pages, Quit, etc. buttons
  1102. Valid values are: 'top' 'bot' 'both'
  1103. anything else means don't show them - case sensitive
  1104. ---------
  1105. Default:
  1106. $allowcustompages = true;
  1107. Should we allow custom pages?
  1108. (or just completely ignore them and don't display the buttons)
  1109. ---------
  1110. OK this part is more complex: Custom Summary Pages
  1111. A custom summary page in an array of 'section' => array('FieldA','FieldB'...)
  1112. The section defines what data you want in the summary table and the Fields
  1113. define what data you want shown from that section
  1114. Standard sections are:
  1115. SUMMARY, POOL, PGA, GPU, NOTIFY, CONFIG, DEVDETAILS, DEVS, EDEVS, STATS,
  1116. ESTATS, COIN
  1117. Fields are the names as shown on the headers on the normal pages
  1118. There is a special field name '#' that will total to the number of rows
  1119. displayed in the custom summary page
  1120. In the actual row output it is a row counter per rig
  1121. Fields can be 'name=new name' to display 'name' with a different heading
  1122. 'new name'
  1123. There are also now joined sections:
  1124. SUMMARY+POOL, SUMMARY+DEVS, SUMMARY+EDEVS, DEVS+STATS, EDEVS+ESTATS,
  1125. POOL+STATS plus many more
  1126. See the miner.php function joinsections() for the full list
  1127. These sections are an SQL join of the two sections and the fields in them
  1128. are named section.field where section. is the section the field comes from
  1129. See the example further down
  1130. Also note:
  1131. - empty tables are not shown
  1132. - empty columns (e.g. an unknown field) are not shown
  1133. - missing field data shows as blank
  1134. - the field name '*' matches all fields except in joined sections
  1135. (useful for STATS and COIN)
  1136. There are 2 hard coded sections:
  1137. DATE - displays a date table like at the start of 'Summary'
  1138. RIGS - displays a rig table like at the start of 'Summary'
  1139. Each custom summary requires a second array, that can be empty, listing fields
  1140. to be totaled for each section
  1141. If there is no matching total data, no total will show
  1142. ---------
  1143. Looking at the Mobile example:
  1144. $mobilepage = array(
  1145. 'DATE' => null,
  1146. 'RIGS' => null,
  1147. 'SUMMARY' => array('Elapsed', 'MHS av', 'Found Blocks=Blks',
  1148. Accepted', 'Rejected=Rej', 'Utility'),
  1149. 'DEVS+NOTIFY' => array('DEVS.Name=Name', 'DEVS.ID=ID', 'DEVS.Status=Status',
  1150. 'DEVS.Temperature=Temp', 'DEVS.MHS av=MHS av',
  1151. 'DEVS.Accepted=Accept', 'DEVS.Rejected=Rej',
  1152. 'DEVS.Utility=Utility', 'NOTIFY.Last Not Well=Not Well'),
  1153. 'POOL' => array('POOL', 'Status', 'Accepted', 'Rejected=Rej',
  1154. 'Last Share Time'));
  1155. $mobilesum = array(
  1156. 'SUMMARY' => array('MHS av', 'Found Blocks', 'Accepted', 'Rejected',
  1157. 'Utility'),
  1158. 'DEVS+NOTIFY' => array('DEVS.MHS av', 'DEVS.Accepted', 'DEVS.Rejected',
  1159. 'DEVS.Utility'),
  1160. 'POOL' => array('Accepted', 'Rejected'));
  1161. $customsummarypages = array('Mobile' => array($mobilepage, $mobilesum));
  1162. This will show 5 tables (according to $mobilepage)
  1163. Each table will have the chosen details for all the rigs specified in $rigs
  1164. DATE
  1165. A single box with the web server's current date and time
  1166. RIGS
  1167. A table of the rigs: description, time, versions etc
  1168. SUMMARY
  1169. This will use the API 'summary' command and show the selected fields:
  1170. Elapsed, MHS av, Found Blocks, Accepted, Rejected and Utility
  1171. However, 'Rejected=Rej' means that the header displayed for the 'Rejected'
  1172. field will be 'Rej', instead of 'Rejected' (to save space)
  1173. Same for 'Found Blocks=Blks' - to save space
  1174. DEVS+NOTIFY
  1175. This will list each of the devices on each rig and display the list of
  1176. fields as shown
  1177. It will also include the 'Last Not Well' field from the 'notify' command
  1178. so you know when the device was last not well
  1179. You will notice that you need to rename each field e.g. 'DEVS.Name=Name'
  1180. since each field name in the join between DEVS and NOTIFY is actually
  1181. section.fieldname, not just fieldname
  1182. The join code automatically adds 2 fields to each GPU device: 'Name' and 'ID'
  1183. They don't exist in the API 'devs' output but I can correctly calculate
  1184. them from the GPU device data
  1185. These two fields are used to join DEVS to NOTIFY i.e. find the NOTIFY
  1186. record that has the same Name and ID as the DEVS record and join them
  1187. POOL
  1188. This will use the API 'pools' command and show the selected fields:
  1189. POOL, Status, Accepted, Rejected, Last Share Time
  1190. Again, I renamed the 'Rejected' field using 'Rejected=Rej', to save space
  1191. $mobilesum lists the sections and fields that should have a total
  1192. You can't define them for 'DATE' or 'RIGS' since they are hard coded tables
  1193. The example given:
  1194. SUMMARY
  1195. Show a total at the bottom of the columns for:
  1196. MHS av, Found Blocks, Accepted, Rejected, Utility
  1197. Firstly note that you use the original name i.e. for 'Rejected=Rej'
  1198. you use 'Rejected', not 'Rej' and not 'Rejected=Rej'
  1199. Secondly note that it simply adds up the fields
  1200. If you ask for a total of a string field you will get the numerical
  1201. sum of the string data
  1202. DEVS+NOTIFY
  1203. Simply note in this join example that you must use the original field
  1204. names which are section.fieldname, not just fieldname
  1205. POOL
  1206. Show a total at the bottom of the columns for:
  1207. Accepted and Rejected
  1208. Again remember to use the original field name 'Rejected'
  1209. ---------
  1210. With cgminer 2.10.2 and later, miner.php includes an extension to
  1211. the custom pages that allows you to apply SQL style commands to
  1212. the data: where, group, and having
  1213. cgminer 3.4.2 and later also includes another option 'gen'
  1214. cgminer 4.2.0 and later also includes another option 'fmt'
  1215. cgminer 4.2.1 and later also includes another option 'bgen'
  1216. An example of an 'ext' section in a more complex custom summary page:
  1217. $poolsext = array(
  1218. 'POOL+STATS' => array(
  1219. 'where' => null,
  1220. 'group' => array('POOL.URL', 'POOL.Has Stratum',
  1221. 'POOL.Stratum Active', 'POOL.Has GBT'),
  1222. 'calc' => array('POOL.Difficulty Accepted' => 'sum',
  1223. 'POOL.Difficulty Rejected' => 'sum',
  1224. 'STATS.Times Sent' => 'sum',
  1225. 'STATS.Bytes Sent' => 'sum',
  1226. 'STATS.Times Recv' => 'sum',
  1227. 'STATS.Bytes Recv' => 'sum'),
  1228. 'gen' => array('AvShr', 'POOL.Difficulty Accepted/max(POOL.Accepted,1)),
  1229. 'having' => array(array('STATS.Bytes Recv', '>', 0)),
  1230. 'fmt' => 'myfmtfunc'));
  1231. function myfmtfunc($section, $name, $value, $when, $alldata,
  1232. $warnclass, $errorclass, $hiclass, $loclass, $totclass);
  1233. {
  1234. $ret = '';
  1235. $class = '';
  1236. switch ($section.'.'.$name)
  1237. {
  1238. case 'GEN.AvShr':
  1239. $ret = number_format((float)$value, 2);
  1240. if ($value == 0)
  1241. $class = $errorclass;
  1242. break;
  1243. // Nonsence example :) since total would show the sum of the averages
  1244. case 'total.AvShr':
  1245. $ret = $value;
  1246. if ($value == 0)
  1247. $class = $warnclass;
  1248. break;
  1249. }
  1250. return array($ret, $class);
  1251. }
  1252. This allows you to group records together from one or more rigs
  1253. In the example, you'll get each Pool (with the same URL+Stratum+GBT settings)
  1254. listed once for all rigs and a sum of each of the fields listed in 'calc'
  1255. 'where' and 'having' are an array of fields and restrictions to apply
  1256. In the above example, it will only display the rows where it contains the
  1257. 'STATS.Bytes Recv' field with a value greater than zero
  1258. If the row doesn't have the field, it will always be included
  1259. All restrictions must be true in order for the row to be included
  1260. Any restiction that is invalid or unknown is true
  1261. An empty array, or null, means there are no restrictions
  1262. A restriction is formatted as: array('Field', 'restriction', 'value')
  1263. Field is the simple field name as normally displayed, or SECTION.Field
  1264. if it is a joined section (as in this case 'POOL+STATS')
  1265. The list of restrictions are:
  1266. 'set' - true if the row contains the 'Field' ('value' is not required or used)
  1267. '=', '<', '<=', '>', '>' - a numerical comparison
  1268. 'eq', 'lt', 'le', 'gt', 'ge' - a case insensitive string comparison
  1269. You can have multiple restrictions on a 'Field' - but all must be true to
  1270. include the row containing the 'Field'
  1271. e.g. a number range between 0 and 10 would be:
  1272. array('STATS.Bytes Recv', '>', 0), array('STATS.Bytes Recv', '<', 10)
  1273. The difference between 'where' and 'having' is that 'where' is applied to the
  1274. data before grouping it and 'having' is applied to the data after grouping it
  1275. - otherwise they work the same
  1276. 'group' lists the fields to group over and 'calc' lists the function to apply
  1277. to other fields that are not part of 'group'
  1278. You can only see fields listed in 'group' and 'calc'
  1279. A 'calc' is formatted as: 'Field' => 'function'
  1280. The current list of operations available for 'calc' are:
  1281. 'sum', 'avg', 'min', 'max', 'lo', 'hi', 'count', 'any'
  1282. The first 4 are as expected - the numerical sum, average, minimum or maximum
  1283. 'lo' is the first string of the list, sorted ignoring case
  1284. 'hi' is the last string of the list, sorted ignoring case
  1285. 'count' is the number of rows in the section specified in the calc e.g.
  1286. ('DEVS.Name' => 'count') would be the number of DEVS selected in the 'where'
  1287. of course any valid 'DEVS.Xyz' would give the same 'count' value
  1288. 'any' is effectively random: the field value in the 1st row of the grouped data
  1289. An unrecognised 'function' uses 'any'
  1290. A 'fmt' allows you to specify a function to be called by miner.php to format
  1291. data to be displayed in the output html
  1292. If the function doesn't exist in miner.php or myminer.php, then it will be
  1293. ignored
  1294. If the function returns a $ret value (see the example 'myfmtfunc' above) then
  1295. that will be displayed, however if $ret is empty, then the normal formatting
  1296. code will process the data to be displayed
  1297. Thus, if there is no formatting code in miner.php for the field value, then it
  1298. will be displayed as it was received from the API
  1299. i.e. this allows you to either supply some php code to format field values
  1300. that are not formatted by miner.php, or you can also override the formatting
  1301. done by miner.php itself for your chosen list of field data
  1302. You can return an '&nbsp;' if you wish to force it to display as blank
  1303. Use the example 'myfmtfunc' above as a template to write your own
  1304. Note that your provided function will be called for all data being displayed,
  1305. so you should use the 'case' layout as in the example to select the data fields
  1306. you wish to format, but return '' for fields you don't wish to change the way
  1307. they are formatted
  1308. The 2nd return field is the name of a CSS class in $colourtable or created in
  1309. your own $add_css_names and $colouroverride
  1310. The value you return can stay in effect even if you return an empty $ret, if
  1311. the default formatting function for the field doesn't set the $class variable
  1312. The fields passed to your function by miner.php:
  1313. $warnclass, $errorclass, $hiclass, $loclass, $totclass
  1314. contain the default class names used for formatting
  1315. A 'gen' or 'bgen' allows you to generate new fields from any php valid function
  1316. of any of the other fields
  1317. e.g. 'gen' => array('AvShr', 'POOL.Difficulty Accepted/max(POOL.Accepted,1)),
  1318. will generate a new field called GEN.AvShr that is the function shown, which
  1319. in this case is the average difficulty of each share submitted
  1320. The difference between 'bgen' and 'gen' is that 'bgen' is done before doing
  1321. the 'group' and 'calc', however 'gen' is done after doing 'group' and 'calc'
  1322. This means that 'group' and 'calc' can also use 'bgen' fields
  1323. As before, 'gen' fields act on the results of the 'group' and 'calc'
  1324. If there is no 'group' or 'calc' then they both will produce the same results
  1325. Note that 'gen' fields are called 'GEN.field' and 'bgen' fields, 'BGEN.field'
  1326. THERE IS A SECURITY RISK WITH HOW GEN/BGEN WORKS
  1327. It simply replaces all the variables with their values and then requests PHP
  1328. to execute the formula - thus if a field value returned from a cgminer API
  1329. request contained PHP code, it could be executed by your web server
  1330. Of course cgminer doesn't do this, but if you do not control the cgminer that
  1331. returns the data in the API calls, someone could modify cgminer to return a
  1332. PHP string in a field you use in 'gen' or 'bgen'
  1333. Thus use 'gen' and 'bgen' at your own risk
  1334. If someone feels the urge to write a mathematical interpreter in PHP to get
  1335. around this risk, feel free to write one and submit it to the API author for
  1336. consideration