Home / Function/ getStatusTooltip() — supabase Function Reference

getStatusTooltip() — supabase Function Reference

Architecture documentation for the getStatusTooltip() function in ServiceHealthTable.tsx from the supabase codebase.

Entity Profile

Dependency Diagram

graph TD
  57af1ed3_941d_cd79_d46a_6cfe2d2d3e08["getStatusTooltip()"]
  df81e8a0_5f6e_1c37_6098_621a2b4628c6["ServiceRow()"]
  df81e8a0_5f6e_1c37_6098_621a2b4628c6 -->|calls| 57af1ed3_941d_cd79_d46a_6cfe2d2d3e08
  style 57af1ed3_941d_cd79_d46a_6cfe2d2d3e08 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/studio/components/interfaces/Observability/ServiceHealthTable.tsx lines 59–68

const getStatusTooltip = (status: 'healthy' | 'error' | 'unknown'): string => {
  switch (status) {
    case 'healthy':
      return 'Error rate is below 1%'
    case 'error':
      return 'Error rate is 1% or higher'
    case 'unknown':
      return 'Insufficient data (fewer than 100 requests)'
  }
}

Subdomains

Called By

Frequently Asked Questions

What does getStatusTooltip() do?
getStatusTooltip() is a function in the supabase codebase.
What calls getStatusTooltip()?
getStatusTooltip() is called by 1 function(s): ServiceRow.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free