Skip to content

Commit

Permalink
Merge pull request #80128 from cockroachdb/blathers/backport-release-…
Browse files Browse the repository at this point in the history
…22.1-79936

release-22.1: ui: add all jobs to jobs page filter
  • Loading branch information
otan authored Apr 21, 2022
2 parents c0510c0 + 3d735e9 commit 558d3e5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkg/ui/workspaces/db-console/src/views/jobs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,27 @@ const typeOptions = [
value: JobType.AUTO_CREATE_STATS.toString(),
label: "Auto-Statistics Creation",
},
{ value: JobType.SCHEMA_CHANGE_GC.toString(), label: "Schema Change GC" },
{
value: JobType.TYPEDESC_SCHEMA_CHANGE.toString(),
label: "Type Descriptor Schema Changes",
},
{ value: JobType.STREAM_INGESTION.toString(), label: "Stream Ingestion" },
{ value: JobType.NEW_SCHEMA_CHANGE.toString(), label: "New Schema Changes" },
{ value: JobType.MIGRATION.toString(), label: "Migrations" },
{
value: JobType.AUTO_SPAN_CONFIG_RECONCILIATION.toString(),
label: "Span Config Reconciliation",
},
{
value: JobType.AUTO_SQL_STATS_COMPACTION.toString(),
label: "SQL Stats Compactions",
},
{ value: JobType.STREAM_REPLICATION.toString(), label: "Stream Replication" },
{
value: JobType.ROW_LEVEL_TTL.toString(),
label: "Time-to-live Deletions",
},
];

export const typeSetting = new LocalSetting<AdminUIState, number>(
Expand Down

0 comments on commit 558d3e5

Please sign in to comment.