Time since last major incident

Major incidents don’t just test how well you respond. They reveal how resilient your system truly is. One of the simplest but most powerful reliability indicators is "how long has it been since our last major incident?"

If the answer is measured in months, your environment is stable. If it’s measured in days or hours, something deeper may be wrong.

Before you begin

This tile pairs best with:

Together, these tiles give you both immediate awareness and long-term resilience insight.

Configuring the tile

Configure the following in the tile editor:

  1. Data Source: Select ServiceNow.
  2. Data Stream: Select Table Query.
  3. Parameters:
    1. Table name: Select Incident.
    2. Filter query: Enter a query to return your major incidents. For example, active=true^priority=1.
  4. Filter | Group | Sort: Enable the SQL toggle then enter the following query and click Execute:
    SELECT
      ABS(
        CAST(
          DATE_DIFF(
            'minute',
            TRY_CAST(opened_at AS TIMESTAMPTZ),
            NOW()
          ) AS INTEGER
        )
      ) AS minutes_active
    
    FROM dataset1
    ORDER BY minutes_active ASC;
  5. Columns: Configure the Minutes Active column:
    1. Type: Select Minutes.
    2. Decimal places: Enter 0.
  6. Visualization: Select Scalar.
    1. Mapping > Value: select Minutes Active.
  7. Click Save.

Was this article helpful?


Have more questions or facing an issue?