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

fix(UI): Using limit instead of request to calculate usage percentage, fixes #1784 #1947

Draft
wants to merge 24 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
99ff81a
Using limit instead of request to calculate usage percentage
Aug 12, 2024
26b7635
chore: add readBytesTotal metric (#1879)
samhith-kakarla Aug 2, 2024
de99a79
chore: refactor and output messages to the status when unhealthy (#1895)
whynowy Aug 4, 2024
bf4a269
feat: Rust k8s model for Numaflow (#1898)
vigith Aug 5, 2024
b65edc1
chore: add cargo fmt to numaflow-models (#1902)
vigith Aug 6, 2024
4747e56
chore: publishing extension image (#1874)
yhl25 Aug 6, 2024
1dbc091
feat: introducing MonoVertex (#1911)
whynowy Aug 8, 2024
0290704
chore: update the proto files (#1910)
vigith Aug 8, 2024
032dffd
chore: rust codegen templates (#1913)
whynowy Aug 9, 2024
0df21eb
docs: updated CHANGELOG.md (#1916)
github-actions[bot] Aug 9, 2024
7971f22
feat: source to sink with an optional transformer without ISB (#1904)
vigith Aug 9, 2024
e120495
chore: mono-vertex code review (#1917)
vigith Aug 10, 2024
8581493
feat: add server-info support and versioning to MonoVertex (#1918)
kohlisid Aug 10, 2024
1b00923
chore: improve shutdown and health checks for MonoVertex (#1919)
yhl25 Aug 10, 2024
175f952
chore: rename proto name for sourcetransform (#1921)
vigith Aug 12, 2024
adcad2a
chore: reorganize rust code (#1922)
yhl25 Aug 12, 2024
2f15b7d
Add Lockheed to Users.md (#1934)
mdwarne1 Aug 13, 2024
4d2cc2c
chore: add transformer to MonoVertex example (#1935)
vigith Aug 13, 2024
bbfe02a
fix: retry failed messages for MonoVertex sink (#1933)
yhl25 Aug 13, 2024
e9c5fa2
chore: implement APIs for mono vertex UI server (#1931)
KeranYang Aug 13, 2024
7f44c43
chore: update last updated time for mvtx (#1939)
yhl25 Aug 14, 2024
b05ad78
chore: avoid partial acks (#1938)
yhl25 Aug 14, 2024
96784f9
feat: Using limit to calculate usage percentage. Fixes #1784
Aug 14, 2024
036ee66
feat: Using limit to calculate usage percentage. Fixes #1784
SaniyaKalamkar Aug 14, 2024
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
4 changes: 2 additions & 2 deletions ui/src/utils/fetcherHooks/podsViewFetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const usePodsViewFetch = (
const containers: string[] = [];
const containerSpecMap = new Map<string, PodContainerSpec>();
pod?.spec?.containers?.forEach((container: any) => {
const cpu = container?.resources?.requests?.cpu;
const cpu = container?.resources?.limits?.cpu;
let cpuParsed: undefined | number;
if (cpu) {
try {
Expand All @@ -58,7 +58,7 @@ export const usePodsViewFetch = (
cpuParsed = undefined;
}
}
const memory = container?.resources?.requests?.memory;
const memory = container?.resources?.limits?.memory;
let memoryParsed: undefined | number;
if (memory) {
try {
Expand Down
Loading