1. https://support.mozilla.org/en-US/kb/unable-install-add-ons-extensions-or-themes
2. use live host
1. https://support.mozilla.org/en-US/kb/unable-install-add-ons-extensions-or-themes
2. use live host
all view
https://www.zabbix.com/documentation/current/en/manual/config/macros
# macro
https://www.zabbix.com/documentation/current/en/manual/config/macros
# macro with function
https://www.zabbix.com/documentation/current/en/manual/config/macros/macro_functions
https://blog.boatswain.io/zh/post/docker-container-log-rotation/
https://gdevillele.github.io/engine/admin/logging/fluentd/
https://hub.docker.com/r/fluent/fluent-bit/
查看磁盘容量息的key值:vfs.fs.size[/,pfree]
vfs.fs.size[/,pfree]:取/领域的剩余空间率。p是percentage,
vfs.fs.size[/,free]:取/领域的剩余空间。对应的单位就是B(这里的意思是Byte)
vfs.fs.size[/,pused]:取/领域的使用空间率。
vfs.fs.size[/,used]:取/领域的使用空间。
如果要创建触发器表达式可以使用{ZABBIX-CC:vfs.fs.size[/,pfree].last(0)}<20
參考 https://blog.51cto.com/ityunwei2017/1864128
# explain
This PEP proposes extended usages of the * iterable unpacking operator and ** dictionary unpacking operators to allow unpacking in more positions, an arbitrary number of times, and in additional circumstances. Specifically, in function calls, in comprehensions and generator expressions, and in displays.
https://www.geeksforgeeks.org/packing-and-unpacking-arguments-in-python/
https://peps.python.org/pep-0448/#id6
# example
print( [i for i in [*[1,2], 1]] )
# [1, 2, 1]
print( [i for i in [[1,2], 1]] )
# [[1, 2], 1]
def hello(*attrs):
for s in attrs:
print(s)
hello([1,2,3])
#[1, 2, 3]
hello(*[1,2,3])
#1
#2
#3
hello(1,2,3)
#1
#2
#3