Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/config/config.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Deep Java Client config values

A list of the possible config values for the deep python agent. They can be set via code, as environment variables, or as system properties.
A list of the possible config values for the deep java client. They can be set via code, as environment variables, or as system properties.

Note: When setting as environment variable prefix the key with 'DEEP_'. e.g. DEEP_SERVICE_URL

Expand All @@ -10,7 +10,7 @@ Note: When setting as system property lower case and use '.' as well as the pref
|-----------------------|------------|--------------------------------------------------------------------------------------------------------------------------------------|
| SERVICE_URL | deep:43315 | The url (hostname:port) of the deep service to connect to. |
| SERVICE_SECURE | True | Can be set to False if the service doesn't support secure connections. |
| LOGGING_CONF | None | Can be used to override the python logging config used by the agent. |
| LOGGING_CONF | None | Can be used to override the logging config used by the client. |
| POLL_TIMER | 10 | The time (in seconds) of the interval between polls. |
| SERVICE_AUTH_PROVIDER | None | The auth provider to use, each provider can have their own config, see available [auth providers](../auth/providers.md) for details. |
| IN_APP_INCLUDE | None | A string of comma (,) seperated values that indicate a package is part of the app. |
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ When using the dependency approach you simple add deep to you project and start
<dependency>
<groupId>com.intergral.deep</groupId>
<artifactId>deep</artifactId>
<version>1.0-SNAPSHOT</version>
<version>LATEST</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.intergral.deep</groupId>
<artifactId>agent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>LATEST</version>
<scope>provided</scope>
</dependency>
</depedencies>
Expand Down
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -551,11 +551,13 @@

<!--test deps-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<!-- Version upgrade blocked by junit-pioneer version -->
<version>5.9.3</version>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down