> For the complete documentation index, see [llms.txt](https://docs.hostedgraphite.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hostedgraphite.com/alerting-guide/using-your-own-alerting.md).

# Using Your Own Alerting

Two well-maintained projects are [Cabot](https://github.com/arachnys/cabot) and [Seyren](https://github.com/scobal/seyren).

### Connecting Hosted Graphite to Open Source Alerting Tools

Connecting Hosted Graphite to open source Alerting tools is a simple process.

* First, you need to create an [*access key*](/account-management/access-keys.md).
* Right-click the URL of the access key, and copy it.
* Use this value as your Graphite URL in your alerting system.

### Using Hosted Graphite with Cabot

```
GRAPHITE_API: Your Access Key URL
GRAPHITE_USER:
GRAPHITE_PASS:
GRAPHITE_FROM: -10min
```

Both **GRAPHITE\_USER** and **GRAPHITE\_PASS** should be left empty, they’re not necessary when using the [Access Key.](/account-management/access-keys.md)

Note **GRAPHITE\_API** should end with a `‘/’` character.

### Using Hosted Graphite with Seyren

Set the **GRAPHITE\_URL** to your Access key URL as either a system property or an environment variable when starting Seyren. In the simplest case:

```python
export GRAPHITE_URL=Your access Key URL
java -jar seyren-1.2.0.jar
open http://localhost:8080
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.hostedgraphite.com/alerting-guide/using-your-own-alerting.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
