Skip to content

Commit b840b04

Browse files
committed
Prepare 1.9 release (W3C trace context log enrichment).
1 parent dcf2244 commit b840b04

File tree

125 files changed

+977
-2215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+977
-2215
lines changed

README.md

Lines changed: 51 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This is the official Java implementation of the [Dynatrace OneAgent SDK](https:/
1414
* [Troubleshooting](#troubleshooting)
1515
* [API concepts](#api-concepts)
1616
* [OneAgentSDK object](#oneagentsdk-object)
17+
* [Trace Context](#tracecontext)
1718
* [Tracers](#tracers)
1819
* [Features](#features)
1920
* [Trace incoming and outgoing remote calls](#trace-incoming-and-outgoing-remote-calls)
@@ -37,22 +38,23 @@ This is the official Java implementation of the [Dynatrace OneAgent SDK](https:/
3738

3839
## Requirements
3940

40-
* JRE 1.6 or higher
41+
* An JRE that is both supported with a supported version of OneAgent and at least JRE 1.6-compatible.
4142
* Dynatrace OneAgent (for required versions, see table below)
4243
* The OneAgent SDK is not supported on serverless code modules, including those for AWS Lambda.
4344
Consider using [OpenTelemetry](https://www.dynatrace.com/support/help/shortlink/opentel-lambda)
4445
instead in these scenarios.
4546

4647
|OneAgent SDK for Java|Required OneAgent version|Support status|
4748
|:--------------------|:------------------------|:-------------|
49+
|1.9.0 |>=1.261 |Supported |
4850
|1.8.0 |>=1.201 |Supported |
49-
|1.7.0 |>=1.167 |Supported |
50-
|1.6.0 |>=1.161 |Supported |
51-
|1.4.0 |>=1.151 |Supported |
52-
|1.3.0 |>=1.149 |Supported |
53-
|1.2.0 |>=1.147 |Supported |
54-
|1.1.0 |>=1.143 |Supported |
55-
|1.0.3 |>=1.135 |Supported |
51+
|1.7.0 |>=1.167 |Deprecated with support ending 2023-09-01 |
52+
|1.6.0 |>=1.161 |Deprecated with support ending 2023-09-01 |
53+
|1.4.0 |>=1.151 |Deprecated with support ending 2023-09-01 |
54+
|1.3.0 |>=1.149 |Deprecated with support ending 2023-09-01 |
55+
|1.2.0 |>=1.147 |Deprecated with support ending 2023-09-01 |
56+
|1.1.0 |>=1.143 |Deprecated with support ending 2023-09-01 |
57+
|1.0.3 |>=1.135 |Deprecated with support ending 2023-09-01 |
5658

5759
## Integration
5860

@@ -64,13 +66,13 @@ If you want to integrate the OneAgent SDK into your application, just add the fo
6466
<dependency>
6567
<groupId>com.dynatrace.oneagent.sdk.java</groupId>
6668
<artifactId>oneagent-sdk</artifactId>
67-
<version>1.8.0</version>
69+
<version>1.9.0</version>
6870
<scope>compile</scope>
6971
</dependency>
7072
```
7173

72-
If you prefer to integrate the SDK using plain jar file, just download them from Maven Central. You can find the download links for each
73-
version in the [Release notes](#releasenotes) section.
74+
If you prefer to integrate the SDK using plain jar file, just download them from Maven Central, e.g. from
75+
<https://central.sonatype.com/artifact/com.dynatrace.oneagent.sdk.java/oneagent-sdk/1.9.0/versions>.
7476

7577
The Dynatrace OneAgent SDK for Java has no further dependencies.
7678

@@ -112,6 +114,27 @@ default:
112114
It is good practice to check the SDK state regularly as it may change at any point in time (except for PERMANENTLY_INACTIVE, which never
113115
changes throughout the JVM lifetime).
114116

117+
118+
<a name="tracecontext"></a>
119+
120+
## Trace Context
121+
122+
An instance of the `OneAgentSDK` can be used to get the current `ITraceContextInfo` which holds information
123+
about the *Trace-Id* and *Span-Id* of the current PurePath node.
124+
This information can then be used to provide e.g. additional context in log messages.
125+
126+
Please note that `TraceContextInfo` is not intended for tagging or context-propagation use cases.
127+
Dedicated APIs (e.g. [remote calls](#remoting) or [web requests](#webrequests)) as well as
128+
built-in OneAgent sensors take care of linking services correctly.
129+
130+
```Java
131+
TraceContextInfo traceContextInfo = oneAgentSdk.getTraceContextInfo();
132+
String traceId = traceContextInfo.getTraceId();
133+
String spanId = traceContextInfo.getSpanId();
134+
System.out.printf("[!dt dt.trace_id=%s,dt.span_id=%s] sending request... have trace ctx: %s%n",
135+
traceId, spanId, traceContextInfo.isValid());
136+
```
137+
115138
### Tracers
116139

117140
To trace any kind of call you first need to create a Tracer. The Tracer object represents the logical and physical endpoint that
@@ -141,6 +164,7 @@ A more detailed specification of the features can be found in [Dynatrace OneAgen
141164

142165
|Feature |Required OneAgent SDK for Java version|
143166
|:----------------------------------------------|:-------------------------------------|
167+
|Trace context for log enrichment |>=1.9.0 |
144168
|Custom services |>=1.8.0 |
145169
|Trace database requests |>=1.7.0 |
146170
|Trace messaging |>=1.6.0 |
@@ -150,6 +174,9 @@ A more detailed specification of the features can be found in [Dynatrace OneAgen
150174
|In process linking |>=1.1.0 |
151175
|Trace incoming and outgoing remote calls |>=1.0.3 |
152176

177+
178+
<a name="remoting"></a>
179+
153180
### Trace incoming and outgoing remote calls
154181

155182
You can use the SDK to trace proprietary IPC communication from one process to the other. This will enable you to see full Service Flow, PurePath
@@ -254,6 +281,8 @@ try {
254281
}
255282
```
256283

284+
<a name="webrequests"></a>
285+
257286
### Trace web requests
258287

259288
#### Trace incoming web requests
@@ -500,15 +529,14 @@ SLAs apply according to the customer's support level.
500529

501530
## Release notes
502531

503-
see also <https://github.com/Dynatrace/OneAgent-SDK-for-Java/releases>
504-
505-
|Version|Description |Links |
506-
|:------|:-------------------------------------------|:----------------------------------------|
507-
|1.8.0 |Added support for custom services |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.8.0/oneagent-sdk-1.8.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.8.0/oneagent-sdk-1.8.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.8.0/oneagent-sdk-1.8.0-javadoc.jar)|
508-
|1.7.0 |Added support for database requests |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.7.0/oneagent-sdk-1.7.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.7.0/oneagent-sdk-1.7.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.7.0/oneagent-sdk-1.7.0-javadoc.jar)|
509-
|1.6.0 |Added support for messaging |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.6.0/oneagent-sdk-1.6.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.6.0/oneagent-sdk-1.6.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.6.0/oneagent-sdk-1.6.0-javadoc.jar)|
510-
|1.4.0 |Added support for outgoing webrequests |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.4.0/oneagent-sdk-1.4.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.4.0/oneagent-sdk-1.4.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.4.0/oneagent-sdk-1.4.0-javadoc.jar)|
511-
|1.3.0 |Added support for incoming webrequests |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.3.0/oneagent-sdk-1.3.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.3.0/oneagent-sdk-1.3.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.3.0/oneagent-sdk-1.3.0-javadoc.jar)|
512-
|1.2.0 |Added support for custom request attributes |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.2.0/oneagent-sdk-1.2.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.2.0/oneagent-sdk-1.2.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.2.0/oneagent-sdk-1.2.0-javadoc.jar)|
513-
|1.1.0 |Added support for in-process-linking |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.1.0/oneagent-sdk-1.1.0.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.1.0/oneagent-sdk-1.1.0-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.1.0/oneagent-sdk-1.1.0-javadoc.jar)|
514-
|1.0.3 |Initial release |[binary](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.0.3/oneagent-sdk-1.0.3.jar) [source](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.0.3/oneagent-sdk-1.0.3-sources.jar) [javadoc](https://search.maven.org/remotecontent?filepath=com/dynatrace/oneagent/sdk/java/oneagent-sdk/1.0.3/oneagent-sdk-1.0.3-javadoc.jar)|
532+
### Version 1.9.0
533+
534+
* [Add support to retrieve W3C trace context information for log enrichment.](#tracecontext)
535+
536+
### Other announcements
537+
538+
* ⚠️ **Deprecation announcement for older SDK versions:** Version 1.7 and all older versions have been put on the path to deprecation and will no longer be supported starting September 1, 2023. We advise customers to upgrade to newest version. Customers need to upgrade to at least 1.8 but are encouraged to upgrade to the newest available version (1.9).
539+
540+
### Older versions
541+
542+
See <https://github.com/Dynatrace/OneAgent-SDK-for-Java/releases> for older release notes.

docs/allclasses-frame.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
All Classes (sdk 1.8.0 API)
7+
All Classes (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
1313

@@ -67,6 +67,8 @@
6767
<BR>
6868
<A HREF="com/dynatrace/oneagent/sdk/api/enums/SDKState.html" title="enum in com.dynatrace.oneagent.sdk.api.enums" target="classFrame">SDKState</A>
6969
<BR>
70+
<A HREF="com/dynatrace/oneagent/sdk/api/infos/TraceContextInfo.html" title="interface in com.dynatrace.oneagent.sdk.api.infos" target="classFrame"><I>TraceContextInfo</I></A>
71+
<BR>
7072
<A HREF="com/dynatrace/oneagent/sdk/api/Tracer.html" title="interface in com.dynatrace.oneagent.sdk.api" target="classFrame"><I>Tracer</I></A>
7173
<BR>
7274
<A HREF="com/dynatrace/oneagent/sdk/api/infos/WebApplicationInfo.html" title="interface in com.dynatrace.oneagent.sdk.api.infos" target="classFrame"><I>WebApplicationInfo</I></A>

docs/allclasses-noframe.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
All Classes (sdk 1.8.0 API)
7+
All Classes (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
1313

@@ -67,6 +67,8 @@
6767
<BR>
6868
<A HREF="com/dynatrace/oneagent/sdk/api/enums/SDKState.html" title="enum in com.dynatrace.oneagent.sdk.api.enums">SDKState</A>
6969
<BR>
70+
<A HREF="com/dynatrace/oneagent/sdk/api/infos/TraceContextInfo.html" title="interface in com.dynatrace.oneagent.sdk.api.infos"><I>TraceContextInfo</I></A>
71+
<BR>
7072
<A HREF="com/dynatrace/oneagent/sdk/api/Tracer.html" title="interface in com.dynatrace.oneagent.sdk.api"><I>Tracer</I></A>
7173
<BR>
7274
<A HREF="com/dynatrace/oneagent/sdk/api/infos/WebApplicationInfo.html" title="interface in com.dynatrace.oneagent.sdk.api.infos"><I>WebApplicationInfo</I></A>

docs/com/dynatrace/oneagent/sdk/OneAgentSDKFactory.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
OneAgentSDKFactory (sdk 1.8.0 API)
7+
OneAgentSDKFactory (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="OneAgentSDKFactory (sdk 1.8.0 API)";
18+
parent.document.title="OneAgentSDKFactory (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

docs/com/dynatrace/oneagent/sdk/api/CustomServiceTracer.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:12 CET 2023 -->
66
<TITLE>
7-
CustomServiceTracer (sdk 1.8.0 API)
7+
CustomServiceTracer (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="CustomServiceTracer (sdk 1.8.0 API)";
18+
parent.document.title="CustomServiceTracer (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

docs/com/dynatrace/oneagent/sdk/api/DatabaseRequestTracer.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:12 CET 2023 -->
66
<TITLE>
7-
DatabaseRequestTracer (sdk 1.8.0 API)
7+
DatabaseRequestTracer (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="DatabaseRequestTracer (sdk 1.8.0 API)";
18+
parent.document.title="DatabaseRequestTracer (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

docs/com/dynatrace/oneagent/sdk/api/InProcessLink.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
InProcessLink (sdk 1.8.0 API)
7+
InProcessLink (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="InProcessLink (sdk 1.8.0 API)";
18+
parent.document.title="InProcessLink (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

docs/com/dynatrace/oneagent/sdk/api/InProcessLinkTracer.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
InProcessLinkTracer (sdk 1.8.0 API)
7+
InProcessLinkTracer (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="InProcessLinkTracer (sdk 1.8.0 API)";
18+
parent.document.title="InProcessLinkTracer (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

docs/com/dynatrace/oneagent/sdk/api/IncomingMessageProcessTracer.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
IncomingMessageProcessTracer (sdk 1.8.0 API)
7+
IncomingMessageProcessTracer (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="IncomingMessageProcessTracer (sdk 1.8.0 API)";
18+
parent.document.title="IncomingMessageProcessTracer (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

docs/com/dynatrace/oneagent/sdk/api/IncomingMessageReceiveTracer.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_45) on Thu Jan 14 17:41:05 CET 2021 -->
5+
<!-- Generated by javadoc (build 1.6.0_105) on Mon Mar 13 13:06:13 CET 2023 -->
66
<TITLE>
7-
IncomingMessageReceiveTracer (sdk 1.8.0 API)
7+
IncomingMessageReceiveTracer (sdk 1.9.0 API)
88
</TITLE>
99

10-
<META NAME="date" CONTENT="2021-01-14">
10+
<META NAME="date" CONTENT="2023-03-13">
1111

1212
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
1313

1414
<SCRIPT type="text/javascript">
1515
function windowTitle()
1616
{
1717
if (location.href.indexOf('is-external=true') == -1) {
18-
parent.document.title="IncomingMessageReceiveTracer (sdk 1.8.0 API)";
18+
parent.document.title="IncomingMessageReceiveTracer (sdk 1.9.0 API)";
1919
}
2020
}
2121
</SCRIPT>

0 commit comments

Comments
 (0)