Example of how to extend gopherciser with custom actions
The repo showcases how to extend gopherciser with custom actions to be used during user simulations towards a Qlik Sense environment. All functionality of the the original gopherciser will be included by importing it.
This repo includes two actions registered on init
.
This action is an "empty" action which can be used as a template action to be copied and used to implement new actions.
This action is an example action on custom action implementation. This example action should be deleted when using the repo as a template repo. The action send a message to slack channel webhook after each successful user iteration, accounting for which session and thread was finished as well as how many warnings the iteration had.
An example script using this action can be found here. After updating it with correct server
and webhook
it can be executed as follows:
# Build the tool
go build -o myowngopherciser .
# Execute script including custom actions
./myowngopherciser execute -c ./examples/notifydemo.json
This project is set up to extend the documentation of gopherciser. To
(re)generate documentation run go generate
in the root of this repository.
This will generate the following files:
- generatedocs/generated/documentation.go
- generatedocs/generated/settingup.md
The documentation of documentation generation can be found here.
How to add a custom scheduler documented here