Advertisement
Guest User

Untitled

a guest
Oct 8th, 2016
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.30 KB | None | 0 0
  1. Code Issues 47 Pull requests 1 Pulse
  2. Open
  3. Glances crash when exporting to InfluxDB #931
  4. @Coriou
  5. Coriou opened this issue 11 days ago • edited 11 days ago
  6. bug needs discussion needs more info
  7. I seem to have a problem when I'm trying to run Glances to export data to InfluxDB. There seems to be a few issues very similar to mine, however all closed and apparently fixed.
  8.  
  9. Am I missing something here ?
  10.  
  11. EDIT : Problem happens even if I use the --disable-docker flag.
  12.  
  13. Description
  14.  
  15. I'm getting this error shortly after running glances --export-influxdb -C /etc/glances/glances.conf :
  16.  
  17. Traceback (most recent call last):
  18. File "/usr/local/bin/glances", line 9, in <module>
  19. load_entry_point('Glances==2.7.1', 'console_scripts', 'glances')()
  20. File "/usr/local/lib/python2.7/dist-packages/glances/__init__.py", line 130, in main
  21. standalone.serve_forever()
  22. File "/usr/local/lib/python2.7/dist-packages/glances/standalone.py", line 111, in serve_forever
  23. return self.__serve_forever()
  24. File "/usr/local/lib/python2.7/dist-packages/glances/standalone.py", line 96, in __serve_forever
  25. self.screen.update(self.stats)
  26. File "/usr/local/lib/python2.7/dist-packages/glances/outputs/glances_curses.py", line 1018, in update
  27. self.flush(stats, cs_status=cs_status)
  28. File "/usr/local/lib/python2.7/dist-packages/glances/outputs/glances_curses.py", line 996, in flush
  29. self.display(stats, cs_status=cs_status)
  30. File "/usr/local/lib/python2.7/dist-packages/glances/outputs/glances_curses.py", line 541, in display
  31. args=self.args, max_width=plugin_max_width)
  32. File "/usr/local/lib/python2.7/dist-packages/glances/plugins/glances_plugin.py", line 631, in get_stats_display
  33. 'msgdict': self.msg_curse(args),
  34. File "/usr/local/lib/python2.7/dist-packages/glances/plugins/glances_network.py", line 281, in msg_curse
  35. for i in sorted(self.stats, key=operator.itemgetter(self.get_key())):
  36. TypeError: string indices must be integers, not str
  37. Versions
  38.  
  39. Glances (glances -V): 2.7.1
  40. PSutil (glances -V): 4.3.1
  41. Operating System (lsb_release -a): Debian GNU/Linux 8.5 (jessie)
  42. Influx (influx -version) : 1.0.0
  43. Config
  44.  
  45. My glances.conf file (influx server running fine, database exists, valid credentials) :
  46.  
  47. [influxdb]
  48. host=localhost
  49. port=8086
  50. user=root
  51. password=root
  52. db=glances
  53. Log
  54.  
  55. ERROR -- Cannot export docker stats to InfluxDB (400: {"error":"unable to parse 'docker,server=stats ': invalid field format"}
  56.  
  57. Complete : http://pastebin.com/QMz4WDyx
  58. nicolargo added the bug label 11 days ago
  59. nicolargo added this to the Version 2.8 milestone 11 days ago
  60. @nicolargo
  61. nicolargo
  62. commented 11 days ago
  63. Hi @Coriou .
  64.  
  65. I can not reproduce the bug on my system (more or less the same configuration).
  66.  
  67. My conf file:
  68.  
  69. [influxdb]
  70. # Configuration for the --export-influxdb option
  71. # https://influxdb.com/
  72. host=localhost
  73. port=8086
  74. user=root
  75. password=root
  76. db=glances
  77. prefix=localhost
  78. #tags=foo:bar,spam:eggs
  79. My command line:
  80.  
  81. $ glances --export-influxdb -C ./glances.conf
  82. and the log file (/tmp/glances.log):
  83.  
  84. 2016-09-27 21:35:14,017 -- INFO -- Start Glances 2.7.1
  85. 2016-09-27 21:35:14,017 -- INFO -- CPython 2.7.12 and PSutil 4.3.1 detected
  86. 2016-09-27 21:35:14,021 -- INFO -- Read configuration file './glances.conf'
  87. 2016-09-27 21:35:14,022 -- INFO -- Start standalone mode
  88. 2016-09-27 21:35:14,325 -- INFO -- Stats will be exported to InfluxDB server: http://localhost:8086
  89. 2016-09-27 21:39:11,082 -- INFO -- Stop Glances
  90. The result:
  91.  
  92. selection_257
  93.  
  94. Is your Docker plugin displayed correctly in the user interface ?
  95. Can we have a screenshot ?
  96. nicolargo added the needs more info label 11 days ago
  97. nicolargo added the needs discussion label 11 days ago
  98. @Coriou
  99. Coriou
  100. commented 10 days ago
  101. Hello !
  102.  
  103. Thanks for trying to reproduce my issue. I thought it would work though (I mean that I thought you'd be able to reproduce easily). Are you also using Influx 1.0 ? Other than that my config is quite standard.
  104.  
  105. Anyway, I've been trying again this morning without any luck. Same thing happens.
  106.  
  107. Here's my InfluxDB (empty, of course) :
  108.  
  109. influxDB Web Admin
  110.  
  111. And this is my Glances UI (started simply with glances, no params). It runs fine :
  112.  
  113. Glances
  114.  
  115. I have installed all the optional dependencies for Glances, using pip as mentioned in the docs (I only replaced cassandra with cassandra-driver, but I don't use it anyway) :
  116.  
  117. pip install bottle requests batinfo https://bitbucket.org/gleb_zhulik/py3sensors/get/tip.tar.gz zeroconf netifaces pymdstat influxdb elasticsearch potsdb statsd pystache docker-py pysnmp pika py-cpuinfo bernhard cassandra-driver scandir
  118.  
  119. Here's my pip freeze : http://pastebin.com/k0gMJDtj
  120. Coriou closed this issue 10 days ago
  121. Coriou reopened this issue 10 days ago
  122. @nicolargo
  123. nicolargo commented 9 days ago • edited 9 days ago
  124. Yes i have InfluxDB version 1.0.0 runniing inside a container (Docker).
  125.  
  126. Have you try to delete and recreate your glances database ?
  127.  
  128. Another idea: try to run Glances with the debug mode on (-d option) and paste/bin us the /tmp/glances.log file.
  129. @Coriou
  130. Coriou commented 8 days ago • edited 3 days ago
  131. Hey !
  132.  
  133. Yes, I have recreated my glances database.
  134.  
  135. I have attached the glances.log file to this post, here's a Pastebin too.
  136.  
  137. EDIT : Is it worth mentioning that I don't use, or even have installed, Docker ?
  138.  
  139. Thanks !
  140. @tuwid
  141. tuwid commented 3 days ago • edited 3 days ago
  142. Hi,
  143. i'm having this issue too :
  144.  
  145. Traceback (most recent call last):ng or critical alert detected
  146. File "/usr/bin/glances", line 9, in <module>
  147. load_entry_point('Glances==2.7.1', 'console_scripts', 'glances')()
  148. File "/usr/lib/python2.7/site-packages/glances/__init__.py", line 130, in main
  149. standalone.serve_forever()
  150. File "/usr/lib/python2.7/site-packages/glances/standalone.py", line 111, in serve_forever
  151. return self.__serve_forever()
  152. File "/usr/lib/python2.7/site-packages/glances/standalone.py", line 96, in __serve_forever
  153. self.screen.update(self.stats)
  154. File "/usr/lib/python2.7/site-packages/glances/outputs/glances_curses.py", line 1018, in update
  155. self.flush(stats, cs_status=cs_status)
  156. File "/usr/lib/python2.7/site-packages/glances/outputs/glances_curses.py", line 996, in flush
  157. self.display(stats, cs_status=cs_status)
  158. File "/usr/lib/python2.7/site-packages/glances/outputs/glances_curses.py", line 541, in display
  159. args=self.args, max_width=plugin_max_width)
  160. File "/usr/lib/python2.7/site-packages/glances/plugins/glances_plugin.py", line 631, in get_stats_display
  161. 'msgdict': self.msg_curse(args),
  162. File "/usr/lib/python2.7/site-packages/glances/plugins/glances_network.py", line 281, in msg_curse
  163. for i in sorted(self.stats, key=operator.itemgetter(self.get_key())):
  164. TypeError: string indices must be integers, not str
  165.  
  166. I do have the data on flux but this will crash after a while ( 20 seconds or more )
  167.  
  168. and i get these logs
  169.  
  170. 2016-10-05 08:28:05,269 -- DEBUG -- Export cpu stats to InfluxDB
  171. 2016-10-05 08:28:05,380 -- DEBUG -- AMPS: python process detected (PID=20152)
  172. 2016-10-05 08:28:05,381 -- DEBUG -- AMPS: systemd process detected (PID=2011)
  173. 2016-10-05 08:28:05,382 -- DEBUG -- AMPS: systemv process detected (PID=1)
  174. 2016-10-05 08:28:05,382 -- DEBUG -- Plugin amps update return [{'count': 2, 'timer': 0.0017778873443603516, 'countmax': 20.0, 'name': u'Python', 'key': u'python', 'countmin': None, 'refresh': 3.0, 'result': None}, {'count': 0, 'timer': 103.90564513206482, 'countmax': None, 'name': u'Dropbox', 'key': u'dropbox', 'countmin': 1.0, 'refresh': 3.0, 'result': u'No running process'}, {'count': 3, 'timer': 6.547297954559326, 'countmax': None, 'name': 'Systemd', 'key': u'systemd', 'countmin': None, 'refresh': 30.0, 'result': u'Services active: 364 loaded: 364 '}, {'count': 1, 'timer': 6.538012981414795, 'countmax': None, 'name': 'SystemV', 'key': u'systemv', 'countmin': None, 'refresh': 30.0, 'result': None}, {'count': 0, 'timer': 103.90345215797424, 'countmax': None, 'name': 'Nginx', 'key': u'nginx', 'countmin': None, 'refresh': 60.0, 'result': None}]
  175. 2016-10-05 08:28:05,382 -- DEBUG -- Plugin batpercent update return [{'unit': '%', 'value': [], 'label': 'Battery'}]
  176. 2016-10-05 08:28:05,383 -- DEBUG -- Plugin cpu update return {'softirq': 0.2, 'iowait': 0.0, 'interrupts': 1901, 'system': 1.4, 'guest': 0.0, 'soft_interrupts': 578, 'time_since_update': 3.2483091354370117, 'idle': 95.4, 'user': 2.8, 'guest_nice': 0.0, 'irq': 0.0, 'cpucore': 2, 'syscalls': 0, 'total': 5.2, 'steal': 0.3, 'ctx_switches': 3585, 'nice': 0.0}
  177. 2016-10-05 08:28:08,397 -- DEBUG -- Export stats using the influxdb module
  178. 2016-10-05 08:28:08,397 -- DEBUG -- Docker export error 'containers'
  179. 2016-10-05 08:28:08,398 -- DEBUG -- Plugin load update return {'cpucore': 2, 'min1': 0.12, 'min5': 0.06, 'min15': 0.01}
  180. 2016-10-05 08:28:08,398 -- DEBUG -- Export load stats to InfluxDB
  181. 2016-10-05 08:28:08,399 -- DEBUG -- Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
  182. 2016-10-05 08:28:08,402 -- DEBUG -- No config file found
  183. 2016-10-05 08:28:08,405 -- DEBUG -- Export docker stats to InfluxDB
  184. 2016-10-05 08:28:08,415 -- DEBUG -- Can't connect to the Docker server (('Connection aborted.', error(2, 'No such file or directory')))
  185. 2016-10-05 08:28:08,416 -- DEBUG -- Plugin docker update return {}
  186. 2016-10-05 08:28:08,418 -- DEBUG -- Plugin ip update return {'public_address': u'139.162.176.93', 'mask_cidr': 24, 'mask': '255.255.255.0', 'gateway': '139.162.176.1', 'address': '139.162.176.93'}
  187. 2016-10-05 08:28:08,419 -- DEBUG -- Plugin memswap update return {'used': 0, 'percent': 0.0, 'free': 536866816, 'sout': 0, 'total': 536866816, 'sin': 0}
  188. 2016-10-05 08:28:08,425 -- DEBUG -- Plugin network update return [{'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'gre0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip6tnl0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 24154498, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 26398, 'cumulative_tx': 12077249, 'tx': 13199, 'cumulative_rx': 12077249, 'interface_name': 'lo', 'rx': 13199, 'is_up': True}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'tunl0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip6_vti0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'gretap0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'teql0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'sit0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'dummy0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip6gre0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip_vti0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 150878218, 'time_since_update': 3.2509820461273193, 'key': 'interface_name', 'cx': 206, 'cumulative_tx': 12713672, 'tx': 74, 'cumulative_rx': 138164546, 'interface_name': 'eth0', 'rx': 132, 'is_up': True}]
  189. 2016-10-05 08:28:08,426 -- DEBUG -- Plugin irq update return [{'irq_rate': 1216, 'irq_line': 'RES', 'key': 'irq_line', 'time_since_update': 3.245939016342163}, {'irq_rate': 455, 'irq_line': 'LOC', 'key': 'irq_line', 'time_since_update': 3.245939016342163}, {'irq_rate': 54, 'irq_line': '11', 'key': 'irq_line', 'time_since_update': 3.245939016342163}, {'irq_rate': 38, 'irq_line': 'TLB', 'key': 'irq_line', 'time_since_update': 3.245939016342163}, {'irq_rate': 30, 'irq_line': 'CAL', 'key': 'irq_line', 'time_since_update': 3.245939016342163}]
  190. 2016-10-05 08:28:08,435 -- ERROR -- Cannot export localhost.docker stats to InfluxDB (400: {"error":"unable to parse 'localhost.docker ': invalid field format"}
  191. )
  192. 2016-10-05 08:28:08,435 -- DEBUG -- Export ip stats to InfluxDB
  193. 2016-10-05 08:28:08,436 -- DEBUG -- InfluxDB error during stat convertion address=139.162.176.93 (invalid literal for float(): 139.162.176.93)
  194. 2016-10-05 08:28:08,436 -- DEBUG -- InfluxDB error during stat convertion public_address=139.162.176.93 (invalid literal for float(): 139.162.176.93)
  195. 2016-10-05 08:28:08,436 -- DEBUG -- InfluxDB error during stat convertion mask=255.255.255.0 (invalid literal for float(): 255.255.255.0)
  196. 2016-10-05 08:28:08,436 -- DEBUG -- InfluxDB error during stat convertion gateway=139.162.176.1 (invalid literal for float(): 139.162.176.1)
  197. 2016-10-05 08:28:08,453 -- DEBUG -- Plugin diskio update return [{'read_count': 0, 'write_bytes': 0, 'write_count': 0, 'time_since_update': 3.247743844985962, 'read_bytes': 0, 'key': 'disk_name', 'disk_name': 'sdb'}, {'read_count': 0, 'write_bytes': 225280, 'write_count': 28, 'time_since_update': 3.247743844985962, 'read_bytes': 0, 'key': 'disk_name', 'disk_name': 'sda'}]
  198. 2016-10-05 08:28:08,453 -- DEBUG -- Plugin fs update return [{'mnt_point': '/', 'fs_type': 'ext4', 'free': 48342753280, 'key': 'mnt_point', 'size': 50135384064, 'percent': 2.6, 'used': 1266360320, 'device_name': '/dev/root'}]
  199. 2016-10-05 08:28:08,454 -- DEBUG -- Plugin raid update return {}
  200. 2016-10-05 08:28:08,454 -- DEBUG -- Plugin mem update return {'available': 3840053248, 'used': 300650496, 'cached': 679624704, 'percent': 7.3, 'free': 3840053248, 'inactive': 475955200, 'active': 421310464, 'shared': 26701824, 'total': 4140703744, 'buffers': 90763264}
  201. 2016-10-05 08:28:08,456 -- DEBUG -- Plugin plugins.glances_batpercent update return [{'unit': '%', 'value': [], 'label': 'Battery'}]
  202. 2016-10-05 08:28:08,456 -- DEBUG -- Plugin sensors update return [{'key': 'label', 'type': 'battery', 'unit': '%', 'value': [], 'label': 'Battery'}]
  203. 2016-10-05 08:28:08,466 -- DEBUG -- Export memswap stats to InfluxDB
  204. 2016-10-05 08:28:08,473 -- DEBUG -- Export network stats to InfluxDB
  205. 2016-10-05 08:28:08,473 -- DEBUG -- InfluxDB error during stat convertion gre0.key=interface_name (could not convert string to float: interface_name)
  206. 2016-10-05 08:28:08,473 -- DEBUG -- InfluxDB error during stat convertion gre0.interface_name=gre0 (could not convert string to float: gre0)
  207. 2016-10-05 08:28:08,474 -- DEBUG -- InfluxDB error during stat convertion ip6tnl0.key=interface_name (could not convert string to float: interface_name)
  208. 2016-10-05 08:28:08,474 -- DEBUG -- InfluxDB error during stat convertion ip6tnl0.interface_name=ip6tnl0 (could not convert string to float: ip6tnl0)
  209. 2016-10-05 08:28:08,474 -- DEBUG -- InfluxDB error during stat convertion lo.key=interface_name (could not convert string to float: interface_name)
  210. 2016-10-05 08:28:08,474 -- DEBUG -- InfluxDB error during stat convertion lo.interface_name=lo (could not convert string to float: lo)
  211. 2016-10-05 08:28:08,474 -- DEBUG -- InfluxDB error during stat convertion tunl0.key=interface_name (could not convert string to float: interface_name)
  212. 2016-10-05 08:28:08,474 -- DEBUG -- InfluxDB error during stat convertion tunl0.interface_name=tunl0 (could not convert string to float: tunl0)
  213. 2016-10-05 08:28:08,475 -- DEBUG -- Plugin quicklook update return {'percpu': [{'cpu_number': 0, 'guest_nice': 0.0, 'softirq': 0.0, 'iowait': 0.0, 'system': 0.6, 'guest': 0.0, 'idle': 97.2, 'user': 2.2, 'key': 'cpu_number', 'irq': 0.0, 'total': 2.8, 'steal': 0.0, 'nice': 0.0}, {'cpu_number': 1, 'guest_nice': 0.0, 'softirq': 0.3, 'iowait': 0.0, 'system': 1.8, 'guest': 0.0, 'idle': 93.6, 'user': 4.0, 'key': 'cpu_number', 'irq': 0.0, 'total': 6.4, 'steal': 0.3, 'nice': 0.0}], 'mem': 7.3, 'cpu_hz': 2500000000, 'cpu_hz_current': 2499990000, 'cpu_name': 'Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz', 'swap': 0.0, 'cpu': 4.6}
  214. 2016-10-05 08:28:08,475 -- DEBUG -- InfluxDB error during stat convertion ip6_vti0.key=interface_name (could not convert string to float: interface_name)
  215. 2016-10-05 08:28:08,476 -- DEBUG -- Plugin ports update return [{'status': 0.009279, 'description': 'DefaultGateway', 'refresh': 30, 'host': '139.162.176.1', 'rtt_warning': None, 'timeout': 3, 'port': 0}]
  216. 2016-10-05 08:28:08,476 -- DEBUG -- InfluxDB error during stat convertion ip6_vti0.interface_name=ip6_vti0 (could not convert string to float: ip6_vti0)
  217. 2016-10-05 08:28:08,476 -- DEBUG -- InfluxDB error during stat convertion gretap0.key=interface_name (could not convert string to float: interface_name)
  218. 2016-10-05 08:28:08,476 -- DEBUG -- InfluxDB error during stat convertion gretap0.interface_name=gretap0 (could not convert string to float: gretap0)
  219. 2016-10-05 08:28:08,476 -- DEBUG -- InfluxDB error during stat convertion teql0.key=interface_name (could not convert string to float: interface_name)
  220. 2016-10-05 08:28:08,476 -- DEBUG -- InfluxDB error during stat convertion teql0.interface_name=teql0 (could not convert string to float: teql0)
  221. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion sit0.key=interface_name (could not convert string to float: interface_name)
  222. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion sit0.interface_name=sit0 (could not convert string to float: sit0)
  223. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion dummy0.key=interface_name (could not convert string to float: interface_name)
  224. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion dummy0.interface_name=dummy0 (could not convert string to float: dummy0)
  225. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion ip6gre0.key=interface_name (could not convert string to float: interface_name)
  226. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion ip6gre0.interface_name=ip6gre0 (could not convert string to float: ip6gre0)
  227. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion ip_vti0.key=interface_name (could not convert string to float: interface_name)
  228. 2016-10-05 08:28:08,477 -- DEBUG -- InfluxDB error during stat convertion ip_vti0.interface_name=ip_vti0 (could not convert string to float: ip_vti0)
  229. 2016-10-05 08:28:08,478 -- DEBUG -- InfluxDB error during stat convertion eth0.key=interface_name (could not convert string to float: interface_name)
  230. 2016-10-05 08:28:08,478 -- DEBUG -- InfluxDB error during stat convertion eth0.interface_name=eth0 (could not convert string to float: eth0)
  231. 2016-10-05 08:28:08,488 -- DEBUG -- Export percpu stats to InfluxDB
  232. 2016-10-05 08:28:08,488 -- DEBUG -- InfluxDB error during stat convertion 0.key=cpu_number (could not convert string to float: cpu_number)
  233. 2016-10-05 08:28:08,489 -- DEBUG -- InfluxDB error during stat convertion 1.key=cpu_number (could not convert string to float: cpu_number)
  234. 2016-10-05 08:28:08,493 -- DEBUG -- Export system stats to InfluxDB
  235. 2016-10-05 08:28:08,494 -- DEBUG -- InfluxDB error during stat convertion os_name=Linux (could not convert string to float: Linux)
  236. 2016-10-05 08:28:08,494 -- DEBUG -- InfluxDB error during stat convertion os_version=4.7.0-x86_64-linode72 (invalid literal for float(): 4.7.0-x86_64-linode72)
  237. 2016-10-05 08:28:08,494 -- DEBUG -- InfluxDB error during stat convertion linux_distro=CentOS Linux 7.2.1511 (could not convert string to float: CentOS Linux 7.2.1511)
  238. 2016-10-05 08:28:08,494 -- DEBUG -- InfluxDB error during stat convertion hostname=li1493-93.members.linode.com (could not convert string to float: li1493-93.members.linode.com)
  239. 2016-10-05 08:28:08,494 -- DEBUG -- InfluxDB error during stat convertion platform=64bit (invalid literal for float(): 64bit)
  240. 2016-10-05 08:28:08,494 -- DEBUG -- InfluxDB error during stat convertion hr_name=CentOS Linux 7.2.1511 64bit (could not convert string to float: CentOS Linux 7.2.1511 64bit)
  241. 2016-10-05 08:28:08,499 -- DEBUG -- Export diskio stats to InfluxDB
  242. 2016-10-05 08:28:08,499 -- DEBUG -- InfluxDB error during stat convertion sdb.key=disk_name (could not convert string to float: disk_name)
  243. 2016-10-05 08:28:08,499 -- DEBUG -- InfluxDB error during stat convertion sdb.disk_name=sdb (could not convert string to float: sdb)
  244. 2016-10-05 08:28:08,499 -- DEBUG -- InfluxDB error during stat convertion sda.key=disk_name (could not convert string to float: disk_name)
  245. 2016-10-05 08:28:08,500 -- DEBUG -- InfluxDB error during stat convertion sda.disk_name=sda (could not convert string to float: sda)
  246. 2016-10-05 08:28:08,504 -- DEBUG -- Export fs stats to InfluxDB
  247. 2016-10-05 08:28:08,504 -- DEBUG -- InfluxDB error during stat convertion /.mnt_point=/ (could not convert string to float: /)
  248. 2016-10-05 08:28:08,505 -- DEBUG -- InfluxDB error during stat convertion /.fs_type=ext4 (could not convert string to float: ext4)
  249. 2016-10-05 08:28:08,505 -- DEBUG -- InfluxDB error during stat convertion /.key=mnt_point (could not convert string to float: mnt_point)
  250. 2016-10-05 08:28:08,505 -- DEBUG -- InfluxDB error during stat convertion /.device_name=/dev/root (could not convert string to float: /dev/root)
  251. 2016-10-05 08:28:08,510 -- DEBUG -- Export mem stats to InfluxDB
  252. 2016-10-05 08:28:08,515 -- DEBUG -- Export sensors stats to InfluxDB
  253. 2016-10-05 08:28:08,515 -- DEBUG -- InfluxDB error during stat convertion Battery.key=label (could not convert string to float: label)
  254. 2016-10-05 08:28:08,515 -- DEBUG -- InfluxDB error during stat convertion Battery.type=battery (could not convert string to float: battery)
  255. 2016-10-05 08:28:08,515 -- DEBUG -- InfluxDB error during stat convertion Battery.unit=% (could not convert string to float: %)
  256. 2016-10-05 08:28:08,516 -- DEBUG -- InfluxDB error during stat convertion Battery.value= (could not convert string to float: )
  257. 2016-10-05 08:28:08,516 -- DEBUG -- InfluxDB error during stat convertion Battery.label=Battery (could not convert string to float: Battery)
  258. 2016-10-05 08:28:08,522 -- DEBUG -- Export processcount stats to InfluxDB
  259. 2016-10-05 08:28:08,526 -- DEBUG -- Export cpu stats to InfluxDB
  260. 2016-10-05 08:28:08,624 -- DEBUG -- AMPS: python process detected (PID=20152)
  261. 2016-10-05 08:28:08,625 -- DEBUG -- AMPS: systemd process detected (PID=2011)
  262. 2016-10-05 08:28:08,626 -- DEBUG -- AMPS: systemv process detected (PID=1)
  263. 2016-10-05 08:28:08,626 -- DEBUG -- Plugin amps update return [{'count': 2, 'timer': 0.0015420913696289062, 'countmax': 20.0, 'name': u'Python', 'key': u'python', 'countmin': None, 'refresh': 3.0, 'result': None}, {'count': 0, 'timer': 107.14974212646484, 'countmax': None, 'name': u'Dropbox', 'key': u'dropbox', 'countmin': 1.0, 'refresh': 3.0, 'result': u'No running process'}, {'count': 3, 'timer': 9.791393995285034, 'countmax': None, 'name': 'Systemd', 'key': u'systemd', 'countmin': None, 'refresh': 30.0, 'result': u'Services active: 364 loaded: 364 '}, {'count': 1, 'timer': 9.782108783721924, 'countmax': None, 'name': 'SystemV', 'key': u'systemv', 'countmin': None, 'refresh': 30.0, 'result': None}, {'count': 0, 'timer': 107.14754915237427, 'countmax': None, 'name': 'Nginx', 'key': u'nginx', 'countmin': None, 'refresh': 60.0, 'result': None}]
  264. 2016-10-05 08:28:08,626 -- DEBUG -- Plugin batpercent update return [{'unit': '%', 'value': [], 'label': 'Battery'}]
  265. 2016-10-05 08:28:08,627 -- DEBUG -- Plugin cpu update return {'softirq': 0.0, 'iowait': 0.0, 'interrupts': 2156, 'system': 0.8, 'guest': 0.0, 'soft_interrupts': 608, 'time_since_update': 3.244058847427368, 'idle': 95.7, 'user': 3.6, 'guest_nice': 0.0, 'irq': 0.0, 'cpucore': 2, 'syscalls': 0, 'total': 4.6, 'steal': 0.0, 'ctx_switches': 4058, 'nice': 0.0}
  266. 2016-10-05 08:28:11,640 -- DEBUG -- Export stats using the influxdb module
  267. 2016-10-05 08:28:11,641 -- DEBUG -- Plugin load update return {'cpucore': 2, 'min1': 0.12, 'min5': 0.06, 'min15': 0.01}
  268. 2016-10-05 08:28:11,641 -- DEBUG -- Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
  269. 2016-10-05 08:28:11,641 -- DEBUG -- No config file found
  270. 2016-10-05 08:28:11,643 -- DEBUG -- Can't connect to the Docker server (('Connection aborted.', error(2, 'No such file or directory')))
  271. 2016-10-05 08:28:11,643 -- DEBUG -- Plugin docker update return {}
  272. 2016-10-05 08:28:11,643 -- DEBUG -- Plugin ip update return {'public_address': u'139.162.176.93', 'mask_cidr': 24, 'mask': '255.255.255.0', 'gateway': '139.162.176.1', 'address': '139.162.176.93'}
  273. 2016-10-05 08:28:11,644 -- DEBUG -- Plugin memswap update return {'used': 0, 'percent': 0.0, 'free': 536866816, 'sout': 0, 'total': 536866816, 'sin': 0}
  274. 2016-10-05 08:28:11,645 -- DEBUG -- Plugin network update return [{'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'gre0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip6tnl0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 24179304, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 24806, 'cumulative_tx': 12089652, 'tx': 12403, 'cumulative_rx': 12089652, 'interface_name': 'lo', 'rx': 12403, 'is_up': True}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'tunl0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip6_vti0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'gretap0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'teql0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'sit0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'dummy0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip6gre0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 0, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 0, 'cumulative_tx': 0, 'tx': 0, 'cumulative_rx': 0, 'interface_name': 'ip_vti0', 'rx': 0, 'is_up': False}, {'cumulative_cx': 150881822, 'time_since_update': 3.22078013420105, 'key': 'interface_name', 'cx': 3604, 'cumulative_tx': 12716903, 'tx': 3231, 'cumulative_rx': 138164919, 'interface_name': 'eth0', 'rx': 373, 'is_up': True}]
  275. 2016-10-05 08:28:11,646 -- DEBUG -- Plugin irq update return [{'irq_rate': 1341, 'irq_line': 'RES', 'key': 'irq_line', 'time_since_update': 3.2204461097717285}, {'irq_rate': 480, 'irq_line': 'LOC', 'key': 'irq_line', 'time_since_update': 3.2204461097717285}, {'irq_rate': 64, 'irq_line': '11', 'key': 'irq_line', 'time_since_update': 3.2204461097717285}, {'irq_rate': 39, 'irq_line': 'TLB', 'key': 'irq_line', 'time_since_update': 3.2204461097717285}, {'irq_rate': 32, 'irq_line': 'CAL', 'key': 'irq_line', 'time_since_update': 3.2204461097717285}]
  276. 2016-10-05 08:28:11,648 -- DEBUG -- Docker export error 'containers'
  277. 2016-10-05 08:28:11,649 -- DEBUG -- Export load stats to InfluxDB
  278. 2016-10-05 08:28:11,654 -- DEBUG -- Plugin diskio update return [{'read_count': 0, 'write_bytes': 0, 'write_count': 0, 'time_since_update': 3.2014999389648438, 'read_bytes': 0, 'key': 'disk_name', 'disk_name': 'sdb'}, {'read_count': 0, 'write_bytes': 352256, 'write_count': 39, 'time_since_update': 3.2014999389648438, 'read_bytes': 0, 'key': 'disk_name', 'disk_name': 'sda'}]
  279. 2016-10-05 08:28:11,655 -- DEBUG -- Export docker stats to InfluxDB
  280. 2016-10-05 08:28:11,658 -- DEBUG -- Plugin fs update return [{'mnt_point': '/', 'fs_type': 'ext4', 'free': 48342732800, 'key': 'mnt_point', 'size': 50135384064, 'percent': 2.6, 'used': 1266380800, 'device_name': '/dev/root'}]
  281. 2016-10-05 08:28:11,660 -- ERROR -- Cannot export localhost.docker stats to InfluxDB (400: {"error":"unable to parse 'localhost.docker ': invalid field format"}
  282. )
  283. 2016-10-05 08:28:11,660 -- DEBUG -- Export ip stats to InfluxDB
  284. 2016-10-05 08:28:11,660 -- DEBUG -- InfluxDB error during stat convertion address=139.162.176.93 (invalid literal for float(): 139.162.176.93)
  285. 2016-10-05 08:28:11,660 -- DEBUG -- Plugin raid update return {}
  286. 2016-10-05 08:28:11,660 -- DEBUG -- InfluxDB error during stat convertion public_address=139.162.176.93 (invalid literal for float(): 139.162.176.93)
  287. 2016-10-05 08:28:11,661 -- DEBUG -- InfluxDB error during stat convertion mask=255.255.255.0 (invalid literal for float(): 255.255.255.0)
  288. 2016-10-05 08:28:11,661 -- DEBUG -- InfluxDB error during stat convertion gateway=139.162.176.1 (invalid literal for float(): 139.162.176.1)
  289. 2016-10-05 08:28:11,663 -- DEBUG -- Plugin mem update return {'available': 3838701568, 'used': 302002176, 'cached': 679649280, 'percent': 7.3, 'free': 3838701568, 'inactive': 475979776, 'active': 422256640, 'shared': 26701824, 'total': 4140703744, 'buffers': 90796032}
  290. 2016-10-05 08:28:11,665 -- DEBUG -- Export memswap stats to InfluxDB
  291. 2016-10-05 08:28:11,667 -- DEBUG -- Plugin plugins.glances_batpercent update return [{'unit': '%', 'value': [], 'label': 'Battery'}]
  292. 2016-10-05 08:28:11,667 -- DEBUG -- Plugin sensors update return [{'key': 'label', 'type': 'battery', 'unit': '%', 'value': [], 'label': 'Battery'}]
  293. 2016-10-05 08:28:11,669 -- DEBUG -- Export network stats to InfluxDB
  294. 2016-10-05 08:28:11,670 -- DEBUG -- InfluxDB error during stat convertion gre0.key=interface_name (could not convert string to float: interface_name)
  295. 2016-10-05 08:28:11,670 -- DEBUG -- InfluxDB error during stat convertion gre0.interface_name=gre0 (could not convert string to float: gre0)
  296. 2016-10-05 08:28:11,670 -- DEBUG -- InfluxDB error during stat convertion ip6tnl0.key=interface_name (could not convert string to float: interface_name)
  297. 2016-10-05 08:28:11,670 -- DEBUG -- InfluxDB error during stat convertion ip6tnl0.interface_name=ip6tnl0 (could not convert string to float: ip6tnl0)
  298. 2016-10-05 08:28:11,670 -- DEBUG -- InfluxDB error during stat convertion lo.key=interface_name (could not convert string to float: interface_name)
  299. 2016-10-05 08:28:11,671 -- DEBUG -- InfluxDB error during stat convertion lo.interface_name=lo (could not convert string to float: lo)
  300. 2016-10-05 08:28:11,671 -- DEBUG -- InfluxDB error during stat convertion tunl0.key=interface_name (could not convert string to float: interface_name)
  301. 2016-10-05 08:28:11,673 -- DEBUG -- InfluxDB error during stat convertion tunl0.interface_name=tunl0 (could not convert string to float: tunl0)
  302. 2016-10-05 08:28:11,673 -- DEBUG -- InfluxDB error during stat convertion ip6_vti0.key=interface_name (could not convert string to float: interface_name)
  303. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion ip6_vti0.interface_name=ip6_vti0 (could not convert string to float: ip6_vti0)
  304. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion gretap0.key=interface_name (could not convert string to float: interface_name)
  305. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion gretap0.interface_name=gretap0 (could not convert string to float: gretap0)
  306. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion teql0.key=interface_name (could not convert string to float: interface_name)
  307. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion teql0.interface_name=teql0 (could not convert string to float: teql0)
  308. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion sit0.key=interface_name (could not convert string to float: interface_name)
  309. 2016-10-05 08:28:11,674 -- DEBUG -- InfluxDB error during stat convertion sit0.interface_name=sit0 (could not convert string to float: sit0)
  310. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion dummy0.key=interface_name (could not convert string to float: interface_name)
  311. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion dummy0.interface_name=dummy0 (could not convert string to float: dummy0)
  312. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion ip6gre0.key=interface_name (could not convert string to float: interface_name)
  313. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion ip6gre0.interface_name=ip6gre0 (could not convert string to float: ip6gre0)
  314. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion ip_vti0.key=interface_name (could not convert string to float: interface_name)
  315. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion ip_vti0.interface_name=ip_vti0 (could not convert string to float: ip_vti0)
  316. 2016-10-05 08:28:11,675 -- DEBUG -- InfluxDB error during stat convertion eth0.key=interface_name (could not convert string to float: interface_name)
  317. 2016-10-05 08:28:11,676 -- DEBUG -- InfluxDB error during stat convertion eth0.interface_name=eth0 (could not convert string to float: eth0)
  318. 2016-10-05 08:28:11,682 -- DEBUG -- Plugin quicklook update return {'percpu': [{'cpu_number': 0, 'guest_nice': 0.0, 'softirq': 0.0, 'iowait': 0.0, 'system': 0.3, 'guest': 0.0, 'idle': 97.2, 'user': 2.5, 'key': 'cpu_number', 'irq': 0.0, 'total': 2.8, 'steal': 0.0, 'nice': 0.0}, {'cpu_number': 1, 'guest_nice': 0.0, 'softirq': 0.0, 'iowait': 0.0, 'system': 1.9, 'guest': 0.0, 'idle': 94.4, 'user': 3.8, 'key': 'cpu_number', 'irq': 0.0, 'total': 5.6, 'steal': 0.0, 'nice': 0.0}], 'mem': 7.3, 'cpu_hz': 2500000000, 'cpu_hz_current': 2499990000, 'cpu_name': 'Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz', 'swap': 0.0, 'cpu': 3.7}
  319. 2016-10-05 08:28:11,682 -- DEBUG -- Plugin ports update return [{'status': 0.009279, 'description': 'DefaultGateway', 'refresh': 30, 'host': '139.162.176.1', 'rtt_warning': None, 'timeout': 3, 'port': 0}]
  320. 2016-10-05 08:28:11,684 -- DEBUG -- Export percpu stats to InfluxDB
  321. 2016-10-05 08:28:11,684 -- DEBUG -- InfluxDB error during stat convertion 0.key=cpu_number (could not convert string to float: cpu_number)
  322. 2016-10-05 08:28:11,685 -- DEBUG -- InfluxDB error during stat convertion 1.key=cpu_number (could not convert string to float: cpu_number)
  323. 2016-10-05 08:28:11,690 -- DEBUG -- Export system stats to InfluxDB
  324. 2016-10-05 08:28:11,690 -- DEBUG -- InfluxDB error during stat convertion os_name=Linux (could not convert string to float: Linux)
  325. 2016-10-05 08:28:11,690 -- DEBUG -- InfluxDB error during stat convertion os_version=4.7.0-x86_64-linode72 (invalid literal for float(): 4.7.0-x86_64-linode72)
  326. 2016-10-05 08:28:11,690 -- DEBUG -- InfluxDB error during stat convertion linux_distro=CentOS Linux 7.2.1511 (could not convert string to float: CentOS Linux 7.2.1511)
  327. 2016-10-05 08:28:11,690 -- DEBUG -- InfluxDB error during stat convertion hostname=li1493-93.members.linode.com (could not convert string to float: li1493-93.members.linode.com)
  328. 2016-10-05 08:28:11,690 -- DEBUG -- InfluxDB error during stat convertion platform=64bit (invalid literal for float(): 64bit)
  329. 2016-10-05 08:28:11,691 -- DEBUG -- InfluxDB error during stat convertion hr_name=CentOS Linux 7.2.1511 64bit (could not convert string to float: CentOS Linux 7.2.1511 64bit)
  330. 2016-10-05 08:28:11,694 -- DEBUG -- Export diskio stats to InfluxDB
  331. 2016-10-05 08:28:11,694 -- DEBUG -- InfluxDB error during stat convertion sdb.key=disk_name (could not convert string to float: disk_name)
  332. 2016-10-05 08:28:11,694 -- DEBUG -- InfluxDB error during stat convertion sdb.disk_name=sdb (could not convert string to float: sdb)
  333. 2016-10-05 08:28:11,695 -- DEBUG -- InfluxDB error during stat convertion sda.key=disk_name (could not convert string to float: disk_name)
  334. 2016-10-05 08:28:11,695 -- DEBUG -- InfluxDB error during stat convertion sda.disk_name=sda (could not convert string to float: sda)
  335. 2016-10-05 08:28:11,699 -- DEBUG -- Export fs stats to InfluxDB
  336. 2016-10-05 08:28:11,699 -- DEBUG -- InfluxDB error during stat convertion /.mnt_point=/ (could not convert string to float: /)
  337. 2016-10-05 08:28:11,699 -- DEBUG -- InfluxDB error during stat convertion /.fs_type=ext4 (could not convert string to float: ext4)
  338. 2016-10-05 08:28:11,699 -- DEBUG -- InfluxDB error during stat convertion /.key=mnt_point (could not convert string to float: mnt_point)
  339. 2016-10-05 08:28:11,699 -- DEBUG -- InfluxDB error during stat convertion /.device_name=/dev/root (could not convert string to float: /dev/root)
  340. 2016-10-05 08:28:11,703 -- DEBUG -- Export mem stats to InfluxDB
  341. 2016-10-05 08:28:11,707 -- DEBUG -- Export sensors stats to InfluxDB
  342. 2016-10-05 08:28:11,707 -- DEBUG -- InfluxDB error during stat convertion Battery.key=label (could not convert string to float: label)
  343. 2016-10-05 08:28:11,707 -- DEBUG -- InfluxDB error during stat convertion Battery.type=battery (could not convert string to float: battery)
  344. 2016-10-05 08:28:11,708 -- DEBUG -- InfluxDB error during stat convertion Battery.unit=% (could not convert string to float: %)
  345. 2016-10-05 08:28:11,708 -- DEBUG -- InfluxDB error during stat convertion Battery.value= (could not convert string to float: )
  346. 2016-10-05 08:28:11,708 -- DEBUG -- InfluxDB error during stat convertion Battery.label=Battery (could not convert string to float: Battery)
  347. 2016-10-05 08:28:11,712 -- DEBUG -- Export processcount stats to InfluxDB
  348. 2016-10-05 08:28:11,715 -- DEBUG -- Export cpu stats to InfluxDB
  349. 2016-10-05 08:28:11,825 -- DEBUG -- AMPS: python process detected (PID=20152)
  350. 2016-10-05 08:28:11,826 -- DEBUG -- AMPS: systemd process detected (PID=2011)
  351. 2016-10-05 08:28:11,826 -- DEBUG -- AMPS: systemv process detected (PID=1)
  352. 2016-10-05 08:28:11,827 -- DEBUG -- Plugin amps update return [{'count': 2, 'timer': 0.001837015151977539, 'countmax': 20.0, 'name': u'Python', 'key': u'python', 'countmin': None, 'refresh': 3.0, 'result': None}, {'count': 0, 'timer': 110.35043907165527, 'countmax': None, 'name': u'Dropbox', 'key': u'dropbox', 'countmin': 1.0, 'refresh': 3.0, 'result': u'No running process'}, {'count': 3, 'timer': 12.992099046707153, 'countmax': None, 'name': 'Systemd', 'key': u'systemd', 'countmin': None, 'refresh': 30.0, 'result': u'Services active: 364 loaded: 364 '}, {'count': 1, 'timer': 12.982816934585571, 'countmax': None, 'name': 'SystemV', 'key': u'systemv', 'countmin': None, 'refresh': 30.0, 'result': None}, {'count': 0, 'timer': 110.34826111793518, 'countmax': None, 'name': 'Nginx', 'key': u'nginx', 'countmin': None, 'refresh': 60.0, 'result': None}]
  353. 2016-10-05 08:28:11,827 -- DEBUG -- Plugin batpercent update return [{'unit': '%', 'value': [], 'label': 'Battery'}]
  354. 2016-10-05 08:28:11,828 -- DEBUG -- Plugin cpu update return {'softirq': 0.0, 'iowait': 0.0, 'interrupts': 2092, 'system': 1.3, 'guest': 0.0, 'soft_interrupts': 591, 'time_since_update': 3.200740098953247, 'idle': 96.4, 'user': 2.4, 'guest_nice': 0.0, 'irq': 0.0, 'cpucore': 2, 'syscalls': 0, 'total': 3.7, 'steal': 0.0, 'ctx_switches': 4055, 'nice': 0.0}
  355. 2016-10-05 08:28:11,829 -- DEBUG -- Finalise export interface influxdb
  356. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the load plugin
  357. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the docker plugin
  358. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the help plugin
  359. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the ip plugin
  360. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the memswap plugin
  361. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the processlist plugin
  362. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the uptime plugin
  363. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the network plugin
  364. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the percpu plugin
  365. 2016-10-05 08:28:11,829 -- DEBUG -- Stop the irq plugin
  366. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the system plugin
  367. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the diskio plugin
  368. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the folders plugin
  369. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the core plugin
  370. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the fs plugin
  371. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the raid plugin
  372. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the mem plugin
  373. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the alert plugin
  374. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the psutilversion plugin
  375. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the hddtemp plugin
  376. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the sensors plugin
  377. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the now plugin
  378. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the quicklook plugin
  379. 2016-10-05 08:28:11,830 -- DEBUG -- ports plugin - Close thread for scan list [{'status': 0.009279, 'description': 'DefaultGateway', 'refresh': 30, 'host': '139.162.176.1', 'rtt_warning': None, 'timeout': 3, 'port': 0}]
  380. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the ports plugin
  381. 2016-10-05 08:28:11,830 -- DEBUG -- Stop the processcount plugin
  382. 2016-10-05 08:28:11,831 -- DEBUG -- Stop the amps plugin
  383. 2016-10-05 08:28:11,831 -- DEBUG -- Stop the batpercent plugin
  384. 2016-10-05 08:28:11,831 -- DEBUG -- Stop the cpu plugin
  385. 2016-10-05 08:28:11,831 -- DEBUG -- Check Glances version (installed: 2.7.1 / latest: 2.7.1)
  386.  
  387. @nicolargo
  388. nicolargo
  389. commented 2 days ago
  390. @tuwid : i just commit a workaround on the DEVELOP branch. The --disable-docker tag should work ok now. Can you try this ?
  391. Comment on issue
  392. Sign in to comment
  393. or sign up to join this conversation on GitHub
  394. Desktop version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement