Updated Troubleshooting (markdown)

master
Chris Caron 2019-11-05 13:21:30 -05:00
parent 0ef3787894
commit 199d03a3ee
1 changed files with 2 additions and 2 deletions

@ -34,9 +34,9 @@ python apprise --dry-run --tag=devops \
```
## Too Much Data and Overflow Directive
Out of the box, Apprise passes _everything_ you give it right along to the notification source. Some sources can handle a large surplus of data; others might not deal with it as well and as a result, your notification doesn't seem to go through).
Out of the box, Apprise passes the full message (and title) you provide right along to the notification source(s). Some sources can handle a large surplus of data while others might not. All of the [supported notifications services](https://github.com/caronc/apprise/wiki#notification-services) Apprise supports have identify these limits on their respected wiki/help pages.
Apprise has a somewhat non-elegant way of handling this situation; but it's better than nothing. You simply need to tack on the **overflow** switch somewhere in your Apprise URL; for example:
However, if passing a large amount of data is still your goal: Apprise has a somewhat non-elegant way of handling this situation (it's better than nothing). You simply need to tack on the **overflow** parameter somewhere in your Apprise URL; for example:
* `schema://path/?overflow=split`
* `schema://path/?overflow=truncate`
* `schema://path/?overflow=upstream`