Getting started

This is official documentation for monitro javascript SDK. We currently only have a javascript SDK but more will be made for other languages such as python!

What is Monitro SDK?

Monitro needs an SDK as this is how you will be able to send events to our servers, these will then be dispatched to your desired destinations.

Under the hood this is just a simple HTTP request to our REST API which is authenticated using your API key. The use of the SDK makes your life easier by adding a simple layer between you and the REST API, it also has features such as forwarding uncaught exceptions which may happen in your application.

  • Version Control ✅
  • Uncaught Exception Forwarding ✅
  • Wrapper Around Sending Events ✅

Serverless

if you are using serverless such as vercel, netlify, or any other platform that supports serverless functions, you can use monitro in your functions by simply importing the client and initialising it in the global scope of your function.

API Keys

A valid subscription is required to use monitro's SDK as it requires a valid API key to successfully send your events. API Key's can be generated in the admin dashboard once a subscription is purchased.

API Keys can only be used to send events, but we recomend not exposing this API key to stop abuse.

If an API is leaked a new can be rotated by generated in the admin dashboard.

Head To Installation Steps ->