Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,16 @@ export const DockerBlockChart = ({ accumulativeData }: Props) => {
}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="readMb"
stroke="var(--color-readMb)"
fill="url(#fillBlockRead)"
strokeWidth={2}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="writeMb"
stroke="var(--color-writeMb)"
fill="url(#fillBlockWrite)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ export const DockerCpuChart = ({ accumulativeData }: Props) => {
}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="usage"
stroke="var(--color-usage)"
fill="url(#fillCpu)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ export const DockerDiskChart = ({ accumulativeData, diskTotal }: Props) => {
}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="usedGb"
stroke="var(--color-usedGb)"
fill="url(#fillDiskUsed)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ export const DockerMemoryChart = ({
}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="usage"
stroke="var(--color-usage)"
fill="url(#fillMemory)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,16 @@ export const DockerNetworkChart = ({ accumulativeData }: Props) => {
}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="inMB"
stroke="var(--color-inMB)"
fill="url(#fillNetIn)"
strokeWidth={2}
/>
<Area
type="monotone"
type="linear"
isAnimationActive={false}
dataKey="outMB"
stroke="var(--color-outMB)"
fill="url(#fillNetOut)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ export const ContainerBlockChart = ({ data }: Props) => {
<Area
name="Write"
dataKey="write"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillWrite)"
stroke="hsl(142, 71%, 45%)"
strokeWidth={2}
Expand All @@ -162,7 +163,8 @@ export const ContainerBlockChart = ({ data }: Props) => {
<Area
name="Read"
dataKey="read"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillRead)"
stroke="hsl(217, 91%, 60%)"
strokeWidth={2}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ export const ContainerCPUChart = ({ data }: Props) => {
<Area
name="CPU"
dataKey="cpu"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillCPU)"
stroke="hsl(var(--chart-1))"
strokeWidth={2}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ export const ContainerMemoryChart = ({ data }: Props) => {
<Area
name="Memory"
dataKey="memory"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillMemory)"
stroke="hsl(var(--chart-2))"
strokeWidth={2}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,17 @@ export const ContainerNetworkChart = ({ data }: Props) => {
<Area
name="Input"
dataKey="input"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillInput)"
stroke="hsl(var(--chart-3))"
strokeWidth={2}
/>
<Area
name="Output"
dataKey="output"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillOutput)"
stroke="hsl(var(--chart-4))"
strokeWidth={2}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ export function CPUChart({ data }: CPUChartProps) {
<Area
name="CPU"
dataKey="cpu"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillCPU)"
stroke="hsl(var(--chart-1))"
strokeWidth={2}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ export function MemoryChart({ data }: MemoryChartProps) {
<Area
yAxisId="left"
dataKey="memUsed"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillMemory)"
stroke="hsl(var(--chart-2))"
strokeWidth={2}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,17 @@ export function NetworkChart({ data }: NetworkChartProps) {
<Area
name="Network In"
dataKey="networkIn"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillNetworkIn)"
stroke="hsl(var(--chart-3))"
strokeWidth={2}
/>
<Area
name="Network Out"
dataKey="networkOut"
type="monotone"
type="linear"
isAnimationActive={false}
fill="url(#fillNetworkOut)"
stroke="hsl(var(--chart-4))"
strokeWidth={2}
Expand Down
Loading