How to get blazemeter output report link to slack

131 Views Asked by At

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

1

There are 1 best solutions below

0
Dmitri T On BEST ANSWER
  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.