# apm-parser **Repository Path**: mirrors_elastic/apm-parser ## Basic Information - **Project Name**: apm-parser - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-30 - **Last Updated**: 2025-08-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # APM PARSER ## Pre-conditions Makes sure to set `testBuildId` and `journeyName` as APM global labels, it is needed to match appropriate transactions. ## Cli usage ```typescript yarn cli -u -p -c "https://apm-7-17.es.us-central1.gcp.cloud.es.io:9243" -b "local-90a41a83-90da-487b-a6be-4713a9ad18d8" -n "My cool journey" ``` ## Library usage ```typescript apmParser({ param: { journeyName: 'My cool journey', buildId: 'local-90a41a83-90da-487b-a6be-4713a9ad18d8'}, client: { auth: { username: '', password: '' }, baseURL: '' }, }) .then(console.info) .catch(console.error); ```