chore(kb): start article about uptime kuma

This commit is contained in:
Michele Cereda
2024-06-02 22:42:48 +02:00
parent 107aa0993d
commit 8c61591c8a
3 changed files with 147 additions and 9 deletions

View File

@@ -0,0 +1,58 @@
# Monitoring
TODO
1. [TL;DR](#tldr)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL;DR
<!-- Uncomment if used
<details>
<summary>Installation and configuration</summary>
```sh
```
</details>
-->
<!-- Uncomment if used
<details>
<summary>Usage</summary>
```sh
```
</details>
-->
<!-- Uncomment if used
<details>
<summary>Real world use cases</summary>
```sh
```
</details>
-->
## Further readings
- [Uptime Kuma]
### Sources
<!--
Reference
═╬═Time══
-->
<!-- In-article sections -->
<!-- Knowledge base -->
[uptime kuma]: uptime%20kuma.md
<!-- Files -->
<!-- Upstream -->
<!-- Others -->

View File

@@ -9,15 +9,17 @@ The _art_ of hosting and managing applications on one's own servers instead of c
## Software ## Software
| Name | Description | Alternatives | | Name | Description | Alternatives |
| ---------------- | -------------------------- | --------------------------------- | | ---------------- | -------------------------- | ------------------------------- |
| [Baikal] | CalDAV and CardDAV server | [Radicale](https://radicale.org/) | | [Baikal] | CalDAV and CardDAV server | [Radicale] |
| [Gitea] | Git server | [Gitlab] | | [Gitea] | Git server | [Gitlab] |
| [Gitlab] | Git server | [Gitea] | | [Gitlab] | Git server | [Gitea] |
| [Home Assistant] | Home automation platform | | | [Home Assistant] | Home automation platform | |
| [NextCloud] | File sharing platform | [OwnCloud](https://owncloud.com/) | | [NextCloud] | File sharing platform | [OwnCloud] |
| [Paperless-ngx] | Document management system | | | [Paperless-ngx] | Document management system | |
| [PhotoPrism] | Google Photos replacement | | | [PhotoPrism] | Google Photos replacement | |
| [Uptime Kuma] | Status page | [Gatus], [Statping-ng], [Vigil] |
| [OpenMediaVault] | NAS solution | [TrueNAS] |
## Further readings ## Further readings
@@ -36,10 +38,18 @@ The _art_ of hosting and managing applications on one's own servers instead of c
[gitea]: gitea.md [gitea]: gitea.md
[gitlab]: gitlab/README.md [gitlab]: gitlab/README.md
[nextcloud]: nextcloud.md [nextcloud]: nextcloud.md
[openmediavault]: openmediavault.md
[paperless-ngx]: paperless-ngx.md [paperless-ngx]: paperless-ngx.md
[photoprism]: photoprism.md [photoprism]: photoprism.md
[uptime kuma]: uptime%20kuma.md
<!-- Others --> <!-- Others -->
[awesome-selfhosted]: https://awesome-selfhosted.net/ [awesome-selfhosted]: https://awesome-selfhosted.net/
[gatus]: https://github.com/TwiN/gatus
[home assistant]: https://www.home-assistant.io/ [home assistant]: https://www.home-assistant.io/
[owncloud]: https://owncloud.com/
[radicale]: https://radicale.org/
[service as a software substitute]: https://www.gnu.org/philosophy/who-does-that-server-really-serve.html [service as a software substitute]: https://www.gnu.org/philosophy/who-does-that-server-really-serve.html
[statping-ng]: https://statping-ng.github.io/
[truenas]: https://www.truenas.com/
[vigil]: https://github.com/valeriansaliou/vigil

View File

@@ -0,0 +1,70 @@
# Uptime Kuma
TODO
Fancy and easy-to-use self-hosted monitoring tool.
1. [TL;DR](#tldr)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL;DR
Only **one** user as of 2024-06-01.
<details>
<summary>Installation and configuration</summary>
```sh
docker pull 'louislam/uptime-kuma:1'
```
</details>
<details>
<summary>Usage</summary>
```sh
# Start.
docker run -d --restart 'always' --name 'uptime-kuma' -p '3001:3001' -v 'uptime-kuma:/app/data' 'louislam/uptime-kuma:1'
# Password reset.
docker exec -it 'uptime-kuma' npm run reset-password
```
</details>
<!-- Uncomment if used
<details>
<summary>Real world use cases</summary>
```sh
```
</details>
-->
## Further readings
- [Website]
- [Github]
- [Documentation]
- [`uptime-kuma-api`][uptime-kuma-api]
### Sources
<!--
Reference
═╬═Time══
-->
<!-- In-article sections -->
<!-- Knowledge base -->
<!-- Files -->
<!-- Upstream -->
[documentation]: https://github.com/louislam/uptime-kuma/wiki
[github]: https://github.com/louislam/uptime-kuma
[uptime-kuma-api]: https://github.com/lucasheld/uptime-kuma-api
[website]: https://uptime.kuma.pet/
<!-- Others -->