mirror of https://github.com/caronc/apprise
Updated Troubleshooting (markdown)
parent
0ef3787894
commit
199d03a3ee
|
@ -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`
|
||||
|
|
Loading…
Reference in New Issue