Skip to content

Commit 8f93f31

Browse files
authored
Remove preview from authentication
1 parent 15f207a commit 8f93f31

File tree

2 files changed

+16
-22
lines changed

2 files changed

+16
-22
lines changed

articles/azure-monitor/app/azure-ad-authentication.md

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,9 @@ The following example shows how to configure the Java agent to use system-assign
161161
```JSON
162162
{
163163
"connectionString": "App Insights Connection String with IngestionEndpoint",
164-
"preview": {
165-
"authentication": {
166-
"enabled": true,
167-
"type": "SAMI"
168-
}
164+
"authentication": {
165+
"enabled": true,
166+
"type": "SAMI"
169167
}
170168
}
171169
```
@@ -177,13 +175,11 @@ The following example shows how to configure the Java agent to use user-assigned
177175
```JSON
178176
{
179177
"connectionString": "App Insights Connection String with IngestionEndpoint",
180-
"preview": {
181-
"authentication": {
182-
"enabled": true,
183-
"type": "UAMI",
184-
"clientId":"<USER-ASSIGNED MANAGED IDENTITY CLIENT ID>"
185-
}
186-
}
178+
"authentication": {
179+
"enabled": true,
180+
"type": "UAMI",
181+
"clientId":"<USER-ASSIGNED MANAGED IDENTITY CLIENT ID>"
182+
}
187183
}
188184
```
189185
:::image type="content" source="media/azure-ad-authentication/user-assigned-managed-identity.png" alt-text="Screenshot that shows user-assigned managed identity." lightbox="media/azure-ad-authentication/user-assigned-managed-identity.png":::
@@ -195,14 +191,12 @@ The following example shows how to configure the Java agent to use a service pri
195191
```JSON
196192
{
197193
"connectionString": "App Insights Connection String with IngestionEndpoint",
198-
"preview": {
199-
"authentication": {
200-
"enabled": true,
201-
"type": "CLIENTSECRET",
202-
"clientId":"<YOUR CLIENT ID>",
203-
"clientSecret":"<YOUR CLIENT SECRET>",
204-
"tenantId":"<YOUR TENANT ID>"
205-
}
194+
"authentication": {
195+
"enabled": true,
196+
"type": "CLIENTSECRET",
197+
"clientId":"<YOUR CLIENT ID>",
198+
"clientSecret":"<YOUR CLIENT SECRET>",
199+
"tenantId":"<YOUR TENANT ID>"
206200
}
207201
}
208202
```

articles/azure-monitor/app/java-standalone-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -791,10 +791,10 @@ By default, Application Insights Java 3.x sends a heartbeat metric once every 15
791791
> [!NOTE]
792792
> You can't increase the interval to longer than 15 minutes because the heartbeat data is also used to track Application Insights usage.
793793
794-
## Authentication (preview)
794+
## Authentication
795795

796796
> [!NOTE]
797-
> The authentication feature is available starting from version 3.2.0.
797+
> The authentication feature is GA since version 3.4.17.
798798
799799
You can use authentication to configure the agent to generate [token credentials](/java/api/overview/azure/identity-readme#credentials) that are required for Azure Active Directory authentication.
800800
For more information, see the [Authentication](./azure-ad-authentication.md) documentation.

0 commit comments

Comments
 (0)