Open acostmig opened 2 years ago
@acostmig We have temporarily disabled the JMeter JTL dashboard. We will let you know once this is available again.
Are there any plans to enable the feature again? @ninallam
any tentative date to enable the JMeter JTL dashboard ?
Any updates as to when the JMeter JTL dashboard will be re-enabled?
In case it's useful here's how we're generating the dashboard in our ADO pipelines
- task: AzureLoadTest@1
// omitted...
- script: 7z x results.zip
displayName: Unzip results
condition: succeededOrFailed()
workingDirectory: $(System.DefaultWorkingDirectory)/loadTest
- script: docker run --name jmeter -i -v $(pwd):/test -w /test justb4/jmeter:latest -g ./*.csv -o ./dashboard
displayName: Create HTML report
condition: succeededOrFailed()
workingDirectory: $(System.DefaultWorkingDirectory)/loadTest
- task: publishhtmlreport@1
displayName: Publish HTML report
condition: succeededOrFailed()
inputs:
htmlType: 'Jmeter'
JmeterReportsPath: $(System.DefaultWorkingDirectory)/loadTest/dashboard
Describe the bug After running tests, either through the portal or the pipeline. upon downloading the results, only the testreport.csv file is present in the Zip.
To Reproduce Steps to reproduce the behavior:
Expected behavior Once the automatically started test tun finishes, and user downloads the Results, the HTML report should be included
`<?xml version="1.0" encoding="UTF-8"?>
true
`
AB#1496594