You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/run-node/5-flare-entity.mdx
+31-3Lines changed: 31 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -980,10 +980,38 @@ To opt-out of receiving all future FlareDrops, you need to call the [`optOutOfAi
980
980
</details>
981
981
982
982
<details>
983
-
<summary>F6. How do I get real-time Slack/Discord/Telegram alerts for my Flare Entity?</summary>
983
+
<summary>F6. How do I get real-time Slack/Discord/Telegram alerts for issues with my Flare Entity?</summary>
984
984
985
-
Try out the alpha version of the [flare-foundation/fsp-observer](https://github.com/flare-foundation/fsp-observer) to receive instant notifications about critical misbehaviors - like FTSO or FDC reveal offenses, registration failures, and more - that could cost rewards.
985
+
To receive instant notifications about critical validator or data provider issues - such as FTSO or FDC reveal offenses, registration failures, and more - use the [flare-foundation/fsp-observer](https://github.com/flare-foundation/fsp-observer) monitoring service.
986
986
987
-
We would appreciate feature requests to direct development of the tool, please raise them on the [issues page](https://github.com/flare-foundation/fsp-observer/issues).
987
+
1. Create a env file (e.g., `.env.fsp-observer`) with your configuration:
NOTIFICATION_GENERIC_WEBHOOK="http://host:port/path" # generic POST webhook
1000
+
```
1001
+
1002
+
:::warning
1003
+
1004
+
Make sure this env file is **not committed** to version control (add it to `.gitignore` if needed).
1005
+
1006
+
:::
1007
+
1008
+
2. Run the observer using Docker:
1009
+
1010
+
```bash
1011
+
docker run --env-file .env.fsp-observer ghcr.io/flare-foundation/fsp-observer:main
1012
+
```
1013
+
1014
+
The container will watch your identity and send notifications to any configured channels when issues are detected.
1015
+
If you encounter problems or have feature requests, open an issue on the [GitHub issues page](https://github.com/flare-foundation/fsp-observer/issues).
0 commit comments