0

I am using Jmeter with Tauras and tests are running through Bitbucket pipeline. I have managed to get passfail criteria and Blazemeter output report url is displayed with the results inside Bitbucket. Is it possible if I can extract that URL and get the result URL in slack to have better slack notification? enter image description here

Smh
  • 113
  • 1
  • 6

1 Answers1

0
  1. You can redirect your Taurus output into a file, i.e.

     bzt test.yaml -report > foo.txt
    
  2. The file can be saved as a step artifact

  3. There is slack-notify pipe which you can use for sending a custom message, report link can be extracted from Taurus output using grep command, something like:

    grep -oP -m1 'https?://a\.blazemeter[^ ]+' foo.txt
    
  4. BlazeMeter has its own Slack alerts as well.

Dmitri T
  • 159,985
  • 5
  • 83
  • 133