Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AMORO-1771] Add two line charts to the Table Transactions page, showing the count of table records and the count of table files. #1859

Merged
merged 5 commits into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ams/dashboard/src/components/echarts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { LabelLayout, UniversalTransition } from 'echarts/features'
import { CanvasRenderer } from 'echarts/renderers'

// Use ComposeOption to combine an Option type with only the required components and charts
type ECOption = echarts.ComposeOption<
export type ECOption = echarts.ComposeOption<
| BarSeriesOption
| LineSeriesOption
| TitleComponentOption
Expand Down
10 changes: 9 additions & 1 deletion ams/dashboard/src/language/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,13 @@ export default {
cannotDeleteGroupModalContent: 'This group has been used.',
deleteGroupModalTitle: 'Remove this group',
processId: 'Process Id',
tasks: 'Tasks'
tasks: 'Tasks',
recordChartTitle: 'Table record count',
fileChartTitle: 'Table file count',
totalRecords: 'total-records',
totalEqualityDeletes: 'eq-delete-records',
totalPositionDeletes: 'pos-delete-records',
totalFiles: 'total-files',
totalDataFiles: 'data-files',
totalDeleteFiles: 'delete-files'
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading