artillery-plugin-sns
v0.0.9
Published
A plugin for artillery.io that published response data to an SNS topic. See https://github.com/shoreditch-ops/artillery. Also see http://docs.aws.amazon.com/sns/latest/dg/welcome.html
Downloads
15
Readme
artillery-plugin-sns
A plugin for artillery.io that publishes response data to an SNS topic.
Based on artillery-plugin-cloudwatch
To use:
npm install -g artillery
npm install artillery-plugin-sns
(add-g
if you like)Add
sns
plugin config to your "hello.json
" Artillery script{ "config": { "plugins": { "sns": { "topicArn": "[INSERT_TOPIC_ARN]", "subject": "[INSERT_SUBJECT]", "compressMessage": [true|false] } } } }
artillery run hello.json
This will cause every latency to be published to the given SNS topic.
When truthy
, the compressMessage
option causes the message to be base64 encoded zlib deflated. This reduces the likelihood of
hitting then 256K SNS message size limit.
This plugin assumes that the aws-sdk
has been pre-configured, before it is loaded, with credentials and any other
setting that may be required to successfully Publish
to the SNS topic. This activity
requires at least the rights given by the following IAM statement to the CloudWatch API in order to report latencies:
{
"Effect": "Allow",
"Action": [
"SNS:Publish"
],
"Resource": ["arn:aws:sns:`region`:`account-id`:`topic`"]
}
For more information, see:
- https://github.com/shoreditch-ops/artillery
- http://docs.aws.amazon.com/sns/latest/dg/welcome.html
Enjoy!