We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4853ea2 commit 38947f6Copy full SHA for 38947f6
src/models/logData.ts
@@ -60,6 +60,7 @@ class LogData {
60
Error: "Error",
61
plugin_id: "plugin_id",
62
worker: "worker",
63
+ workername: "workername",
64
scheduler_name: "scheduler_name",
65
status_code: "status_code",
66
status: "status",
@@ -179,7 +180,11 @@ class LogData {
179
180
}
181
182
private static jobKeySelector(log: JSONLog): string | undefined {
- return log[LogData.logKeys.scheduler_name] || log[LogData.logKeys.worker];
183
+ return (
184
+ log[LogData.logKeys.scheduler_name] ||
185
+ log[LogData.logKeys.worker] ||
186
+ log[LogData.logKeys.workername]
187
+ );
188
189
190
private static pluginKeySelector(log: JSONLog): string | undefined {
0 commit comments