You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/frontend/src/content/docs/get-started/glossary.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ Resources are the building blocks you compose in your AppHost.
50
50
51
51
### Distributed application
52
52
53
-
A **distributed application**is an application split into multiple independent services that communicate over a network. Instead of one monolithic application, you have:
53
+
A **distributed application**is an application split into multiple independent services that communicate over a network. Instead of one monolithic application, you have:
54
54
55
55
- A frontend service
56
56
- One or more API services
@@ -63,7 +63,7 @@ Aspire helps you orchestrate all these pieces together.
63
63
64
64
### Service defaults
65
65
66
-
**Service defaults**are pre-configured settings that Aspire applies to your .NET projects automatically. They include:
66
+
**Service defaults**are pre-configured settings that Aspire applies to your .NET projects automatically. They include:
67
67
68
68
-**OpenTelemetry** - Automatic logging, tracing, and metrics
69
69
-**Health checks** - Endpoints for monitoring (`/health`, `/alive`)
**Service discovery**is the mechanism that allows your services to find and communicate with each other by name, without hardcoding addresses. In Aspire:
156
+
**Service discovery**is the mechanism that allows your services to find and communicate with each other by name, without hardcoding addresses. In Aspire:
157
157
158
158
- Resources are addressable by their resource name (e.g., `http://apiservice`)
159
159
- The AppHost configures DNS/environment variables so services can resolve each other
@@ -163,7 +163,7 @@ For details, see [Service Discovery](/fundamentals/service-discovery/).
163
163
164
164
### Health check
165
165
166
-
A **health check**is a mechanism to determine if a resource is ready and functioning. Aspire uses health checks in two ways:
166
+
A **health check**is a mechanism to determine if a resource is ready and functioning. Aspire uses health checks in two ways:
167
167
168
168
1.**AppHost level**: Determines when dependencies are ready (controls `WaitFor()` behavior)
169
169
2.**Application level**: Exposes `/health` and `/alive` endpoints for load balancers
@@ -172,7 +172,7 @@ For details, see [Health Checks](/fundamentals/health-checks/).
172
172
173
173
### Environment variable
174
174
175
-
Aspire uses **environment variables**to pass configuration from the AppHost to your services:
175
+
Aspire uses **environment variables**to pass configuration from the AppHost to your services:
0 commit comments