diff --git a/client/src/components/landing_page.tsx b/client/src/components/landing_page.tsx index 3264cb0..eb02f9e 100644 --- a/client/src/components/landing_page.tsx +++ b/client/src/components/landing_page.tsx @@ -129,8 +129,8 @@ function LandingPage() { // Parse the CSV content const lines = data.split('\n'); const [header, line2] = lines; - if (!(header.replace(' ', '').startsWith("CPU,Mem"))) { - console.warn("unexpected CSV `stats.csv`, expected 'CPU,Mem\\n0.2,0.2\\n', got", header) + if (!(header.replace(' ', '').startsWith("CPU,MEM"))) { + console.warn("unexpected CSV `stats.csv`, expected 'CPU,MEM\\n0.2,0.2\\n', got", header) } if (line2) { let values = line2.split(',') @@ -139,6 +139,7 @@ function LandingPage() { } }).catch(err => { console.info('games/stats.csv does not exist') + console.info(err) }) diff --git a/doc/server.md b/doc/server.md index ef7de98..809705b 100644 --- a/doc/server.md +++ b/doc/server.md @@ -33,7 +33,7 @@ If you would like to display the server capacity on the landing page, you can create a file `lean4game/games/stats.csv` of the following form: ``` -CPU,Mem +CPU,MEM 0.1,0.8 ```