Advertisement
Guest User

vmbix.conf

a guest
Sep 22nd, 2016
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # VmBix configuration file
  2.  
  3. # The VMWare API URL
  4. serviceurl = https://myvcenter.mydomain.com/sdk
  5.  
  6. # The username to use to connect to the VMWare API
  7. # Set username = DOMAIN\\user for Windows authentication
  8. username = readonlyuser@vsphere.local
  9.  
  10. # The password to use to connect to the VMWare API
  11. password = password
  12.  
  13. # The IP address vmbix will listen to
  14. bindaddress = 127.0.0.1
  15.  
  16. # The port vmbix will listen to
  17. listenport = 12050
  18.  
  19. # The pid file that the vmbix daemon will use
  20. pidfile = /var/run/vmbix.pid
  21.  
  22. # The maximum concurrent connections
  23. maxconnections = 150
  24.  
  25. # The VMWare API connect timeout
  26. connecttimeout = 30
  27.  
  28. # The VMWare API read timeout
  29. readtimeout = 30
  30.  
  31. # The interval for performance metrics queries
  32. interval = 300
  33.  
  34. # Use the VMWare UUID to identify objects
  35. useuuid = false
  36.  
  37. # Escape specific characters
  38. escapechars = false
  39.  
  40. # The VM cache TTL (in minutes)
  41. vmcachettl = 15
  42.  
  43. # The hypervisor cache TTL
  44. esxicachettl = 15
  45.  
  46. # The datastore cache TTL
  47. dscachettl = 15
  48.  
  49. # The performance counter ID cache TTL
  50. perfidcachettl = 5
  51.  
  52. # The performance counter cache TTL
  53. countercachettl = 5
  54.  
  55. # The host runtime info cache TTL
  56. hricachettl = 15
  57.  
  58. # The cluster cache TTL
  59. clcachettl = 15
  60.  
  61. # The VM cache size
  62. vmcachesize = 1000
  63.  
  64. # The hypervisor cache size
  65. esxicachesize = 100
  66.  
  67. # The datastore cache size
  68. dscachesize = 100
  69.  
  70. # The perfomance counter ID cache size
  71. perfidcachesize = 1000
  72.  
  73. # The perfomance counter cache size
  74. countercachesize = 1000
  75.  
  76. # The host runtime info cache size
  77. hricachesize = 100
  78.  
  79. # The cluster cache size
  80. clcachesize = 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement