Error Monitoring & Debugging Solution

Cloud Observability for Developers With Error Monitoring & Reporting Tool for App Stability

Get Started

Our Products

Choose from our wide range of products to guarantee an error free and stable software solution!

Centralized Logging

Access all of your application logs from a single place across all applications and servers.

Error Tracking

Quickly identify big spikes in errors before all of your customers are impacted.

Realtime Logging

Capture your application logs and bugs in realtime, and track your application performance.

Cloud Watch

Capture every HTTP request & response within your applications in realtime.

Application Stability Health Score

Use the stability score to decide if you should spend time debugging or if you can move on to building new features.

On Premise

Maintain complete control of data privacy and security policies and customize the implementation to your environment.

Built to Handle Today's Enterprise Scale

1.4 trillion

Sessions processed / year

185 billion

Errors detected / year

1.2 million

errors fixed / year

Open Source Error Reporting Libraries For Various Platforms

Automated error monitoring, reporting, alerting, and diagnostic capture for mobile, web, and backend apps

Dot Net Core Installation Guide

  • Install stacklog .net core library from Nuget package manager      Install-Package StackLogger.Logger.Core -Version 1.0.0.12
  • Configure Services in Startup.cs:
    •      services.AddStackLog(x =>
      {
      x.bucketKey = "YOUR_BUCKET_KEY";
      x.secretKey = "YOUR_SECRET_KEY";
      x.enableCloudWatch = true;
      x.enableConsoleLogging = true;
      x.enableFileLogging = true;
      });
  • Enable your application to use stacklog monitoring
    •      app.UseStackLog();
  • Inject stacklog into your contructor
    •     private readonly IStackLog _logger;
          public HellowWorld(IStackLog logger)
      {
      _logger = logger;
      }
  • Capture your first Log
    •     _logger.LogWarning("My first warning");     _logger.LogInformation($"My first Info");
  • Pass exception into LogFatal method To catch a details exception
    •      _logger.LogFatal(ex);

PHP Installation Guide

  • Require stackog within your php file
    • require_once "vendor/autoload.php";
  • Import stacklog library into your code
    • use stacklogio\StackLog;
  • Pass your bucket key and secret key
    • $log = new StackLog("YOUR_BUCKET_KEY","YOUR_SECRET_KEY");
  • Capture your first log
    • echo $log->Info("My first info log");

Javascript Installation Guide

  • Install stacklog into your index file application
    • npm install stacklog
  • Import stacklog
    •     const stacklog = require("./index");
  • Initialize stacklog with your bucket key and secret key
    • stacklog.init({ secretKey:"YOUR_SECRET_KEY", bucketId:"YOUR_BUCKET_KEY" });
  • Push your first log to stacklog
    • bucketstacklog.info("My first info log").then((result)=>{ console.log(result);

Xamarin Sdk

Coming Soon...

React Native Sdk

Coming Soon...

Pick a Plan That Works For You

Start your free trial today, all you need is your company email!

Free

$ 0.00

  • 0 Collaborators
  • 1 bucket
  • 500 Logs/day
  • 7 days retention
  • 1000 cloudwatch sessions
Get Started
Basic

$ 7.00

  • 2 Collaborators
  • 5 bucket
  • 5000 Logs/day
  • 90 days retention
  • 5000 cloudwatch sessions
Get Started
Premium

$ 28.00

  • 5 Collaborators
  • 10 bucket
  • 15000 Logs/day
  • 90 days retention
  • 500,000 cloudwatch sessions
Get Started
Enterprise

$ 100.00

  • Unlimited Collaborators
  • Unlimited bucket
  • unlimited Logs/day
  • unlimited retention
  • 100,000,000 cloudwatch sessions
Get Started

Works With Your Stacks