Advertisement
Guest User

Untitled

a guest
Oct 30th, 2017
1,311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. tg_key = "***" # telegram bot api key
  4.  
  5. zbx_tg_prefix = "zbxtg" # variable for separating text from script info
  6. zbx_tg_tmp_dir = "/tmp/" + zbx_tg_prefix # directory for saving caches, uids, cookies, etc.
  7. zbx_tg_signature = False
  8.  
  9. zbx_server = "http://urltozabbix.com" # zabbix server full url
  10. zbx_api_user = "Telegram"
  11. zbx_api_pass = "***"
  12. zbx_api_verify = True # True - do not ignore self signed certificates, False - ignore
  13.  
  14. proxy_to_zbx = None
  15. proxy_to_tg = None
  16.  
  17. #proxy_to_zbx = "proxy.local:3128"
  18. #proxy_to_tg = "proxy.local:3128"
  19.  
  20. emoji_map = {
  21. "ok": "✅",
  22. "problem": "❗",
  23. "info": "ℹ️",
  24. "warning": "⚠️",
  25. "disaster": "❌",
  26. "bomb": "💣",
  27. "fire": "🔥",
  28. "hankey": "💩",
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement