Gathering detailed insights and metrics for serverless-es-proxy-logs
Gathering detailed insights and metrics for serverless-es-proxy-logs
Gathering detailed insights and metrics for serverless-es-proxy-logs
Gathering detailed insights and metrics for serverless-es-proxy-logs
A Serverless plugin to transport logs to ElasticSearch
npm install serverless-es-proxy-logs
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (82.26%)
JavaScript (17.49%)
Shell (0.24%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
55 Stars
587 Commits
31 Forks
2 Watchers
16 Branches
14 Contributors
Updated on May 24, 2025
Latest Version
3.0.9
Package Id
serverless-es-proxy-logs@3.0.9
Unpacked Size
52.09 kB
Size
12.91 kB
File Count
24
NPM Version
6.9.0
Node Version
10.16.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A Serverless plugin for transporting Cloudwatch log groups within your CloudFormation stack into Elasticsearch.
Install the plugin in your project:
1$ yarn add serverless-es-logs --dev 2$ npm install serverless-es-logs --save-dev
Add the plugin to your serverless.yml
:
1plugins: 2 - serverless-es-logs
Define your configuration using the custom
configuration option in serverless.yml
:
1custom: 2 esLogs: 3 endpoint: some-elasticsearch-endpoint.us-east-1.es.amazonaws.com 4 index: some-index
Your logs will now be transported to the specified elasticsearch instance using the provided index.
(Required) The endpoint of the Elasticsearch instance the logs should be transported to.
1custom: 2 esLogs: 3 endpoint: some-elasticsearch-endpoint.us-east-1.es.amazonaws.com
(Optional) The filter pattern that the Cloudwatch subscription should use for your lambda
functions. Default is [timestamp=*Z, request_id="*-*", event]
. See
Cloudwatch filter pattern syntax
for more info.
1custom: 2 esLogs: 3 filterPattern: '[timestamp=*Z, request_id="*-*", event]'
(Optional) An option to capture logs created by API Gateway and transport them to Elasticsearch.
1custom: 2 esLogs: 3 includeApiGWLogs: true 4 5provider: 6 name: aws 7 logs: 8 restApi: true
(Required) The Elasticsearch index that should be applied to the logs.
1custom: 2 esLogs: 3 index: some-index
(Optional) The number of days that Cloudwatch logs should persist. Default is to never expire.
1custom: 2 esLogs: 3 retentionInDays: 7
(Optional) Custom tags that should be applied to every log message processed by this plugin and sent to elasticsearch as fields.
1custom: 2 esLogs: 3 tags: 4 some_tag: something 5 some_other_tag: something_else
(Optional) Override role management for the log processer lambda and use the manually specified default role. Default is false.
1custom: 2 esLogs: 3 useDefaultRole: true 4 5provider: 6 name: aws 7 role: arn:aws:iam::123456789012:role/MyCustomRole
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
Found 3/11 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
78 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More