Plaidstallion

LSIO Scrutiny Issue

Nov 9th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. Compose:
  2.  
  3. scrutiny:
  4. image: ghcr.io/linuxserver/scrutiny:latest
  5. container_name: scrutiny
  6. cap_add:
  7. - SYS_RAWIO
  8. security_opt:
  9. - no-new-privileges:true
  10. networks:
  11. - mainstack
  12. environment:
  13. - PUID=$PUID #1000
  14. - PGID=$PGID #1000
  15. - TZ=$TZ
  16. - SCRUTINY_API_ENDPOINT=http://192.168.1.9:8986
  17. - SCRUTINY_WEB=true
  18. - SCRUTINY_COLLECTOR=true
  19. volumes:
  20. - '/run/udev:/run/udev:ro'
  21. - '/dev:/dev'
  22. - $USERDIR/docker/scrutiny/config:/config
  23. ports:
  24. - 8986:8080
  25. restart: unless-stopped
  26.  
  27. ----------------------------
  28.  
  29. $> docker logs -f scrutiny
  30.  
  31.  
  32. #normal logs until around here...
  33.  
  34. [GIN-debug] HEAD /web/*filepath --> github.com/gin-gonic/gin.(*RouterGroup).createStaticHandler.func1 (5 handlers)
  35. [GIN-debug] GET / --> github.com/analogj/scrutiny/webapp/backend/pkg/web.(*AppEngine).Setup.func2 (5 handlers)
  36. [GIN-debug] Listening and serving HTTP on 0.0.0.0:8080
  37. time="2020-11-09T09:41:18+02:00" level=info msg="192.168.1.189 - 2a70b3514db0 [09/Nov/2020:09:41:18 +0200] \"GET /web/\" 304 0 \"\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36\" (1ms)" clientIP=192.168.1.189 hostname=2a70b3514db0 latency=1 method=GET path=/web/ referer= respLength=0 statusCode=304 userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36"
  38.  
  39. 2020/11/09 09:41:19 /app/scrutiny/webapp/backend/pkg/web/handler/get_devices_summary.go:21 sql: Scan error on column index 11, name "rotation_speed": converting driver.Value type string ("") to a int: invalid syntax
  40. [0.865ms] [rows:8] SELECT * FROM `devices`
  41. time="2020-11-09T09:41:19+02:00" level=error msg="Could not get device summary from DB sql: Scan error on column index 11, name \"rotation_speed\": converting driver.Value type string (\"\") to a int: invalid syntax"
  42. time="2020-11-09T09:41:19+02:00" level=error msg="192.168.1.189 - 2a70b3514db0 [09/Nov/2020:09:41:19 +0200] \"GET /api/summary\" 500 17 \"http://192.168.1.9:8986/web/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36\" (2ms)" clientIP=192.168.1.189 hostname=2a70b3514db0 latency=2 method=GET path=/api/summary referer="http://192.168.1.9:8986/web/" respLength=17 statusCode=500 userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36"
  43. time="2020-11-09T09:41:19+02:00" level=info msg="192.168.1.189 - 2a70b3514db0 [09/Nov/2020:09:41:19 +0200] \"GET /web/favicon-32x32.png\" 200 1829 \"http://192.168.1.9:8986/web/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36\" (1ms)" clientIP=192.168.1.189 hostname=2a70b3514db0 latency=1 method=GET path=/web/favicon-32x32.png referer="http://192.168.1.9:8986/web/" respLength=1829 statusCode=200 userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36"
  44. time="2020-11-09T09:41:21+02:00" level=info msg="192.168.1.189 - 2a70b3514db0 [09/Nov/2020:09:41:21 +0200] \"GET /web/\" 304 0 \"\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36\" (1ms)" clientIP=192.168.1.189 hostname=2a70b3514db0 latency=1 method=GET path=/web/ referer= respLength=0 statusCode=304 userAgent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36"
Add Comment
Please, Sign In to add comment