-
Notifications
You must be signed in to change notification settings - Fork 84
/
iis.yaml.example
35 lines (32 loc) · 1.31 KB
/
iis.yaml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# (C) Copyright 2015 Hewlett Packard Enterprise Development Company LP
init_config:
instances:
# By default, this check will run against a single instance - the current
# machine that the Agent is running on. It will check the WMI performance
# counters for IIS on that machine.
#
# If you want to check other remote machines as well, you can add one
# instance per host. Note: If you also want to check the counters on the
# current machine, you will have to create an instance with empty params.
#
# The `sites` parameter allows you to specify a list of sites you want to
# read metrics from. With sites specified, metrics will be tagged with the
# site name. If you don't define any sites, the check will pull the
# aggregate values across all sites.
#
# Here's an example of configuration that would check the current machine
# and a remote machine called MYREMOTESERVER. For the remote host we are
# only pulling metrics from the default site.
#
#- host: . # "." means the current host
# dimensions:
# app_name: myapp
#
#- host: MYREMOTESERVER
# username: MYREMOTESERVER\fred
# password: mysecretpassword
# dimensions:
# app_name: myapp
# region: east
# sites:
# - Default Web Site