-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsap_host_exporter.yaml
36 lines (31 loc) · 1.31 KB
/
sap_host_exporter.yaml
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
36
## Example configuration ##
# The values displayed below are the defaults, used in case no configuration is provided.
# The listening TCP/IP address and port.
address: "0.0.0.0"
port: "9680"
# The log level.
#
# Possible values, from less to most verbose: error, warn, info, debug.
log-level: "info"
# The url of the SAPControl web service.
#
# Per SAP conventions, the port should usually be 5<instance number>13 for HTTP and 5<instance number>14 for HTTPS.
# More info at https://www.sap.com/documents/2016/09/0a40e60d-8b7c-0010-82c7-eda71af511fa.html
#
# The default value will try to connect locally to instance number 00, without TLS.
sap-control-url: "localhost:50013"
# HTTP Basic Authentication credentials for the SAPControl web service, e.g. <sid>adm user and password.
#
# These are empty by default, which will cause the exporter to gracefully fail at collecting most metrics.
# Make sure this file's permissions are set to 600.
#
# It is strongly suggested to use the TLS endpoint when using this authentication scheme.
sap-control-user: ""
sap-control-password: ""
# The path to a Unix Domain Socket to access SAPControl locally.
#
# This is usually /tmp/.sapstream5<instance number>13
#
# If this is specified, sap-control-url setting will be ignored.
# UDS connection doesn't require authentication
sap-control-uds: ""