Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
This article applies to: ✔️ dotnet-monitor version 6.0.0 and later versions
Install
There are two ways to download dotnet-monitor:
dotnet global tool:
To install the latest release version of the
dotnet-monitorNuGet package, use the dotnet tool install command:dotnet tool install --global dotnet-monitorDocker image:
Download a Docker image for use in multi-container environments:
docker pull mcr.microsoft.com/dotnet/monitor
Synopsis
dotnet-monitor [-h|--help] [--version] <command>
Description
The dotnet-monitor global tool is a way to monitor .NET applications in production environments and to collect diagnostic artifacts (for example, dumps, traces, logs, and metrics) on-demand or using automated rules for collecting under specified conditions.
Options
--versionDisplays the version of the dotnet-monitor utility.
-h|--helpShows command-line help.
Commands
| Command |
|---|
| dotnet monitor collect |
| dotnet monitor config show |
| dotnet monitor generatekey |
dotnet-monitor collect
Monitor .NET applications, allow collecting diagnostic artifacts, and send the results to a chosen destination.
Synopsis
dotnet-monitor collect [-h|--help] [-u|--urls] [-m|--metrics] [--metricUrls] [--diagnostic-port] [--no-auth] [--temp-apikey] [--no-http-egress]
Options
-h|--helpShows command-line help.
-u|--urls <urls>Bindings for the HTTP api. Default is
https://localhost:52323.-m|--metrics [true|false]Enable publishing of metrics to
/metricsroute. Default istrue--metricUrls <urls>Bindings for the metrics HTTP api. Default is
http://localhost:52325.--diagnostic-port <path>The fully qualified path and filename of the diagnostic port to which runtime instances can connect. Specifying this option places
dotnet-monitorinto 'listen' mode. When not specified,dotnet-monitoris in 'connect' mode.On Windows, this must be a valid named pipe name. On Linux and macOS, this must be a valid Unix Domain Socket path.
--no-authDisables API key authentication. Default is
false.It is strongly recommended that this option is not used in production environments.
--temp-apikeyGenerates a temporary API key for the
dotnet-monitorinstance.--no-http-egressDisables egress of diagnostic artifacts via the HTTP response. When specified, artifacts must be egressed using an egress provider.
dotnet-monitor config show
Shows configuration, as if dotnet-monitor collect was executed with these parameters.
Synopsis
dotnet-monitor config show [-h|--help] [-u|--urls] [-m|--metrics] [--metricUrls] [--diagnostic-port] [--no-auth] [--temp-apikey] [--no-http-egress] [--level] [--show-sources]
Options
-h|--helpShows command-line help.
-u|--urls <urls>Bindings for the HTTP api. Default is
https://localhost:52323.This value is mapped into configuration as the
urlskey.-m|--metrics [true|false]Enable publishing of metrics to
/metricsroute. Default istrue.This value is mapped into configuration as the
Metrics:Enabledkey.--metricUrls <urls>Bindings for the metrics HTTP api. Default is
http://localhost:52325.This value is mapped into configuration as the
Metrics:Endpointskey.--diagnostic-port <path>The fully qualified path and filename of the diagnostic port to which runtime instances can connect. Specifying this option places
dotnet-monitorinto 'listen' mode. When not specified,dotnet-monitoris in 'connect' mode.On Windows, this must be a valid named pipe name. On Linux and macOS, this must be a valid Unix Domain Socket path.
This value is mapped into configuration as the
DiagnosticPort:EndpointNamekey.--no-authDisables API key authentication. Default is
false.It is strongly recommended that this option is not used in production environments.
This value is not mapped into configuration.
--temp-apikeyGenerates a temporary API key for the
dotnet-monitorinstance.This value is mapped into configuration as the
Authentication:MonitorApiKeykey.--no-http-egressDisables egress of diagnostic artifacts via the HTTP response. When specified, artifacts must be egressed using an egress provider.
This value is not mapped into configuration.
--levelConfiguration level.
Fullconfiguration can show sensitive information. There are two levels:Full- The full configuration without any redaction of any values.Redacted- The full configuration but sensitive information, such as known secrets, is redacted.
--show-sourcesIdentifies from which configuration source each effective configuration value is provided.
dotnet-monitor generatekey
Generate an API key and hash for HTTP authentication.
Synopsis
dotnet-monitor generatekey [-h|--help] [-o|--output] [-e|--expiration]
Options
-h|--helpShows command-line help.
-o|--output <Cmd|Json|MachineJson|PowerShell|Shell|Text>The output format in which the API key information is written to standard output.
The allowable values are:
Cmd- Outputs in a format usable in Windows Command Prompt or batch files.Json- Outputs in a format of a JSON object.MachineJson- Outputs in a format of a JSON object without comments and explanation. Useful for automation scenarios.PowerShell- Outputs in a format usable in PowerShell prompts and scripts.Shell- Outputs in a format usable in Linux shells such as Bash.Text- Outputs in a format that is plain text.
-e|--expiration <expiration>The expiration time after which the generated API key will no longer be accepted. The value must be in TimeSpan format (for example, "7.00:00:00" for 7 days). Default: "7.00:00:00" (7 days).