File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments