You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
153617: ui: add isolation level information to SQL activity pages r=jasonlmfong a=jasonlmfong
Introduce a column for 'Isolation Level' to the
active stmts/txns details pages, as well as the sessions page.
The change is achieved by augmenting the query to `crdb_internal.cluster_locks`
table via the SQL api in `/api/v2/`.
closes: [https://github.com/cockroachdb/cockroach/issues/152688](https://github.com/cockroachdb/cockroach/issues/152688)
Epic: None
Release note (ui change): A new section, 'Isolation Level' has
been added to the active statement and transaction details page and session page.
Co-authored-by: Jason Fong <[email protected]>
Copy file name to clipboardExpand all lines: docs/generated/http/full.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2342,6 +2342,7 @@ ActiveQuery represents a query in flight on some Session.
2342
2342
| plan_gist |[string](#cockroach.server.serverpb.ListSessionsResponse-string)|| The compressed plan that can be converted back into the statement's logical plan. Empty if the statement is in the PREPARING state. |[reserved](#support-status)|
2343
2343
| placeholders |[string](#cockroach.server.serverpb.ListSessionsResponse-string)| repeated | The placeholders if any. |[reserved](#support-status)|
2344
2344
| database |[string](#cockroach.server.serverpb.ListSessionsResponse-string)|| The database the statement was executed on. |[reserved](#support-status)|
2345
+
| isolation_level |[string](#cockroach.server.serverpb.ListSessionsResponse-string)|| The isolation level the query was run in. |[reserved](#support-status)|
2345
2346
2346
2347
2347
2348
@@ -2493,6 +2494,7 @@ ActiveQuery represents a query in flight on some Session.
2493
2494
| plan_gist |[string](#cockroach.server.serverpb.ListSessionsResponse-string)|| The compressed plan that can be converted back into the statement's logical plan. Empty if the statement is in the PREPARING state. |[reserved](#support-status)|
2494
2495
| placeholders |[string](#cockroach.server.serverpb.ListSessionsResponse-string)| repeated | The placeholders if any. |[reserved](#support-status)|
2495
2496
| database |[string](#cockroach.server.serverpb.ListSessionsResponse-string)|| The database the statement was executed on. |[reserved](#support-status)|
2497
+
| isolation_level |[string](#cockroach.server.serverpb.ListSessionsResponse-string)|| The isolation level the query was run in. |[reserved](#support-status)|
0 commit comments