Need help with StresStimulus? Start here.
Host remapping and external report in Jenkins
|
Unregistered User Posts: 514
7/18/2021
|
Can we replace URL(Host remapping) in StresStimulus via Jenkins choice parameters(overriding the existing url) while performing the execution activities. Can we display html report in Jenkins dashboard post execution
|
|
|
0
link
|
|
George @StresStimulus Administrator Posts: 568
7/18/2021
|
Host remapping is described here https://support.stresstimulus.com/display/doc53/Host+and+Port+Remapping. It is a computer-level setting. Once host A is remapped to host B, all scripts recorded against host A and are launched from that computer will replay against host B. Set the remap hosts settings on the computer that hosts Jenkins, and remapping should work during the test execution. When a StresStimulus test runs from Jenkins, an external report is always generated in the test subfolder. The test subfolder is a folder in the same directory as the .ssconfig file with the same name as described https://support.stresstimulus.com/display/doc53/Test+structure For example: if executing c:\myfolder\myconfig.ssconfig the result will be stored in the subfolder folder c:\myfolder\myconfig\{test run date}_ myconfig
|
|
|
0
link
|
|
Mahammad Ullah Posts: 1
13 days ago
|
I have created Pipeline build code on Jenkins and run the build with parameters, I see below error. Inputs appreciated. Please help on this.
pipeline { agent any environment { SS_EXE = 'D:\\Stress Stimulus\\StresStimulus.Application.exe' SS_CONFIG = 'D:\\Stress Stimulus\\S03_Update_My_Profile.ssconfig' SS_RESULTS = 'D:\\Stress Stimulus\\Results' } stages { stage('Run StressStimulus Load Test') { steps { script { try { bat """ "%SS_EXE%" /noui "%SS_CONFIG%" -run -report -results "%SS_RESULTS%" """ } catch (Exception e) { echo "Error occurred while running StressStimulus: ${e}" currentBuild.result = 'FAILURE' error("Load test failed. Check console output and StressStimulus logs.") } } } } } post { always { echo "Pipeline completed. Check archived reports for details." } failure { echo "Pipeline failed. Please review logs and troubleshoot." } } } C:\Users\atsadmin\AppData\Local\Jenkins\.jenkins\workspace\Pipeline>"D:\Stress Stimulus\StresStimulus.Application.exe" /noui "D:\Stress Stimulus\S03_Update_My_Profile.ssconfig" -run -report -results "D:\Stress Stimulus\Results" [Pipeline] echo Error occurred while running StressStimulus: hudson.AbortException: script returned exit code -532462766
|
|
|
0
link
|
Copyright © 2025 Stimulus Technology