echoapi-cron-scheduler-batch 1.0.7 → 1.0.9
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.
- package/index.js +4 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -448,13 +448,16 @@ class CronScheduler {
|
|
|
448
448
|
job_id: record.job_info.job_id,
|
|
449
449
|
report_name: record.job_info.name,
|
|
450
450
|
project_id: record.job_info.project_id,
|
|
451
|
-
user_uid: record.job_info.user_uid,
|
|
452
451
|
execution_id: executionId,
|
|
453
452
|
start_at: this.formatTimeToISO(record.job_info.start_time),
|
|
454
453
|
end_at: this.formatTimeToISO(Date.now()),
|
|
455
454
|
http_pass_rate: `${httpRate}%`,
|
|
456
455
|
assert_pass_rate: `${assertRate}%`,
|
|
457
456
|
avg_response_time: `${avgResp}ms`,
|
|
457
|
+
total_http: stats.http_total,
|
|
458
|
+
success_http: stats.http_success,
|
|
459
|
+
total_assert: stats.assert_total,
|
|
460
|
+
success_assert: stats.assert_success,
|
|
458
461
|
total_units: record.total,
|
|
459
462
|
actual_units: results.length
|
|
460
463
|
},
|