# Monitoring Tools

Guardian's monitoring tools provide infrastructure for external systems to observe and react to Guardian's internal event stream without requiring a direct NATS connection.

## Application Events Module

The [Application Events Module](/docs/develop/guardian/standard-registry/external-events/monitoring-tools/application-events-module.md) is a standalone HTTP service (port `3012`) that:

* Subscribes to all Guardian NATS event subjects on startup
* Exposes a REST API for registering and managing webhooks
* Delivers events to registered webhook URLs via HTTP POST
* Provides a streaming JSON endpoint for real-time event consumption

| Capability                        | Endpoint                    |
| --------------------------------- | --------------------------- |
| Register a webhook                | `POST /api/webhooks`        |
| List registered webhooks          | `GET /api/webhooks`         |
| Retrieve a single webhook         | `GET /api/webhooks/{id}`    |
| Update a webhook                  | `PUT /api/webhooks/{id}`    |
| Delete a webhook                  | `DELETE /api/webhooks/{id}` |
| List all available event subjects | `GET /api/events`           |
| Subscribe to live event stream    | `GET /api/events/subscribe` |
| Interactive API documentation     | `GET /api-docs`             |

For full details see [Application Events Module](/docs/develop/guardian/standard-registry/external-events/monitoring-tools/application-events-module.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guardian.hedera.com/docs/develop/guardian/standard-registry/external-events/monitoring-tools.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
