@odigos/ui-kit 0.0.285 → 0.0.286
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -218,6 +218,20 @@ export interface Workload {
|
|
|
218
218
|
export interface SourceConfig {
|
|
219
219
|
runtimeOverride?: SourceRuntimeOverride | null;
|
|
220
220
|
distroOverride?: SourceDistroOverride | null;
|
|
221
|
+
/**
|
|
222
|
+
* Per-container overrides from Source.config.{ecs,docker}.containerOverrides
|
|
223
|
+
* (agents-api v0.18.0+). Displayed via Workload.containers[].overrides; kept
|
|
224
|
+
* here so a full-config replace can replay the container layer.
|
|
225
|
+
*/
|
|
226
|
+
containerOverrides?: SourceContainerOverride[] | null;
|
|
227
|
+
}
|
|
228
|
+
/** One Source.config.{ecs,docker}.containerOverrides entry. */
|
|
229
|
+
export interface SourceContainerOverride {
|
|
230
|
+
containerName: string;
|
|
231
|
+
runtimeOverride?: SourceRuntimeOverride | null;
|
|
232
|
+
distroOverride?: SourceDistroOverride | null;
|
|
233
|
+
/** Opt-OUT of instrumenting this container; absent/false means "no opinion". */
|
|
234
|
+
disabled?: boolean | null;
|
|
221
235
|
}
|
|
222
236
|
export interface SourceRuntimeOverride {
|
|
223
237
|
language?: string | null;
|