Advertisement
Guest User

Untitled

a guest
Jan 21st, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. {
  2. "retry" : 30, /* how long to sleep between failed requests, in seconds */
  3. //"daemon": false, /* run periodically */
  4. //"foreground" : true, /* dont run in background (prevents forking) */
  5.  
  6. "verbosity" : 25, /* between 0 and 15 */
  7. "log" : "/var/log/vzlogger.log",/* path to logfile, optional */
  8.  
  9. "local" : {
  10. "enabled" : true, /* should we start the local HTTPd for serving live readings? */
  11. "port" : 8080, /* the TCP port for the local HTTPd */
  12. "index" : true, /* should we provide a index listing of available channels? */
  13. "timeout" : 30, /* timeout for long polling comet requests, 0 disables comet, in seconds */
  14. "buffer" : 600 /* how long to buffer readings for the local interface, in seconds */
  15. },
  16.  
  17. "meters" : [{
  18. "enabled" : true, /* disabled meters will be ignored */
  19. "protocol" : "sml", /* use 'vzlogger -h' for list of available protocols */
  20. "connection" : "/dev/ttyUSB0",
  21. // "interval" : 2,
  22. "channels": [{
  23. "uuid" : "07d734a0-4465-11e1-8843-a5346ae0a5a8",
  24. "middleware" : "http://demo.volkszaehler.org/middleware.php",
  25. "identifier" : "1-0:1.8.0" /* OBIS alias for '1-0:1.7.ff' */
  26.  
  27. },{
  28. "uuid" : "8c90fa40-4473-11e1-bf7f-33ca16461ef2",
  29. "middleware" : "http://demo.volkszaehler.org/middleware.php",
  30. "identifier" : "1-0:1.8.1"
  31. }]
  32.  
  33. }
  34.  
  35. ]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement