Advertisement
Guest User

configuration files for Splunk App for Cisco UCS

a guest
Apr 2nd, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. #####################CISCOUCS.CONF (in the "local" directory)#####################
  2.  
  3. [Common]
  4. # UcsmAuthRealm is a comma-separated list of arbitrary strings. Each string designates a section in this config file.
  5. # UcsmAuthRealm allowable characters: alphanumeric, underscore
  6. # Each section requires three keys: Server, Username, and Password
  7. # Create one or more sections (authority realms) for each set of UCS Managers which share a common set of credentials
  8.  
  9. UcsmAuthRealm=UCSM_Prod
  10.  
  11. # Path to Cisco UCS PowerTool PSD1 file. Default is "C:\Program Files (x86)\Cisco\Cisco UCS PowerTool\Modules\CiscoUcsPS\CiscoUcsPS.psd1"
  12. CiscoUcsPsBinPath=C:\Program Files (x86)\Cisco\Cisco UCS PowerTool\Modules\CiscoUcsPS\CiscoUcsPS.psd1
  13.  
  14. [UCSM_Prod]
  15. # Server is a comma-separated list of IP addresses or hostnames. Required.
  16. Server = myServer
  17.  
  18. # Username with appropriate access to UCSM system. Required.
  19. Username = myUserName
  20.  
  21. # Plaintext password for above account. Required.
  22. Password = myPassword
  23.  
  24.  
  25. #################INPUTS.CONF (in the "default" directory)#################################
  26.  
  27. [script://.\bin\GetFault.path]
  28. source=ciscoucs:powershell:GetFault.ps1
  29. sourcetype=ciscoucs:ucsm:fault
  30. index=cisco_ucs_alerts
  31. interval=300
  32. disabled=0
  33.  
  34. [script://.\bin\GetInventory.path]
  35. source=ciscoucs:powershell:GetInventory.ps1
  36. sourcetype=ciscoucs:ucsm:inventory
  37. index=cisco_ucs
  38. interval=3600
  39. disabled=0
  40.  
  41. [script://.\bin\GetPerf.path]
  42. source=ciscoucs:powershell:GetPerf.ps1
  43. sourcetype=ciscoucs:ucsm:perf
  44. index=cisco_ucs_perf
  45. interval=30
  46. disabled=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement