Skip to content

Commit 46831a1

Browse files
committed
fix links
1 parent a248f8f commit 46831a1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/tutorials/best-practices/scale-coder.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ under ten instances, and opt for vertical scale over horizontal scale after
117117
meeting availability requirements.
118118

119119
Coder's
120-
[validated architectures](../../admin/infrastructure/validated-architectures.md)
120+
[validated architectures](../../admin/infrastructure/validated-architectures/index.md)
121121
give specific sizing recommendations for various user scales. These are a useful
122122
starting point, but very few deployments will remain stable at a predetermined
123123
user level over the long term, so monitoring and adjusting of resources is
@@ -197,7 +197,7 @@ a virtual machine (VM), you can deploy multiple provisioner daemons, ensuring
197197
each has a unique `CODER_CACHE_DIRECTORY` value.
198198

199199
Coder's
200-
[validated architectures](../../admin/infrastructure/validated-architectures.md)
200+
[validated architectures](../../admin/infrastructure/validated-architectures/index.md)
201201
give specific sizing recommendations for various user scales. Since the
202202
complexity of builds varies significantly depending on the workspace template,
203203
consider this a starting point. Monitor queue times and build times to adjust
@@ -219,7 +219,7 @@ must also be low-latency with respect to one another.
219219

220220
Prefer scaling PostgreSQL vertically rather than horizontally for best
221221
performance. Coder's
222-
[validated architectures](../../admin/infrastructure/validated-architectures.md)
222+
[validated architectures](../../admin/infrastructure/validated-architectures/index.md)
223223
give specific sizing recommendations for various user scales.
224224

225225
## Workspace proxies

site/src/modules/workspaces/WorkspaceTiming/Chart/XAxis.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ export const XGrid: FC<XGridProps> = ({ columns, ...htmlProps }) => {
121121

122122
// A dashed line is used as a background image to create the grid.
123123
// Using it as a background simplifies replication along the Y axis.
124-
const dashedLine = (color: string) => `<svg width="2" height="446" viewBox="0 0 2 446" fill="none" xmlns="http://www.w3.org/2000/svg">
124+
const dashedLine = (
125+
color: string,
126+
) => `<svg width="2" height="446" viewBox="0 0 2 446" fill="none" xmlns="http://www.w3.org/2000/svg">
125127
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.75 440.932L1.75 446L0.75 446L0.75 440.932L1.75 440.932ZM1.75 420.659L1.75 430.795L0.749999 430.795L0.749999 420.659L1.75 420.659ZM1.75 400.386L1.75 410.523L0.749998 410.523L0.749998 400.386L1.75 400.386ZM1.75 380.114L1.75 390.25L0.749998 390.25L0.749997 380.114L1.75 380.114ZM1.75 359.841L1.75 369.977L0.749997 369.977L0.749996 359.841L1.75 359.841ZM1.75 339.568L1.75 349.705L0.749996 349.705L0.749995 339.568L1.75 339.568ZM1.74999 319.295L1.74999 329.432L0.749995 329.432L0.749994 319.295L1.74999 319.295ZM1.74999 299.023L1.74999 309.159L0.749994 309.159L0.749994 299.023L1.74999 299.023ZM1.74999 278.75L1.74999 288.886L0.749993 288.886L0.749993 278.75L1.74999 278.75ZM1.74999 258.477L1.74999 268.614L0.749992 268.614L0.749992 258.477L1.74999 258.477ZM1.74999 238.204L1.74999 248.341L0.749991 248.341L0.749991 238.204L1.74999 238.204ZM1.74999 217.932L1.74999 228.068L0.74999 228.068L0.74999 217.932L1.74999 217.932ZM1.74999 197.659L1.74999 207.795L0.74999 207.795L0.749989 197.659L1.74999 197.659ZM1.74999 177.386L1.74999 187.523L0.749989 187.523L0.749988 177.386L1.74999 177.386ZM1.74999 157.114L1.74999 167.25L0.749988 167.25L0.749987 157.114L1.74999 157.114ZM1.74999 136.841L1.74999 146.977L0.749987 146.977L0.749986 136.841L1.74999 136.841ZM1.74999 116.568L1.74999 126.705L0.749986 126.705L0.749986 116.568L1.74999 116.568ZM1.74998 96.2955L1.74999 106.432L0.749985 106.432L0.749985 96.2955L1.74998 96.2955ZM1.74998 76.0228L1.74998 86.1591L0.749984 86.1591L0.749984 76.0228L1.74998 76.0228ZM1.74998 55.7501L1.74998 65.8864L0.749983 65.8864L0.749983 55.7501L1.74998 55.7501ZM1.74998 35.4774L1.74998 45.6137L0.749982 45.6137L0.749982 35.4774L1.74998 35.4774ZM1.74998 15.2047L1.74998 25.341L0.749982 25.341L0.749981 15.2047L1.74998 15.2047ZM1.74998 -4.37114e-08L1.74998 5.0683L0.749981 5.0683L0.749981 0L1.74998 -4.37114e-08Z" fill="${color}"/>
126128
</svg>`;
127129

0 commit comments

Comments
 (0)