IsDown
IsDownDeveloper Docs
  • How to Get Started with IsDown
  • Accounts
    • Create your Account
    • How to Log In to Your Account
    • How to Reset Your Password
    • How to delete your Account
    • How to Get Started with IsDown
    • How to add a team member
    • How to remove a team member
    • How can I try IsDown?
    • How to Set Up Single Sign-On (SSO)
      • Okta
      • Azure AD
      • Google SSO
      • Enforce SSO Login
    • How to Accept Invitation
  • Cloud Monitoring
    • How to Monitor 3rd-party services
    • How to Stop Monitoring a 3rd-party service
    • How to suggest a new 3rd-party service
    • How to Filter Notification by Outage Severity
    • How to Filter Outages by Specific Components
    • Understanding Outage Severity Levels
  • Website Monitors
    • How to add a website monitor
    • How to remove a website monitor
    • How to pause your website monitor
    • IsDownBot
  • Notifications
    • Email
    • Slack
      • Notification Themes
    • Google Chat
    • Microsoft Teams
      • Upgrade Notifications to Workflows
  • Integrations
    • How to Set Up PagerDuty Integration
    • How to Set Up Opsgenie Integration
    • How to Set Up FireHydrant Integration
    • How to Set Up Rootly Integration
    • How to Set Up incident.io Integration
    • Setup Datadog
      • Custom Widgets
    • Setup StatusHub
    • Setup Squadcast
    • Setup Zendesk
    • Setup Atlassian Statuspage
  • Status Page
    • How to share a board
    • How to customize a status page
    • How to remove IsDown branding from the status page
    • Private Status Page
    • How to set a friendly name for the status page
    • Add Custom Domain
    • Dark Mode on load
    • Set up Status Page SSO
    • Enable Subscribers
  • Profiles
    • How to add a new Profile
    • How to change the name of a profile
    • How to delete a profile
    • How to update your profile’s time zone
  • Private Status Ingestion
    • How to monitor your Microsoft 365 instance
    • How to monitor your Zendesk instance
  • Plans & Payments
    • Paying for IsDown
    • Custom contracts, documents, and POs
  • Get Invoices via Email
  • Other
    • Referral Program
Powered by GitBook
On this page
  • Services with the most outages
  • Number of outages by time and service
  • Dashboard with checks
  1. Integrations
  2. Setup Datadog

Custom Widgets

PreviousSetup DatadogNextSetup StatusHub

Last updated 8 months ago

By default, IsDown creates a dashboard with some useful widgets that are more focused on real-time data and trying to understand what's wrong with your vendors quickly.

On this page, we'll list other widgets that should be available with the current data set sent from IsDown to Datadog.

Services with the most outages

How to add the widget?

Click the "Add Widgets" button, choose the Treemap widget, then click JSON in the "Graph your data" and paste the following JSON code.

{
    "type": "treemap",
    "requests": [
        {
            "response_format": "scalar",
            "queries": [
                {
                    "data_source": "events",
                    "name": "query1",
                    "indexes": [
                        "*"
                    ],
                    "compute": {
                        "aggregation": "cardinality",
                        "metric": "@evt.id"
                    },
                    "group_by": [
                        {
                            "facet": "@aggregation_key",
                            "limit": 100,
                            "sort": {
                                "order": "desc",
                                "aggregation": "cardinality",
                                "metric": "@evt.id"
                            }
                        }
                    ],
                    "search": {
                        "query": "source:isdown status:(warn OR error)"
                    }
                }
            ],
            "formulas": [
                {
                    "formula": "query1"
                }
            ]
        }
    ]
}

Number of outages by time and service

How to add the widget?

Click the "Add Widgets" button, choose the Timeseries widget, then click JSON in the "Graph your data" and paste the following JSON code.

{
    "type": "timeseries",
    "requests": [
        {
            "style": {
                "palette": "semantic",
                "type": "solid",
                "width": "normal"
            },
            "type": "bars",
            "formulas": [
                {
                    "formula": "query1"
                }
            ],
            "queries": [
                {
                    "data_source": "events",
                    "name": "query1",
                    "indexes": [
                        "*"
                    ],
                    "compute": {
                        "aggregation": "cardinality",
                        "metric": "@evt.id",
                        "interval": 86400000
                    },
                    "group_by": [
                        {
                            "facet": "@aggregation_key",
                            "limit": 10,
                            "sort": {
                                "order": "desc",
                                "aggregation": "cardinality",
                                "metric": "@evt.id"
                            }
                        }
                    ],
                    "search": {
                        "query": "source:isdown status:(warn OR error)"
                    }
                }
            ],
            "response_format": "timeseries"
        }
    ]
}

Dashboard with checks

How to add the widget?

To add all these checks, you will need to do it one by one.

  1. Go to the Dashboard you will want to add these widgets.

  2. Click "Add Widget"

  3. Search for "Check"

  4. Fill in the fields according to the picture. In Reported By choose the service (host) that you want to track.

  5. Duplicate and replace this widget for how many services you want it for.