Skip to content

Commit 5d9cb85

Browse files
authored
Merge pull request #261728 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 23974a5 + cddaedd commit 5d9cb85

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

articles/azure-monitor/app/opentelemetry-add-modify.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,15 @@ You can collect more data automatically when you include instrumentation librari
230230

231231
### [ASP.NET Core](#tab/aspnetcore)
232232

233-
To add a community library, use the `ConfigureOpenTelemetryMeterProvider` or `ConfigureOpenTelemetryTracerProvider` methods.
233+
To add a community library, use the `ConfigureOpenTelemetryMeterProvider` or `ConfigureOpenTelemetryTracerProvider` methods,
234+
after adding the nuget package for the library.
234235

235236
The following example demonstrates how the [Runtime Instrumentation](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Runtime) can be added to collect extra metrics.
236237

238+
```dotnetcli
239+
dotnet add package OpenTelemetry.Instrumentation.Runtime
240+
```
241+
237242
```csharp
238243
// Create a new ASP.NET Core web application builder.
239244
var builder = WebApplication.CreateBuilder(args);

articles/azure-monitor/app/opentelemetry-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ You might want to enable the OpenTelemetry Protocol (OTLP) Exporter alongside th
702702
1. Install the [OpenTelemetry.Exporter.OpenTelemetryProtocol](https://www.nuget.org/packages/OpenTelemetry.Exporter.OpenTelemetryProtocol/) package in your project.
703703
704704
```dotnetcli
705-
dotnet add package --prerelease OpenTelemetry.Exporter.OpenTelemetryProtocol
705+
dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol
706706
```
707707

708708
1. Add the following code snippet. This example assumes you have an OpenTelemetry Collector with an OTLP receiver running. For details, see the [example on GitHub](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/examples/Console/TestOtlpExporter.cs).

articles/cosmos-db/index-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Azure Cosmos DB, by default, won't create any spatial indexes. If you would like
131131

132132
Queries that have an `ORDER BY` clause with two or more properties require a composite index. You can also define a composite index to improve the performance of many equality and range queries. By default, no composite indexes are defined so you should [add composite indexes](how-to-manage-indexing-policy.md#composite-index) as needed.
133133

134-
Unlike with included or excluded paths, you can't create a path with the `/*` wildcard. Every composite path has an implicit `/?` at the end of the path that you don't need to specify. Composite paths lead to a scalar value that is the only value included in the composite index. If a path in a composite index doesn't exist in an item, a value will be added to the index to indicate that the path is undefined.
134+
Unlike with included or excluded paths, you can't create a path with the `/*` wildcard. Every composite path has an implicit `/?` at the end of the path that you don't need to specify. Composite paths lead to a scalar value that is the only value included in the composite index. If a path in a composite index doesn't exist in an item or leads to a non-scalar value, a value will be added to the index to indicate that the path is undefined.
135135

136136
When defining a composite index, you specify:
137137

articles/cosmos-db/table/how-to-use-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ const entities = tableClient.listEntities({
257257
});
258258

259259
let topEntities = [];
260-
const iterator = listResults.byPage({ maxPageSize: topN });
260+
const iterator = entities.byPage({ maxPageSize: topN });
261261

262262
for await (const page of iterator) {
263263
topEntities = page;

articles/dev-box/dev-box-faq.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,15 @@ sections:
5151
For optimal latency, we recommend creating pools close to the developer’s physical location. For example, if a developer is based in India, we recommend creating a dev box in the Central India region. This is generally thought of as a best practice to improve typing speeds as developers work within their dev boxes.
5252
5353
Developers primarily spend their time typing and moving their mouse within their Dev Box. We recommend optimizing for typing latency, since these actions will affect development teams the most.
54-
54+
55+
- question: Can I look up in which regions I should create my pools?
56+
answer: |
57+
Whether you’re creating a new pool, or choosing a pool for creating a dev box, it's important to optimize for latency and performance. It can be difficult to determine the optimal region for developers to host their dev boxes.
58+
59+
For best results, we recommend that admins ask the developers to use the [Azure Virtual Desktop Experience Estimator](https://aka.ms/avd-estimator). This tool estimates the connection round trip time (RTT) from the developer’s physical location, through the Azure Virtual Desktop service, to each Azure region in which you can deploy your dev box. The highlighted region is the region with the lowest RTT from your current location. This is the region where the developer will experience optimal connectivity.
60+
61+
If there isn't a pool for that region yet, we recommend that you create a new pool for that region or for the next best option according to the estimator.
62+
5563
- question: How are backup, high-availability, and disaster recovery implemented in Microsoft Dev Box?
5664
answer: |
5765
Microsoft Intune provides backup functionality for dev boxes. It automatically sets regular restore points, and enables you to create a manual restore point, just as you would for a [Cloud PC](/windows-365/enterprise/create-manual-restore-point).

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-service-capacity-limits.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Maximum values allowed for various components of dedicated SQL pool in Azure Syn
4848
| Statistics |Statistics created on columns per table. |30,000 |
4949
| Stored Procedures |Maximum levels of nesting. |8 |
5050
| View |Columns per view |1,024 |
51+
| Workload Classifier |User-defined classifier |100 |
5152
||||
5253

5354
## Loads

0 commit comments

Comments
 (0)