From 2d235d327e9b730553ce55ef02e37f520ecbb586 Mon Sep 17 00:00:00 2001 From: Anton Palyok Date: Sat, 1 Jun 2024 14:31:31 +0200 Subject: [PATCH] Add documentation note about in-process features are only supported in Listen mode. --- documentation/api/stacks.md | 4 ++-- .../configuration/in-process-features-configuration.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/documentation/api/stacks.md b/documentation/api/stacks.md index 7efd903dd52..4147e7f57a4 100644 --- a/documentation/api/stacks.md +++ b/documentation/api/stacks.md @@ -62,7 +62,7 @@ Allowed schemes: ### Sample Request ```http -GET /stack?pid=21632 HTTP/1.1 +GET /stacks?pid=21632 HTTP/1.1 Host: localhost:52323 Authorization: Bearer fffffffffffffffffffffffffffffffffffffffffff= Accept: application/json @@ -100,7 +100,7 @@ Location: localhost:52323/operations/67f07e40-5cca-4709-9062-26302c484f18 ### Sample Request ```http -GET /stack?pid=21632 HTTP/1.1 +GET /stacks?pid=21632 HTTP/1.1 Host: localhost:52323 Authorization: Bearer fffffffffffffffffffffffffffffffffffffffffff= Accept: text/plain diff --git a/documentation/configuration/in-process-features-configuration.md b/documentation/configuration/in-process-features-configuration.md index 26d7578259d..b8503cc1215 100644 --- a/documentation/configuration/in-process-features-configuration.md +++ b/documentation/configuration/in-process-features-configuration.md @@ -4,6 +4,10 @@ First Available: 8.0 Preview 7 +> [!NOTE] +> In-process features are only supported when running dotnet-monitor in `Listen` mode. +> See [Diagnostic Port](./diagnostic-port-configuration.md) configuration for details. + Some features of `dotnet monitor` require loading libraries into target applications. These libraries ship with `dotnet monitor` and are provisioned to be available to target applications using the `DefaultSharedPath` option in the [storage configuration](./storage-configuration.md) section. The following features require these in-process libraries to be used: - [Call Stacks](#call-stacks)