"Queue Details" in Zabbix web interface is capped to 500 items.
To obtain full queue (Zabbix web interface):
- change value
QUEUE_DETAIL_ITEM_COUNT
in filefrontends\php\include\defines.inc.php
More details:
* download file | |
* create transparent layer | |
```bash | |
for f in Super-Mario-Bros_30.jpg Super-Mario-Bros_37.jpg ; do | |
echo "***** $f *********** " | |
convert "$f" -fuzz 20% -transparent white "nuove/${f%.jpg}.png" | |
#sleep 1 | |
done | |
``` |
#!/bin/bash | |
i=0 | |
URL[$i]="https://.../.../....m3u8" | |
TITLE[$i]="... - S01E01 ..." // no extension | |
i=$((i+1)) | |
URL[$i]="..." | |
TITLE[$i]="..." | |
i=$((i+1)) | |
... |
from pyzabbix import ZabbixAPI | |
def get(z, templateid): | |
res = templateid | |
for t in templateid: | |
template = z.template.get(templateids=t, selectTemplates='extend') | |
parent_templates = [x['templateid'] for x in template[0]['templates']] | |
if parent_templates: | |
res = res + template_get(z, parent_templates) | |
return res |
# Title: Galleria Tag for Jekyll | |
# Authors: Alex Bevilacqua | |
# Description: incorporate the Galleria gallery jquery plugin | |
# | |
# Adaption of "Photos tag for Jekyll" by Devin Weaver, and the derived | |
# "Gallery Tag for Jekyll" by Kevin Brown. | |
# | |
# Multiple gallery in same page, added by @ironbishop . | |
# | |
# Installation: |