Skip to content

Commit

Permalink
remove unused values from write throughput SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
insmac committed Jan 16, 2025
1 parent 6935043 commit 32b9835
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions packages/web-console/src/scenes/Editor/Metrics/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ export type WriteAmplification = {

export type RowsApplied = {
time: string
numOfWalApplies: string
numOfRowsApplied: string
numOfRowsWritten: string
avgWalAmplification: string
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ export const writeThroughput: Widget = {
return `
select
created time,
count(rowCount) numOfWalApplies,
sum(rowCount) numOfRowsApplied,
sum(physicalRowCount) numOfRowsWritten
from ${TelemetryTable.WAL}
where ${tableId ? `tableId = ${tableId} and ` : ""}
event = 105
Expand Down

0 comments on commit 32b9835

Please sign in to comment.