Skip to content

Commit 5b9e86c

Browse files
committed
Basic troubleshooting page for edge
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
1 parent a11d702 commit 5b9e86c

2 files changed

Lines changed: 37 additions & 0 deletions

File tree

docs/edge/overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Most of the [OpenFaaS Pro documentation](/docs/openfaas-pro/) and [Helm charts](
1414
* [Air Gap](/edge/airgap)
1515
* [Custom DNS servers](/edge/custom-dns)
1616
* [Improve container security with gVisor](/edge/gvisor)
17+
* [Troubleshooting an installation](/edge/troubleshooting)
1718

1819
## OpenFaaS Edge guides
1920

docs/edge/troubleshooting.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Troubleshooting OpenFaaS Edge
2+
3+
There are more detailed notes in the eBook.
4+
5+
## Find common issues
6+
7+
Check the services:
8+
9+
```bash
10+
journalctl -u faasd
11+
journalctl -u faasd-provider
12+
```
13+
14+
Check the containers:
15+
16+
```bash
17+
sudo faasd service logs gateway
18+
sudo faasd service logs queue-worker
19+
sudo faasd service logs faas-idler
20+
sudo faasd service logs prometheus
21+
```
22+
23+
Check service output:
24+
25+
```bash
26+
sudo faasd service list
27+
sudo faasd service top
28+
```
29+
30+
Check the machine for free memory and disk space:
31+
32+
```bash
33+
free -h
34+
df -h /
35+
```
36+

0 commit comments

Comments
 (0)