Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ackee-report

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ackee-report

CLI tool to generate performance reports of websites using the self-hosted analytics tool Ackee.

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-77.78%
Maintainers
1
Weekly downloads
 
Created
Source

ackee-report

GitHub David npm

CLI tool to generate performance reports of websites using the self-hosted analytics tool Ackee.

👋 Introduction

ackee-report lets you create monthly website performance reports using your Ackee analytics data and deliver them to multiple recipients via email. It uses Ackee's Graphql API and can be configured to send multiple reports for different websites and recipients.

🚀 Get started

Install ackee-report via npm:

npm install ackee-report

On the first run ackee-report will ask you to input a few values:

  • Ackee server - The endpoint of your Ackee instance
  • Ackee username - Your Ackee username you use to login to the UI
  • Ackee password - Your Ackee password you use to login to the UI
  • SMTP host - more info here
  • SMTP port - more info here
  • SMTP username - more info here
  • SMTP password - more info here
  • SMTP from - more info here

The configuration will be stored in your home directory: ~/.config/configstore/ackee-report.json

📚 Usage

Usage: ackee-report generate [options]

Generates report and sends it via specified service

Options:
  -d, --domain <titles...>  specify domains by title
  -i, --id <ids...>         specify domains by id
  -t, --to <recipient...>   to whom the report should be sent (when using email)
  -o, --output <file>       path to output file (when using json)
  -s, --service <name>      service to use (default: "email")
  -h, --help                display help for command

🛠️ Examples

Run:

ackee-report generate -d example.com -t hello@example.com

to generate a report for the domain example.com and send it via email to hello@example.com.

To do this every month, create a cron job:

0 0 1 * * ackee-report generate -d example.com -t hello@example.com >> /tmp/ackee-report.log 2>&1

You can also specify mulitple domains and recipients:

ackee-report generate -d example.com example2.com -t hello@example.com hey@example2.com

To send multiple reports to different people, add them all as seperate cron jobs.

You can also save the report in a JSON file instead of sending it via email:

ackee-report generate -s json -d example.com -o report.json

⚙️ Configuration

Email

If you want to send your report via email, you have to specify your email providers SMTP server and credentials, aswell as the from option:

  • Host - smtp.example.com
  • Port - 465
  • Username - username@example.com
  • Password - password
  • From - username@example.com or Ackee <username@example.com>

Enter the values on the first run of ackee-report or change them later in the config file: ~/.config/configstore/ackee-report.json

Common providers:

Gmail If you use gmail to send emails, use these values:
  • Host - smtp.gmail.com
  • Port - 465
  • Username - your gmail username (your email address)
  • Password - your gmail password or if you have 2FA enabled, an "Application Specific password"
SendGrid If you use SendGrid to send emails, use these values:
  • Host - smtp.sendgrid.net
  • Port - 465
  • Username - apikey (everyone's username is apiKey)
  • Password - your API Key (generate one here)
MailGun If you use SendGrid to send emails, use these values:
  • Host - smtp.mailgun.org
  • Port - 465
  • Username - postmaster@yourdomain.name
  • Password - get your password here

💻 Development

Issues and PRs are very welcome!

Run yarn lint or npm run lint to use eslint.

Please check out the contributing guide before you start.

This project adheres to Semantic Versioning. To see differences with previous versions refer to the CHANGELOG.

❔ About

This library is an extension to the awesome privacy focused analytics tool Ackee.

Ackee was developed by @electerious, if you want to support him and the development of Ackee visit the Donate section on the Ackee repository.

License

Copyright 2020 Maximilian Schiller

This project is licensed under the MIT License - see the LICENSE file for details.

FAQs

Package last updated on 26 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc