0.2.1 • Published 8 months ago

minos-sdk v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Minos SDK for Monitaur

Welcome to Minos, the SDK for Monitaur, a Web3 monitoring and Application Performance Monitoring (APM) platform. Minos provides a simple and efficient way to monitor your appliations end-to-end, allowing you to monitor and analyze the performance of your Web3 on and off-chain.

Installation

To use Minos, follow these steps:

1) Install Minos using your preferred package manager:

npm install minos-sdk

or

yarn add minos-sdk

2) Import the Minos module in your application:

const Minos = require('minos-sdk');

3) Initialize Minos with your Monitaur Minos Application Token:

const minos = new Minos('MINOS_APPLICATION_TOKEN');

If you haven't created an Application yet, you can do so here

4) Start monitoring your Web3 application by using Minos' APIs and functions.

There are six levels you can create an event for:

fatal, warn, error, info, debug, and trace

minos.fatal(
  "Any message you want to share here for top level context",
  {
    message: "Add context that helps your team",
    // This is the context object, you can add whatever you'd like here
  },
  "userId", // not required
  "address" // not required
  );

Usage with Ethers.js

If you're using Ethers.js, we've built in custom injection logging that will create info and error events respectively. To do this the set up is really simple, you'll pass in the ethers provider that you created.

minos.initializeInjectionLogging(yourEthersProvider);

// make your Ethers
await provider.getBlock()

Getting Help

If you encounter any issues, have questions, or would like to provide feedback, please reach out to our support team at support@monitaur.xyz. You can also visit our knowledge base for additional resources and guides.

Authors

0.2.1

8 months ago

0.2.0

8 months ago

0.1.1

10 months ago

0.1.0

10 months ago

0.0.12

10 months ago

0.0.11

11 months ago

0.0.1

11 months ago