@@ -117,17 +117,17 @@ export interface CoreStatus {
117117
118118/**
119119 * API for accessing status of Core and this plugin's dependencies as well as for customizing this plugin's status.
120- *
120+ *
121121 * @remarks
122122 * By default, a plugin inherits it's current status from the most severe status level of any Core services and any
123123 * plugins that it depends on. This default status is available on the
124124 * {@link ServiceStatusSetup.derivedStatus$ | core.status.derviedStatus$} API.
125- *
125+ *
126126 * Plugins may customize their status calculation by calling the {@link ServiceStatusSetup.set | core.status.set} API
127127 * with an Observable. Within this Observable, a plugin may choose to only depend on the status of some of its
128128 * dependencies, to ignore severe status levels of particular Core services they are not concerned with, or to make its
129129 * status dependent on other external services.
130- *
130+ *
131131 * @example
132132 * Customize a plugin's status to only depend on the status of SavedObjects:
133133 * ```ts
@@ -139,7 +139,7 @@ export interface CoreStatus {
139139 * );
140140 * );
141141 * ```
142- *
142+ *
143143 * @example
144144 * Customize a plugin's status to include an external service:
145145 * ```ts
@@ -157,7 +157,7 @@ export interface CoreStatus {
157157 * of({ level: ServiceStatusLevels.unavailable, summary: `External Service is down`, meta: { error }})
158158 * })
159159 * );
160- *
160+ *
161161 * core.status.set(
162162 * combineLatest([core.status.derivedStatus$, externalStatus$]).pipe(
163163 * map(([derivedStatus, externalStatus]) => {
@@ -170,7 +170,7 @@ export interface CoreStatus {
170170 * )
171171 * );
172172 * ```
173- *
173+ *
174174 * @public
175175 */
176176export interface StatusServiceSetup {
0 commit comments