Parth6288

iis.yaml

Apr 16th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. init_config:
  2.  
  3. instances:
  4. # By default, this check will run against a single instance - the current
  5. # machine that the Agent is running on. It will check the WMI performance
  6. # counters for IIS on that machine.
  7. #
  8. # If you want to check other remote machines as well, you can add one
  9. # instance per host. Note: If you also want to check the counters on the
  10. # current machine, you will have to create an instance with empty params.
  11. #
  12. # The optional `provider` parameter allows to specify a WMI provider
  13. # (default to `32` on Datadog Agent 32-bit or `64`). It is used to request
  14. # WMI data from the non-default provider. Available options are: `32` or `64`.
  15. # For more information: https://msdn.microsoft.com/en-us/library/aa393067(v=vs.85).aspx
  16. #
  17. # The `sites` parameter allows you to specify a list of sites you want to
  18. # read metrics from. With sites specified, metrics will be tagged with the
  19. # site name. If you don't define any sites, the check will pull the
  20. # aggregate values across all sites.
  21. #
  22. # Here's an example of configuration that would check the current machine
  23. # and a remote machine called MYREMOTESERVER. For the remote host we are
  24. # only pulling metrics from the default site.
  25. #
  26.  
  27. # "." means the current host
  28. - host: .
  29. # tags:
  30. # - myapp1
  31. # sites:
  32. # - Default Web Site
  33. #
  34. # - host: MYREMOTESERVER
  35. # username: MYREMOTESERVER\fred
  36. # password: mysecretpassword
  37. # is_2008: false # NOTE: because of a typo in IIS6/7 (typically on W2K8)
  38. # where perfmon reports TotalBytesTransferred as
  39. # TotalBytesTransfered, you may have to enable this
  40. # to grab the IIS metrics in that environment.
  41. # tags:
  42. # - myapp2
  43. # - east
  44. # sites:
  45. # - Default Web Site
Add Comment
Please, Sign In to add comment