Statora is a Backstage plugin that gives you a single pane of glass for service health - with dynamic metadata mapping, DORA metrics, and YAML-free configuration.
Connect your GitHub, ArgoCD, Jira, Sentry, and GCP tools to Backstage - without digging through annotations.
- 📊 View DORA metrics per service
- 🧹 Map GitHub, ArgoCD, Jira, Sentry, and GCP projects to Backstage components
- 🧠 Visualize health scores and product groupings
- 🚼 YAML-free mapping UI (via Supabase)
- 🔐 Backend plugin with identity-based access
- 📦 Easily demo with prefilled mock data
Install the backend plugin:
// packages/backend/
yarn add @tatou/plugin-statora-backendAdd the backend plugin to your Backstage backend:
// packages/backend/src/index.ts
backend.add(import('@tatou/plugin-statora-backend'));Ensure your app-config.local.yaml includes Supabase credentials for the backend:
statora:
supabase:
url: https://your-project.supabase.co
serviceRoleKey: ${SUPABASE_SERVICE_ROLE_KEY} # or hardcoded for nowThis enables secure API routes to fetch DORA metrics and mappings.
Install the frontend plugin:
// packages/app/
yarn add @tatou/plugin-statoraAdd the routes to your app:
// App.tsx or routes.tsx
import {
DashboardPage,
EntityStatoraContent,
ProductDetailPage,
} from '@tatou/plugin-statora';
<Route path="/" element={<DashboardPage />} />
<Route path="/catalog/:namespace/:kind/:name/statora" element={<EntityStatoraContent />} />
<Route path="/statora/product/:productName" element={<ProductDetailPage />} />Include the statora factory in apis.ts:
import { statoraApiFactory } from '@tatou/plugin-statora';
export const apis: AnyApiFactory[] = [
createApiFactory({
api: scmIntegrationsApiRef,
deps: { configApi: configApiRef },
factory: ({ configApi }) => ScmIntegrationsApi.fromConfig(configApi),
}),
ScmAuth.createDefaultApiFactory(),
statoraApiFactory // <----- add this line
];Create a new Supabase project and apply the schema:
-
Schema:
mock-data/schema.sql -
Demo seed data:
mock-data/seed.sql
| Feature | OSS (This Repo) ✅ | SaaS (Upcoming) 🌐 |
|---|---|---|
| YAML-free metadata editor | ✅ | ✅ |
| Product health dashboard | ✅ | ✅ |
| UI to edit GitHub/Jira/Sentry links | ✅ | ✅ |
| Autocomplete & mapping suggestions | ❌ | ✅ |
| GitHub App / Jira Cloud integrations | ❌ | ✅ |
| Multi-team view, filters, auth | ❌ | ✅ |
Dashboard (Product + Service toggle):
Service Detail:
You can seed mock services like payments-service, auth-service, and checkout-flow.
YAML files and SQL scripts are included in mock-data/schema.sql and mock-data/seed.sql.
All service metadata (e.g. GitHub repo, Sentry project, ArgoCD app, etc.) is stored in a central Supabase database.
This allows teams to manage mappings dynamically - without editing YAML or opening PRs.
This is an early open-source version. PRs and feedback welcome!
Feel free to fork and adapt the Supabase schema or plugin UI.
MIT

