This repository was archived by the owner on Sep 24, 2025. It is now read-only.
-
Couldn't load subscription status.
- Fork 482
Webhook
leedonggyu edited this page Sep 29, 2020
·
1 revision
nGrinder 3.5.2 supports Webhook for specific events. A very simple configuration allows you to use it.
Let's see how to use the nGrinder webhook.
- Go to the
webhook settingsmenu
- Enter the settings below
| Name | Description |
|---|---|
| Payload URL | The URL called when the webhook is triggered. All requests are requested by POST method |
| Content Type | Content type of webhook request, application/json and application/x-www-form-urlencoded are supported |
| Start | Determine if webhook is triggered at the start of the test. |
| Finish | Determine if webhook is triggered at the finish of the test. |
| Active | Determine if webhook is enabled or not |
- Check your URL is valid, the validation result will be added to recent activation automatically
| Filed | Type | Description |
|---|---|---|
| createdUserId | String | User's ID who run the test |
| testName | String | Test name |
| scriptName | String | Script name |
| startTime | String | Start time |
| eventType | String | Type of the event that triggered the webhook |
| tags | String | Tag names |
| testId | long | Identification number |
| vuser | int | Virtual users count |
| Field | Type | Description |
|---|---|---|
| createdUserId | String | User's ID who run the test |
| testName | String | Test name |
| scriptName | String | Script name |
| finishTime | String | Finish time |
| runTime | String | Total running time |
| status | String | Finish status |
| eventType | String | Type of the event that triggered the webhook |
| tags | String | Tag names |
| testId | long | Identification number |
| errors | long | Errors count |
| executedTests | long | Total executed test |
| successfulTests | long | Successful test |
| peakTPS | double | Top(Peak) TPS |
| TPS | double | Average of TPS |
| meanTestTime | double | Mean test time |
| vuser | int | Virtual users count |