# Prowlarr接入 Server酱：索引器健康检查失败时微信告警（2026 教程）

> 通过 Prowlarr 内置 Apprise 通知，将索引器同步异常、健康检查失败等告警实时推送到微信，附 UI 配置与 apprise-api 部署方法。

- 网页版：https://sct.ftqq.com/docs/integrations/prowlarr/
- 更新日期：2026-07-17

# Prowlarr + Server酱：索引器异常微信告警

> 效果：Prowlarr 索引器健康检查失败或应用同步异常时，微信第一时间收到告警

## 前置条件

- 获取 Server酱 SendKey（SCT 开头）：登录 sct.ftqq.com，在「SendKey」页面复制（[30 秒获取教程](https://sct.ftqq.com/docs/getting-started/sendkey/)）
- 部署 apprise-api 容器：Prowlarr 内置的 Apprise 属于 B 类对接，需先自建 `caronc/apprise-api` 容器作为转发服务（通用部署方法详见 [/integrations/apprise/](https://sct.ftqq.com/docs/integrations/apprise/)）

## 配置步骤

1. 在 Prowlarr 中进入 Settings → Connect，点击加号添加通知，选择 Apprise。

2. 填写 Apprise 配置项：
   - **Base Url**：填写你的 apprise-api 容器地址（如 `http://localhost:8000`）
   - **Stateless URLs**：填写 `schan://你的SENDKEY`

3. 在通知触发条件中，按需勾选健康检查失败、应用同步异常等相关事件。

4. 保存配置后，点击对应通知项的测试按钮发送验证。

## 完整示例

在配置 Prowlarr 前，可先通过命令行验证 `schan://` 协议与 SendKey 是否连通：

```bash
pip install apprise && apprise -t "测试标题" -b "测试正文" "schan://你的SENDKEY"
```

## 常见问题

**Server酱的发送额度是多少？**
免费用户每日可发送 5 条，每分钟上限 50 条；订阅会员目前特价最低 3 元/月，一天最多可发 1000 条（[价格详情](https://sct.ftqq.com/subscribe)）。

**配置后消息没收到怎么办？**
先检查 apprise-api 容器日志确认是否收到 Prowlarr 的转发请求，再检查 Server酱侧问题，详见 [常见问题与排查](https://sct.ftqq.com/docs/getting-started/faq/)。

**Server酱³（sctp 开头）的 SendKey 如何配置？**
Apprise 暂无 sctp 专用插件，可使用通用 `json://` 插件直连 push.ft07.com API，具体参数格式参考 Apprise 官方文档。

**触发频率过高会被限制吗？**
会受 Server酱 API 频率限制（每分钟 50 条），建议在 Prowlarr 通知设置中合理配置触发间隔，避免短时间大量重试。

## 相关集成

- [/integrations/python/](https://sct.ftqq.com/docs/integrations/python/)
- [/integrations/qinglong/](https://sct.ftqq.com/docs/integrations/qinglong/)
- [/integrations/uptime-kuma/](https://sct.ftqq.com/docs/integrations/uptime-kuma/)


## 懒人方案：把这段话复制给你的 AI 助手

把下面这段文字原样粘贴给 Claude Code、Cursor 或任何 AI 编程助手，它就会替你完成 Server酱 的接入：

```text
请帮我把 Server酱 微信通知接入到我当前的项目/工具中：
1. API：POST https://sctapi.ftqq.com/{SendKey}.send，参数 title（必填，不能含换行）、desp（正文，支持 Markdown，可选）；成功时返回 JSON 的 code 为 0。
2. 如果我的 SendKey 以 sctp 开头，则改用 https://{uid}.push.ft07.com/send/{SendKey}.send，uid 是 SendKey 中 sctp 与 t 之间的数字。
3. SendKey 从环境变量 SERVERCHAN_SENDKEY 读取；如果没有，提醒我到 https://sct.ftqq.com 免费获取（每天 5 条额度）。
4. 安全要求：不要把 SendKey 硬编码进代码、不要打印到日志、不要提交到 git。
5. 频率约定：任务结束发 1 条结果摘要即可，批量任务合并成一条，不要每步都推。
请根据我当前的项目和场景直接写好代码/配置并验证。
```

