Introduction

Learn how to get started with Logspot.

Logspot is a web and product analytics tool that stores all of the events appearing in your system. Logspot then allows you to see events statistics and shows you what actions are triggered by which users. Besides that, it can automatize your process with action triggers.

Logspot dashboard

Integrate Logspot With Your Site/Application

To get started quickly, add one of these two snippets to your site/application and Logspot will start tracking right away.

Static sites

The easiest way of integrating your project with Logspot is using our JS script.

<script
  async
  data-logspot-pk="YOUR_PUBLIC_KEY"
  src="https://cdn.logspot.io/lg.js"
></script>

Single-Page Applications (SPAs)

For SPA applications, you can use our NPM package @logspot/web

import Logspot from '@logspot/web';

Logspot.init({ publicKey: 'YOUR_PUBLIC_KEY' });

Send your first event

Check our SDK docs to learn how to send your first custom event.