-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "ss-instrumentation",
"version": "2.0.0",
"description": "ss-instrumentation is a light wrapper around the boto3 cloudwatch client intended for reporting custom metrics to cloudwatch. The one additional concept that ss-instrumentation adds to cloudwatch's model is a \"meter\" which can be incremented as some event occurs, sample the rate of the event, and report it periodically to cloudwatch. This is more performant/cost effective than reporting each occurrence of an event as up to 20 different event types and any frequency of an event within a period can be bundled into a single call to cloudwatch.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"deploy": "sls deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/styleseat/ss-instrumentation.git"
},
"author": "Some Dude at StyleSeat",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/styleseat/ss-instrumentation/issues"
},
"homepage": "https://github.com/styleseat/ss-instrumentation#readme",
"dependencies": {
"lodash": "^4.17.21",
"serverless": "^2.41.2",
"serverless-python-requirements": "^5.1.0"
}
}