Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Beta] Update Beta Code Examples README #1264

Merged
merged 1 commit into from
Jan 26, 2024
Merged
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
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Azure VMs and Web Apps, and even other public clouds. This solution is based on

Consider whether this preview is right for you. It *enables distributed tracing, metrics, logs* and _excludes_:

- Live Metrics
- Autopopulation of Cloud Role Name and Cloud Role Instance in Azure environments
- Autopopulation of User ID and Authenticated User ID when you use the Application Insights JavaScript SDK
- Autopopulation of User IP (to determine location attributes)
Expand Down Expand Up @@ -88,6 +87,9 @@ const config : AzureMonitorOpenTelemetryOptions = {
enableAutoCollectExceptions: true,
enableAutoCollectStandardMetrics: true,
enableAutoCollectPerformance: true,
enableLiveMetrics: false,
enableWebInstrumentation: false,
webInstrumentationConnectionString: "",
instrumentationOptions: {
azureSdk: { enabled: true },
http: { enabled: true },
Expand All @@ -96,13 +98,11 @@ const config : AzureMonitorOpenTelemetryOptions = {
postgreSql: { enabled: true },
redis: { enabled: true },
redis4: { enabled: true },
},
resource: resource,
logInstrumentationOptions: {
console: { enabled: true},
bunyan: { enabled: true},
winston: { enabled: true},
},
resource: resource,
extendedMetrics:{
gc: true,
heap: true,
Expand Down Expand Up @@ -138,9 +138,7 @@ Configuration could be set using configuration file `applicationinsights.json`
"instrumentationOptions":{
"azureSdk": {
"enabled": false
}
},
"logInstrumentationOptions":{
},
"console": {
"enabled": true
}
Expand Down
Loading