Page cover image

Systems Observability

You can use LogicLoop to monitor systems uptime. Your company may already be using tools like Sentry and Datadog for infrastructure monitoring. In addition, users have found LogicLoop useful to monitor data-driven metrics and external APIs that aren't easily captured by Sentry or Datadog. See below for some examples.

Alert when an API is down

Every 10 minutes, query an API your service relies on. The API can be an external or internal service.

If the request fails, LogicLoop will send you an email notifying you of the failure.

Monitor a drop in new user sign ups

Detect if number of signups on the website has been low.

View SQL Query
SELECT
  count(*)
FROM
  user_signups
WHERE
  created_at < interval - '60 minutes'
HAVING
  count(*) < 10

Send a Slack alert to your team to investigate.

Monitor drop in a critical business unit

Similarly, you can use LogicLoop to monitor when there's a drop or change in a unit critical to your business.

Digital health companies: monitor a drop in the number of appointments scheduled today.

Recruiting companies: monitor a drop in the number of candidates who were scheduled for interviews today.

E-commerce companies: monitor a drop in the number of orders placed in the past hour.

Ride-share marketplace: monitor the number of rides completed in the past hour.

Monitor applications stuck in processing

Select all applications that are still processing after a certain amount of time.

View SQL Query
SELECT
  *
FROM
  applications
WHERE
  status = 'pending'
HAVING
  AND created_at > current_date - interval '7 days'

Create an Asana ticket for an analyst to review.

Monitor invalid database fields

Query for fields that should not be Null

View SQL Query
SELECT
  *
FROM
  users
WHERE
  email is NULL

Create a JIRA ticket for an engineer to review.

Monitor children database objects with no parent

Query for children objects that are orphaned.

View SQL Query
SELECT
  *
FROM
  children
WHERE
  parent is NULL

Create a PagerDuty alert for an engineer to review immediately.

Last updated

Was this helpful?