forked from elastic/apm-agent-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.asciidoc.ftl
193 lines (157 loc) · 6.69 KB
/
configuration.asciidoc.ftl
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<#-- @ftlvariable name="config" type="java.util.Map<java.lang.String,java.util.List<org.stagemonitor.configuration.ConfigurationOption<?>>>" -->
<#-- @ftlvariable name="keys" type="java.util.Collection<java.lang.String>" -->
[[configuration]]
== Configuration
To adapt the Elastic APM Java agent to your needs,
you can configure it using one of the methods below, listed in descending order of precedence:
[horizontal]
1) {apm-app-ref}/agent-configuration.html[Central configuration]::
Configure the Agent in the Kibana APM app.
<<configuration-dynamic, image:/reference/images/dynamic-config.svg[] >>
2) Properties file::
The `elasticapm.properties` file is located in the same folder as the agent jar,
or provided through the <<config-config-file,`config_file`>> option.
image:/reference/images/dynamic-config.svg[link=configuration.html#configuration-dynamic]
3) Java system properties::
All configuration keys are prefixed with `elastic.apm.` +
image:/reference/images/dynamic-config.svg[link=configuration.html#configuration-dynamic]
4) Environment variables::
All configuration keys are in uppercase and prefixed with `ELASTIC_APM_`.
5) Runtime attach parameters::
. `--config` parameter. +
See <<setup-attach-cli>>.
. Arguments of `ElasticApmAttacher.attach(...)`. +
See <<setup-attach-api>>.
. `elasticapm.properties` in classpath root with `ElasticApmAttacher.attach()`. +
See <<setup-attach-api>>.
6) Default values::
Defined for each configuration.
[float]
[[configuration-dynamic]]
=== Dynamic configuration image:/reference/images/dynamic-config.svg[]
Configuration options marked with Dynamic true can be changed at runtime when set from supported sources:
- {apm-app-ref}/agent-configuration.html[Central configuration]
- `elasticapm.properties` file
- Java system properties, but only when set from within the application
NOTE: There are two distinct ways to use `elasticapm.properties`: as an external configuration file, and as a classpath resource. +
Only the external file can be used for dynamic configuration.
[float]
[[configuration-minimal]]
=== Minimal configuration
In order to get started with Elastic APM,
the most important configuration options are <<config-service-name>>,
<<config-server-url>> and <<config-application-packages>>.
Note that even these settings are optional.
Click on their name to see how the default values are determined.
An example configuration looks like this:
[source,bash]
.System properties
----
-Delastic.apm.service_name=my-cool-service
-Delastic.apm.application_packages=org.example,org.another.example
-Delastic.apm.server_url=http://127.0.0.1:8200
----
[source,properties]
.elasticapm.properties
----
service_name=my-cool-service
application_packages=org.example,org.another.example
server_url=http://127.0.0.1:8200
----
[source,bash]
.Environment variables
----
ELASTIC_APM_SERVICE_NAME=my-cool-service
ELASTIC_APM_APPLICATION_PACKAGES=org.example,org.another.example
ELASTIC_APM_SERVER_URL=http://127.0.0.1:8200
----
<#assign defaultServiceName>
Auto-detected based on the rules described above
</#assign>
[float]
=== Option reference
This is a list of all configuration options grouped by their category.
Click on a key to get more information.
<#list config as category, options>
* <<config-${category?lower_case?replace(" ", "-")}>>
<#list options as option>
** <<config-${option.key?replace("[^a-z]", "-", "r")}>>
</#list>
</#list>
<#list config as category, options>
[[config-${category?lower_case?replace(" ", "-")}]]
=== ${category} configuration options
++++
<titleabbrev>${category}</titleabbrev>
++++
<#list options as option>
// This file is auto generated. Please make your changes in *Configuration.java (for example CoreConfiguration.java) and execute ConfigurationExporter
[float]
[[config-${option.key?replace("[^a-z]", "-", "r")}]]
==== `${option.key}`${option.tags?has_content?then(" (${option.tags?join(' ')})", '')}
<#if option.tags?seq_contains("experimental")>
NOTE: This feature is currently experimental, which means it is disabled by default and it is not guaranteed to be backwards compatible in future releases.
</#if>
${option.description}
<#if option.dynamic><<configuration-dynamic, image:/reference/images/dynamic-config.svg[] >></#if>
<#if option.valueType?matches("TimeDuration")>
<#if option.valueConverter.canUseMicros>
Supports the duration suffixes `us`, `ms`, `s` and `m`.
<#else>
Supports the duration suffixes `ms`, `s` and `m`.
</#if>
Example: `${option.defaultValueAsString}`.
</#if>
<#if option.validOptions?has_content>
Valid options: <#list option.validOptionsLabelMap?values as validOption>`${validOption}`<#if validOption_has_next>, </#if></#list>
</#if>
[options="header"]
|============
| Default | Type | Dynamic
| <#if option.key?matches("service_name")>${defaultServiceName}<#else>`<@defaultValue option/>`</#if> | ${option.valueType} | ${option.dynamic?c}
|============
[options="header"]
|============
| Java System Properties | Property file | Environment
| `elastic.apm.${option.key}` | `${option.key}` | `ELASTIC_APM_${option.key?upper_case?replace(".", "_")}`
|============
</#list>
</#list>
<#macro defaultValue option>${option.defaultValueAsString?has_content?then("${option.defaultValueAsString?replace(',([^\\\\s])', ', $1', 'r')}", '<none>')}</#macro>
[[config-reference-properties-file]]
=== Property file reference
[source,properties]
.elasticapm.properties
----
<#list config as category, options>
############################################
# ${category?right_pad(40)} #
############################################
<#list options as option>
<#if !option.tags?seq_contains("internal")>
<#if option.label?has_content>
# ${option.label}
#
</#if>
# ${option.description?replace("\n", "\n# ", "r")}
#
<#if option.validOptions?has_content>
# Valid options: <#list option.validOptionsLabelMap?values as validOption>${validOption}<#if validOption_has_next>, </#if></#list>
</#if>
# ${option.dynamic?then("This setting can be changed at runtime",
"This setting can not be changed at runtime. Changes require a restart of the application.")}
# Type: ${option.valueType?matches("List|Collection")?then("comma separated list", option.valueType)}
<#if option.valueType?matches("TimeDuration")>
<#if option.valueConverter.canUseMicros>
# Supports the duration suffixes us, ms, s and m. Example: ${option.defaultValueAsString}.
<#else>
# Supports the duration suffixes ms, s and m. Example: ${option.defaultValueAsString}.
</#if>
</#if>
# Default value: ${option.key?matches("service_name")?then(defaultServiceName?replace("\n", "\n# ", "r"), option.defaultValueAsString!)}
#
# ${option.key}=${option.key?matches("service_name")?then('', option.defaultValueAsString!)}
</#if>
</#list>
</#list>
----