This is an automated email from the ASF dual-hosted git repository.
xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 6fbbc6833e Add Links to Instance in Table and Segment View (#11807)
6fbbc6833e is described below
commit 6fbbc6833ee1745590569ba26490fe4375575594
Author: Ankit Sultana <[email protected]>
AuthorDate: Sun Oct 15 10:24:16 2023 -0700
Add Links to Instance in Table and Segment View (#11807)
---
pinot-controller/src/main/resources/app/pages/SegmentDetails.tsx | 2 ++
pinot-controller/src/main/resources/app/pages/TenantDetails.tsx | 2 ++
2 files changed, 4 insertions(+)
diff --git a/pinot-controller/src/main/resources/app/pages/SegmentDetails.tsx
b/pinot-controller/src/main/resources/app/pages/SegmentDetails.tsx
index 1caddabc37..94294bbd4d 100644
--- a/pinot-controller/src/main/resources/app/pages/SegmentDetails.tsx
+++ b/pinot-controller/src/main/resources/app/pages/SegmentDetails.tsx
@@ -235,6 +235,8 @@ const SegmentDetails = ({ match }:
RouteComponentProps<Props>) => {
<CustomizedTables
title="Replica Set"
data={replica}
+ addLinks
+ baseURL="/instance/"
showSearchBox={true}
inAccordionFormat={true}
/>
diff --git a/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
b/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
index 255bfa4299..a67c187044 100644
--- a/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
+++ b/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
@@ -601,6 +601,8 @@ const TenantPageDetails = ({ match }:
RouteComponentProps<Props>) => {
<CustomizedTables
title={"Instance Count - " + instanceCountData.records.length}
data={instanceCountData}
+ addLinks
+ baseURL="/instance/"
showSearchBox={true}
inAccordionFormat={true}
/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]