Intelligent log-based alerting

Application logs & requests
How it works
Alerts are written in JavaScript and run on every incoming log request captured by logbee.net. They have full access to request data - including URL, status code, and logs - making them highly configurable.
function(context, callback) {
    const path = context.requestLog.httpProperties.url.path.toLowerCase();
    const statusCode = context.requestLog.httpProperties.response.httpStatusCode;

    // trigger an alert for failing checkout requests
    if(path === "/checkout/complete" && statusCode >= 400) {
        return callback(true);
    }

    return callback(false);
}
function(context, callback) {
    const requestLogs = context.requestLog.logMessages;

    for (const log of requestLogs) {
        if(/The underlying provider failed on Open/i.test(log.message))
            return callback(true);
        }
    }

    return callback(false);
}
function(context, callback) {
    const durationInMs = context.requestLog.durationInMilliseconds;
    const absoluteUri = context.requestLog.httpProperties.url.absoluteUri.toLowerCase();
    const isLocalhost = absoluteUri.indexOf("localhost") > -1;

    if(isLocalhost) {
        return callback(false);
    }

    return callback(durationInMs >= 1000);
}
When an alert is triggered, notifications are instantly sent to your preferred channels
Email
Microsoft Teams
Slack
Logbee Microsoft Teams alert

Integrations

Pricing

Developer
free
  • 5,000 requests / month
  • unlimited applications
  • unlimited alerts
  • 2 users
Startup
14 USD / month
  • 250,000 requests / month
  • unlimited applications
  • unlimited alerts
  • unlimited users
Business
28 USD / month
  • 1,000,000 requests / month
  • unlimited applications
  • unlimited alerts
  • unlimited users
Business+
60 USD / month
  • 5,000,000 requests / month
  • unlimited applications
  • unlimited alerts
  • unlimited users
To get started, create an account. No payment information is required.
Developer
free
Standard
350 USD
one time payment
  • Standard EULA
  • Host on your own server
  • Unlimited applications
  • Unlimited updates
Enterprise
850 USD
one time payment
  • Enterprise EULA
  • Host on your own server and on your clients servers
  • You can ship Logbee as part of your release artifacts
  • Unlimited applications
  • Unlimited updates

Available on Windows, Linux, Azure, and containerized environments

Microsoft IIS Windows
Linux Linux
Azure Azure
Docker Docker

Who is Logbee for?

  • Developers and DevOps engineers who want a lightweight alternative to other modern, but sometimes too complex monitoring tools.
  • Teams working on microservices or cloud-native apps who need visibility across services.
  • Software teams and vendors who want to package a logging visualization tool alongside the applications they ship.

Who is using logbee.net?

logbee.net is currently being used by about 107 applications, having a total number of 7,213,379 requests processed in the last 30 days.

2025 © logbee.net