-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathagent.yaml
107 lines (78 loc) · 4.43 KB
/
agent.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
################################################################################
## ##
## $ Trento: Agent configuration $ ##
## ##
## This is the configuration for trento when running the agent. ##
## ##
## Launching ./trento agent start ##
## ##
## Looks for the configuration file in one of the following locations. ##
## ##
## /etc/trento/ <-- first location looked ##
## /usr/etc/trento/ <-- fallback here if no file in previous location ##
## ~/.config/trento/ <-- fallback here if no file in previous location ##
## ##
## Priority goes from top to bottom. ##
## First found file is used, others, if any, are ignored. ##
## ##
## Note: in this case the file must be named agent.yaml ##
## ##
## Otherwise the config file can be explicitly provided via the command line ##
## ##
## ./trento agent start --config=/path/to/trento/agent-config.yaml ##
## ##
## Note: in this case there is no file name constraint. ##
## ##
################################################################################
## Cloud discovery period configures the tick interval for the cloud discovery
## loop.
## Time unit is seconds
## Defaults to 10.
# cloud-discovery-period: 10s
###############################################################################
## Cluster discovery period configures the tick interval for the cluster
## discovery loop.
## Time unit is seconds
## Defaults to 10.
# cluster-discovery-period: 10s
###############################################################################
## Host discovery period configures the tick interval for the host discovery
## loop.
## Time unit is seconds
## Defaults to 10.
# host-discovery-period: 10s
###############################################################################
## SAP system discovery period configures the tick interval for the SAP system
## discovery loop.
## Time unit is seconds
## Defaults to 10.
# sapsystem-discovery-period: 10s
###############################################################################
## Saptune discovery period configures the tick interval for the saptune
## discovery loop.
## Time unit is seconds
## Defaults to 900.
# saptune-discovery-period: 900s
###############################################################################
## Application log level
## Allowed values: error, warn, info, debug
## defaults to info
# log-level: info
###############################################################################
## Trento server URL
# server-url: http://localhost
###############################################################################
## Configure the api-key for trento agent to use in the communication with Trento control plane
## Required.
## Find the api key at <your-trento-installation-url>/settings
# api-key: <the-api-key-generated-by-trento>
###############################################################################
## Facts gathering service URL
## URL to an AMQP service handling communication between the Trento Agent and Server components
## For more details on the URI scheme, please refer to https://www.rabbitmq.com/docs/uri-spec
# facts-service-url: amqp://guest:guest@localhost:5672
###############################################################################
## Prometheus exporters targets
## Configure the prometheus targets. If not given, the lowest discovered IP address
## with a default port number is used
# node-exporter-target: 192.168.1.10:9100