Git Product home page Git Product logo

fujinons / dashflare Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jorgelbg/dashflare

0.0 0.0 0.0 1.01 MB

๐Ÿ•ต๐Ÿผโ€โ™€๏ธ Open Source and privacy-focused analytics solution. ๐Ÿ“Š Advanced monitoring for your website behind Cloudflare

Home Page: https://jorgelbg.me/dashflare

License: Apache License 2.0

JavaScript 9.51% TypeScript 87.54% Nix 1.16% Makefile 1.79%

dashflare's Introduction

Deploy to Cloudflare Workers

dashflare

Dashflare is a privacy first analytics solution for monitoring your websites. It can be self hosted on a practically any hosting solution and it should scale with your needs. Data collection is handled by a Cloudflare Edge Worker running the code included in this repository.

Two additional components are required for having the full suite running:

  • Grafana (handles the data visualization)
  • Grafana Loki (handles the data persistence)

The default provided dashboard looks like:

Screenshot of the Grafana dashboard

๐ŸŒฅ Cloudflare

One requirement to use the current solution is to be already using Cloudflare for the website that you want to monitor.

๐ŸŽฎ Installation / Getting started

A minimal production-like environment is provided and can be used through docker-compose:

โฏ docker-compose up

๐Ÿ”‘ Grafana authentication

Grafana will be accessible in http://localhost:3000/ and the default user and password are:

  • user: admin
  • password: admin

You will be asked to change it after the first successful login.

Cloudflare Edge Workers have certain limitations that prohibit any connection between the edge worker and any outside resource that cannot be reached through the ports 80 or 443. By default Loki is listening on port 3100, you can either change this or run Loki behind a transparent proxy. Grafana is listening in the default port (3000).

Another security practice of Cloudflare Edge Workers is that requests from the edge worker can only be made against endpoints that are associated with a domain. This means that if you try to set the LOKI_HOST environment variable to an IP address, the edge worker will not be able send any data.

It is still possible to run loki locally, we need to expose the loki instance to the Internet directly in a domain/subdomain. Another posibility (especially useful for development) is to use a service like ngrok to forward the traffic.

๐Ÿค  wrangler

In order to deploy the edge worker a workable node/npm environment is needed. After installing node/npm on your development environment, we need to install wrangler which is the CLI tool that cloudflare offers to interact with the edge workers platform.

โฏ npm install -g @cloudflare/wrangler

wrangler CLI tool needs access to your Cloudflare account. This is normally achieved by running:

โฏ wrangler config

Or you can directly go to https://dash.cloudflare.com/profile/api-tokens, and create a new token using the "Edit Cloudflare Workers" template. You can also expose the token via the CF_API_TOKEN environment variable.

There are two values needed for wrangler to work: CF_ACCOUNT_ID and CF_ZONE_ID. CF_ACCOUNT_ID is your Cloudflare's Accound ID and you can get it (along with the CF_ZONE_ID) from your Cloudflare dashboard: dash.cloudflare.com.

You can use the .envrc.example file as an example of the variables that should be set. We recommend copying the .envrc.example file into .envrc and loading the configuration into your shell environment after editing the file:

โฏ cp .envrc.example .envrc
# edit `.envrc` to adjust the values
โฏ source .envrc

Environment variables

This is a list of the environment variables that are needed for the Dashflare edge worker to generate the events:

We extract the country name from your visitor's requests. We also provide additional geolocation capabilities via the integration with the ipgeolocationapi.com API.

  • IPINFO: (optional) ipgeolocationapi.com is used to capture additionl geolocation data from your visitors. It is still possible to opt out of this feature by setting this variable to false.

  • CLIENT_ID: If you're self hosting Dashflare, CLIENT_ID can be omitted, or set to any value. By default it is set to fake in .envrc.example.

  • LOKI_HOST: URL where the Loki instance is accessible, it cannot be an IP address (1.2.3.4) nor a domain containing a custom port (loki.example.com:31001). A subdomain will work just fine (i.e loki.example.com)

  • FINGERPRINT: Its used as the key for the session id hash calculation. A random key can be generated using:

    โฏ openssl rand -base64 32  | md5
  • DOMAIN: URL of your "primary domain". The edge worker will be deployed into a custom subdomain (within .workers.dev if you're using the free tier). This variable is used to generate automatic routes. This can be configured through the Cloudflare's Dashboard as well.

๐Ÿ—บ Routes

When the edge worker is deployed it will be running in a custom domain (.workers.dev if you're using the free tier). We need to "forward" the requests from the main domain to the edge worker domain. Cloudflare handles this via routes routes. When using the make wrangler command a default set of routes will be generated using the DOMAIN environment variable.

Since the forwarding will be done by Cloudflare there is no change required to the website on your original domain. Not even a new script tag is needed.

๐Ÿ”ฅ Publishing the edge worker

After wrangler is installed, and the environment variables are set, we can deploy our edge worker. Before we need to generate a valid wrangler.toml file. A handy make target is provided to do this:

โฏ make wrangler

The make wrangler command depends on envsubst.

This command will take the wrangler.toml.template file as a template a generate a valid wrangler configuration file (wrangler.toml).

You can inspect/edit the wrangler.toml file. Especially the routes section might be of interest to you.

Finally we can publish/deploy our edge worker:

โฏ wrangler publish

This command will build and publish the worker to Cloudflare's edge network.

๐Ÿคš๐Ÿป Contributing

If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.

๐Ÿš€ Links

dashflare's People

Contributors

jorgelbg avatar dependabot[bot] avatar mre avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.