@tolinax/ayoune-interfaces 2026.52.0 → 2026.53.0
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.
|
@@ -105,6 +105,13 @@ export interface IComputingEntityProgram {
|
|
|
105
105
|
restartDelayMs?: number;
|
|
106
106
|
restartCount?: number;
|
|
107
107
|
logPaths?: string[];
|
|
108
|
+
/**
|
|
109
|
+
* Glob patterns applied to files found under `logPaths` (directories).
|
|
110
|
+
* Empty or undefined means "collect all *.log files" (legacy behaviour).
|
|
111
|
+
* Supports include patterns ('*.log', 'MT4_*.log') and negated patterns
|
|
112
|
+
* ('!debug-*.log'). Negations apply after includes.
|
|
113
|
+
*/
|
|
114
|
+
logFilePatterns?: string[];
|
|
108
115
|
healthCheck?: IComputingEntityProgramHealthCheck;
|
|
109
116
|
adapter?: string;
|
|
110
117
|
adapterConfig?: Record<string, any>;
|