npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sendgrid-event-logger

v1.1.12

Published

Logs sendgrid events to Elasticsearch

Downloads

48

Readme

Logo Sendgrid Event Logger

Small, fast http server to log Sendgrid Event Webhook callback to Elasticsearch

Kibana

Monitoring sendgrid events on Kibana dashboard

npm stats

Build Status codecov

Installing

Just install globally with npm:

npm install -g sendgrid-event-logger

Setup

  1. Install and run Elasticsearch. Refer to the docs for details: https://www.elastic.co/guide/en/elasticsearch/reference/current/_installation.html

  2. Install the default config file by running:

     sendgrid-event-logger install
    	

    If you're running elasticsearch on a port other than 9200 the above command will generate an error. Don't worry about it for now.

  3. Check /etc/sendgrid-event-logger.json and edit if necessary.

  4. To run the server, simply type:

     sendgrid-event-logger

    It is highly recommended that you run the server using a process manager like PM2 or forever.

  5. Configure your Sendgrid account to point the Event Webhook to:

     http://your.server.address:port/logger

    Refer to the docs for how to set up the Event Webhook: https://sendgrid.com/docs/API_Reference/Webhooks/event.html

    Note: If you enable basic auth then set the URL to:

     http://username:[email protected]:port/logger

Integrating with Kibana

  1. Install Kibana. Refer to the docs for details: https://www.elastic.co/guide/en/kibana/current/setup.html

  2. Configure a new index pattern.

    • Select "Index contains time-based events" checkbox

      Kibana config

    • In the "Index name or pattern" entry type: mail-*

      Kibana config

    • In the "Time-field name" entry select "timestamp"

      Kibana config

    • Press "Create"

Configuration

The config file is located at: /etc/sendgrid-event-logger.json. The following are the configurations available:

  • elasticsearch_host Location of the elasticsearch server.

  • port The port the server listens on

  • use_basicauth Enable or disable basic authentication

  • basicauth.user Login username if basicauth is enabled

  • basicauth.password Login password if basicauth is enabled

  • use_https Enable or disable TLS

  • https.key_file Location of TLS key file on disk

  • https.cert_file Location of TLS certificate file on disk

  • days_to_retain_log Number of days to keep logs. Logs older than this will be deleted periodically. Set to 0 or false to disable automatic deletion of old logs.

    Note: I've personally found that elasticsearch takes up roughly 200MB of disk space for every 100000 emails delivered by Sendgrid. So you can use it as a rough guideline to calculate how much disk you need. For example, if you send 200k emails per month on average then you'd need 400MB per month or roughly 5GB per year. You can then set days_to_retain_log appropriately depending on how much disk space you have.

Implementation details

All sendgrid events are logged to a time-series index with the prefix mail-. The server logs events to a new index each day similar to how logstash works.

By default the server listens to port 8080 but this can be changed in the config file.

The server exposes 4 URL endpoints:

  • POST /logger This receives data from Sendgrid Event Webhook callback It expects the data to be an array of events. At minimum, the data format must be at least:

      [
          {
              timestamp: ${unix_timestamp}
          }
      ]
        

    The only mandatory field is timestamp. Which means you can also post your own events to this URL if you want to correlate your data with sendgrid events.

  • GET /status This simply returns {status:'ok'}. This URL may be used to check if the server is still alive.

  • GET /copyright Returns copyright and license information.

  • GET /version Returns version information.

License

Copyright (C) 2016 TrustedCompany.com

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 (GPL-2.0) as published bythe Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.