Skip to content

Commit e2394e9

Browse files
committed
feat: update live dashboard to use tail -n 500
Rather than use the default `-n 10`
1 parent 7a83932 commit e2394e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/plugin-client-default/notebooks/dashboard-live.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ layout:
2020
maximize: true
2121
outputOnly: true
2222
---
23-
tail -f $LOGDIR/logs/job.txt
23+
tail -n 500 -f $LOGDIR/logs/job.txt
2424
```
2525

2626
=== "GPU Utilization"
@@ -31,7 +31,7 @@ layout:
3131
maximize: true
3232
outputOnly: true
3333
---
34-
tail -f $LOGDIR/resources/gpu.txt
34+
tail -n 500 -f $LOGDIR/resources/gpu.txt
3535
```
3636

3737
=== "Kubernetes Events"
@@ -42,7 +42,7 @@ layout:
4242
maximize: true
4343
outputOnly: true
4444
---
45-
tail -f $LOGDIR/events/kubernetes.txt
45+
tail -n 500 -f $LOGDIR/events/kubernetes.txt
4646
```
4747

4848
--8<-- "./dashboard-source.md"

0 commit comments

Comments
 (0)