Document aspire dashboard run as primary standalone configuration path#1157
Open
IEvangelist with Copilot wants to merge 2 commits into
Open
Document aspire dashboard run as primary standalone configuration path#1157IEvangelist with Copilot wants to merge 2 commits into
aspire dashboard run as primary standalone configuration path#1157IEvangelist with Copilot wants to merge 2 commits into
Conversation
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Document max log levels for aspire dashboard run
Document Jun 2, 2026
aspire dashboard run as primary standalone configuration path
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Aspire Dashboard documentation to lead with aspire dashboard run as the primary standalone configuration path (instead of container-first examples), while keeping container guidance where it’s still relevant.
Changes:
- Updates standalone/security guidance to use
aspire dashboard runexamples for OTLP and telemetry API hardening. - Adds Aspire CLI–first configuration examples for telemetry limits, with Docker/environment-variable fallback.
- Aligns examples to forwarded dashboard config argument syntax (
--Dashboard:...=...).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| src/frontend/src/content/docs/dashboard/security-considerations.mdx | Replaces Docker-based hardening examples with aspire dashboard run examples for OTLP and telemetry API. |
| src/frontend/src/content/docs/dashboard/configuration.mdx | Adds CLI-first standalone configuration examples for telemetry limits and retains Docker env-var fallback. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+61
to
+63
| aspire dashboard run \ | ||
| --Dashboard:Otlp:AuthMode=ApiKey \ | ||
| --Dashboard:Otlp:PrimaryApiKey={MY_APIKEY} |
Comment on lines
+70
to
+72
| aspire dashboard run ` | ||
| --Dashboard:Otlp:AuthMode=ApiKey ` | ||
| --Dashboard:Otlp:PrimaryApiKey={MY_APIKEY} |
Comment on lines
+156
to
+159
| aspire dashboard run \ | ||
| --Dashboard:Api:Enabled=true \ | ||
| --Dashboard:Api:AuthMode=ApiKey \ | ||
| --Dashboard:Api:PrimaryApiKey={MY_APIKEY} |
Comment on lines
+166
to
+169
| aspire dashboard run ` | ||
| --Dashboard:Api:Enabled=true ` | ||
| --Dashboard:Api:AuthMode=ApiKey ` | ||
| --Dashboard:Api:PrimaryApiKey={MY_APIKEY} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Aspire 13.3 introduced the preview
aspire dashboard run, but dashboard docs still emphasized container-first examples in key standalone/security sections. This updates those sections to lead with CLI usage while preserving Docker fallback where container-only flow remains relevant.Standalone dashboard configuration (
dashboard/configuration.mdx)aspire dashboard runas the primary way to configure telemetry limits in standalone mode.docker runexamples as fallback for container-based deployments.Security guidance (
dashboard/security-considerations.mdx)docker run -it ...command examples withaspire dashboard run ...equivalents in:CLI flag/config syntax alignment
--Dashboard:...=...) consistent with Aspire CLI behavior.