Metadata Field | Metadata Description |
userID | UIN of the user who executes the performance testing. |
appID | App ID of the user who executes the performance testing. |
scenarioID | Scenario ID of the performance testing task. |
jobID | Performance testing task ID. |
region | Region to which the engine belongs. The values for each region are as follows: Guangzhou: ap-guangzhou. Shanghai: ap-shanghai. Beijing: ap-beijing. Nanjing: ap-nanjing Chengdu:ap-chengdu |
// get metadataimport { metadata } from 'pts'var meta = metadata()export default function () {console.log(meta.userID) // 123456console.log(meta.appID) // 123456console.log(meta.scenarioID) // scenario-123456console.log(meta.jobID) // job-123456console.log(meta.region) // ap-guangzhou}