-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial outline * align with other distro docs * align with other languages * clean up code comments, align with other distro docs * reframe generated guide as migration guide * update intro, add questions * update getting started * update configuration file * lint content * address feedback from @bmorelli25 * translate from asciidoc to markdown * merge intro content and README content, link to docs from README * adjust for github audience * fix some formatting * update docs automation * update reference to automation * Update README.md Co-authored-by: jackshirazi <[email protected]> * update naming * address feedback from @mdbirnstiehl * update link text * one more for to of * fix ConfigurationExporterTest to generate markdown instead of asciidoc * apply suggestions from code review Co-authored-by: jackshirazi <[email protected]> * update download section Co-authored-by: jackshirazi <[email protected]> * apply suggestions from code review Co-authored-by: Jonas Kunz <[email protected]> --------- Co-authored-by: jackshirazi <[email protected]> Co-authored-by: Jack Shirazi <[email protected]> Co-authored-by: Jonas Kunz <[email protected]>
- Loading branch information
1 parent
d39b0ed
commit add6be8
Showing
15 changed files
with
414 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<#-- @ftlvariable name="config" type="java.util.Map<java.lang.String,java.util.List<co.elastic.otel.config.ConfigurationOption>>" --> | ||
<#-- @ftlvariable name="keys" type="java.util.Collection<java.lang.String>" --> | ||
|
||
This documentation describes how to update applications using the [Elastic APM Java agent](https://www.elastic.co/guide/en/apm/agent/java/current/index.html) to use the Elastic Distribution of OpenTelemetry Java (EDOT Java). | ||
|
||
Start by installing EDOT Java following the steps outlined in [Get started](./get-started.md). Then update existing APM Java agent configuration options in your application with the equivalent [OpenTelemetry SDK configuration variables](https://opentelemetry.io/docs/languages/sdk-configuration/general/) (listed below). | ||
|
||
## Option reference | ||
|
||
This is a list of all APM Java agent configuration options grouped by their category. | ||
Select one of the following for more information. | ||
|
||
<#list config as category, options> | ||
<#list options as option> | ||
* [${option.key}](#${option.key}) | ||
</#list> | ||
</#list> | ||
|
||
<#list config as category, options> | ||
## ${category} | ||
|
||
<#list options as option> | ||
### `${option.key}`${option.tags?has_content?then(" (${option.tags?join(' ')})", '')} | ||
|
||
${option.description} | ||
|
||
<!-- | ||
This file is auto-generated. Please make changes in *Configuration.java (for example, CoreConfiguration.java) and execute ConfigurationExporter. | ||
--> | ||
|
||
</#list> | ||
</#list> | ||
|
||
<#macro defaultValue option>${option.defaultValueAsString?has_content?then("${option.defaultValueAsString?replace(',([^\\\\s])', ', $1', 'r')}", '<none>')}</#macro> | ||
|
||
<#list config as category, options> | ||
<!-- ${category} --> | ||
</#list> |
Oops, something went wrong.