Zabbix 6.0 Manual- 用于配置 SLA • SLA 报表 - 用于 SLA 报表(也可用作仪表板小部件) 下面概述了对服务功能的其他主要改进。 基于标签的服务到问题的映射 以前版本中服务(services) 的可用性取决于触发器及其状态。在新版本中,它被相应服务的基于标签的问题映射所取代。 服务的配置和查看合并在 Monitoring → Services 中,并且在 Configuration → Services 的状态和权重计算父服务的状态。现在还可以设置灵活的规则来将服务状态 传播到父服务。 服务权限 在用户角色 级别实现了对服务的灵活权限。可以向所有、无或选定的服务授予读写或只读访问权限(基于名称或标签)。 根本原因分析 一个新的 根本原因(Root cause)列显示了直接或间接影响服务状态的潜在问题。 如果您单击问题名称,您可以在 Monitoring → Problems 中查看有关它的更多详细信息。 之前版本中的简单宏示例。 11 现有的简单宏将在升级过程中转换为表达式宏。表达式宏的范围与简单宏提供的范围相同。因此,表达式宏可用于: • 问题通知和命令 • 问题更新通知和命令 • 地图元素标签 • 地图链接标签 • 地图形状标签 • 图形名称 不再支持位置宏 自 Zabbix 4.0 起已弃用的监控项名称 ($1, $2...$9) 中对位置宏的支持已被完全删除。 不再支持监控项名称中的用户宏0 码力 | 1741 页 | 22.78 MB | 1 年前3
Python 标准库参考指南 3.7.13 extend(t) 或 s += t 用 t 的内容扩展 s (基本上等同于 s[len(s):len(s)] = t) s *= n 使用 s 的内容重复 n 次来对其进行更新 (6) s.insert(i, x) 在由 i 给出的索引位置将 x 插入 s (等同于 s[i:i] = [x]) s.pop([i]) 提取在 i 位置上的项,并将其从 s 中移除 (2) s.remove(x) 符产生的多义性。要应用一个内层重复嵌套,可以使用括号。比如,表达式 (?:a{6})* 匹配 6 个 'a' 字符重复任意次数。 特殊字符是: . (点) 在默认模式,匹配除了换行的任意字符。如果指定了标签DOTALL ,它将匹配包括换行符的任意 字符。 ^ (插入符号) 匹配字符串的开头,并且在MULTILINE 模式也匹配换行后的首个符号。 $ 匹配字符串尾或者在字符串尾的换行符的前一个字符,在MULTILINE 值为字符串,其含义如下: 值 含义 'replace' a[i1:i2] 应由 b[j1:j2] 替换。 'delete' a[i1:i2] 应被删除。请注意在此情况下 j1 == j2。 'insert' b[j1:j2] 应插入到 a[i1:i1]。请注意在此情况下 i1 == i2。 'equal' a[i1:i2] == b[j1:j2] (两个子序列相同)。 例如 >>> a =0 码力 | 1846 页 | 9.09 MB | 10 月前3
Python 标准库参考指南 2.7.18 which s[i] == x s.index(x[, i[, j]]) return smallest k such that s[k] == x and i <= k < j (4) s.insert(i, x) same as s[i:i] = [x] (5) s.pop([i]) same as x = s[i]; del s[i]; return x (6) s.remove(x) specifying start and stop positions. (5) When a negative index is passed as the first parameter to the insert() method, the list length is added, as for slice indices. If it is still negative, it is truncated brace (“{”or“}”) as the fill character when using the str.format() method. However, it is possible to insert a curly brace with a nested replacement field. This limitation doesn’t affect the format() function0 码力 | 1552 页 | 7.42 MB | 10 月前3
Python 标准库参考指南 2.7.18 which s[i] == x s.index(x[, i[, j]]) return smallest k such that s[k] == x and i <= k < j (4) s.insert(i, x) same as s[i:i] = [x] (5) s.pop([i]) same as x = s[i]; del s[i]; return x (6) s.remove(x) specifying start and stop positions. (5) When a negative index is passed as the first parameter to the insert() method, the list length is added, as for slice indices. If it is still negative, it is truncated brace (“{”or“}”) as the fill character when using the str.format() method. However, it is possible to insert a curly brace with a nested replacement field. This limitation doesn’t affect the format() function0 码力 | 1552 页 | 7.42 MB | 10 月前3
Python 标准库参考指南 2.7.18 which s[i] == x s.index(x[, i[, j]]) return smallest k such that s[k] == x and i <= k < j (4) s.insert(i, x) same as s[i:i] = [x] (5) s.pop([i]) same as x = s[i]; del s[i]; return x (6) s.remove(x) specifying start and stop positions. (5) When a negative index is passed as the first parameter to the insert() method, the list length is added, as for slice indices. If it is still negative, it is truncated brace (“{”or“}”) as the fill character when using the str.format() method. However, it is possible to insert a curly brace with a nested replacement field. This limitation doesn’t affect the format() function0 码力 | 1552 页 | 7.42 MB | 10 月前3
Python 标准库参考指南 3.7.13 extend(t) 或 s += t 用 t 的内容扩展 s (基本上等同于 s[len(s):len(s)] = t) s *= n 使用 s 的内容重复 n 次来对其进行更新 (6) s.insert(i, x) 在由 i 给出的索引位置将 x 插入 s (等同于 s[i:i] = [x]) s.pop([i]) 提取在 i 位置上的项,并将其从 s 中移除 (2) s.remove(x) 生的多义性。要应用一个内层重复嵌套,可以使用括号。比如,表达式 (?:a{6})* 匹配 6 个 'a' 字符重复 任意次数。 特殊字符是: . (点) 在默认模式,匹配除了换行的任意字符。如果指定了标签DOTALL ,它将匹配包括换行符的任意字符。 ^ (插入符号) 匹配字符串的开头,并且在MULTILINE 模式也匹配换行后的首个符号。 $ 匹配字符串尾或者在字符串尾的换行符的前一个字符,在MULTILINE 发布 3.7.13 值 含义 'replace' a[i1:i2] 应由 b[j1:j2] 替换。 'delete' a[i1:i2] 应被删除。请注意在此情况下 j1 == j2。 'insert' b[j1:j2] 应插入到 a[i1:i1]。请注意在此情况下 i1 == i2。 'equal' a[i1:i2] == b[j1:j2] (两个子序列相同)。 例如 >>> a =0 码力 | 1961 页 | 9.14 MB | 10 月前3
Python 标准库参考指南 3.8.20 extend(t) 或 s += t 用 t 的内容扩展 s (基本上等同于 s[len(s):len(s)] = t) s *= n 使用 s 的内容重复 n 次来对其进行更新 (6) s.insert(i, x) 在由 i 给出的索引位置将 x 插入 s (等同于 s[i:i] = [x]) s.pop() 或 s.pop(i) 提取在 i 位置上的项,并将其从 s 中移除 (2) s.remove(x) 值为字符串,其含义如下: 值 含意 'replace' a[i1:i2] 应由 b[j1:j2] 替换。 'delete' a[i1:i2] 应被删除。请注意在此情况下 j1 == j2。 'insert' b[j1:j2] 应插入到 a[i1:i1]。请注意在此情况下 i1 == i2。 'equal' a[i1:i2] == b[j1:j2] (两个子序列相同)。 例如: >>> a = b[0:2] 'ab' --> 'ab' replace a[3:4] --> b[2:3] 'x' --> 'y' equal a[4:6] --> b[3:5] 'cd' --> 'cd' insert a[6:6] --> b[5:6] '' --> 'f' get_grouped_opcodes(n=3) 返回一个带有最多 n 行上下文的分组的generator。 从get_opcodes()0 码力 | 1927 页 | 9.69 MB | 10 月前3
Python 标准库参考指南 3.8.20 extend(t) 或 s += t 用 t 的内容扩展 s (基本上等同于 s[len(s):len(s)] = t) s *= n 使用 s 的内容重复 n 次来对其进行更新 (6) s.insert(i, x) 在由 i 给出的索引位置将 x 插入 s (等同于 s[i:i] = [x]) s.pop() 或 s.pop(i) 提取在 i 位置上的项,并将其从 s 中移除 (2) s.remove(x) 值为字符串,其含义如下: 值 含意 'replace' a[i1:i2] 应由 b[j1:j2] 替换。 'delete' a[i1:i2] 应被删除。请注意在此情况下 j1 == j2。 'insert' b[j1:j2] 应插入到 a[i1:i1]。请注意在此情况下 i1 == i2。 'equal' a[i1:i2] == b[j1:j2] (两个子序列相同)。 例如: >>> a = b[0:2] 'ab' --> 'ab' replace a[3:4] --> b[2:3] 'x' --> 'y' equal a[4:6] --> b[3:5] 'cd' --> 'cd' insert a[6:6] --> b[5:6] '' --> 'f' get_grouped_opcodes(n=3) 返回一个带有最多 n 行上下文的分组的generator。 从get_opcodes()0 码力 | 1927 页 | 9.69 MB | 10 月前3
Python 标准库参考指南 3.8.20 extend(t) 或 s += t 用 t 的内容扩展 s (基本上等同于 s[len(s):len(s)] = t) s *= n 使用 s 的内容重复 n 次来对其进行更新 (6) s.insert(i, x) 在由 i 给出的索引位置将 x 插入 s (等同于 s[i:i] = [x]) s.pop() 或 s.pop(i) 提取在 i 位置上的项,并将其从 s 中移除 (2) s.remove(x) 值为字符串,其含义如下: 值 含意 'replace' a[i1:i2] 应由 b[j1:j2] 替换。 'delete' a[i1:i2] 应被删除。请注意在此情况下 j1 == j2。 'insert' b[j1:j2] 应插入到 a[i1:i1]。请注意在此情况下 i1 == i2。 'equal' a[i1:i2] == b[j1:j2] (两个子序列相同)。 例如: >>> a = b[0:2] 'ab' --> 'ab' replace a[3:4] --> b[2:3] 'x' --> 'y' equal a[4:6] --> b[3:5] 'cd' --> 'cd' insert a[6:6] --> b[5:6] '' --> 'f' get_grouped_opcodes(n=3) 返回一个带有最多 n 行上下文的分组的generator。 从get_opcodes()0 码力 | 2052 页 | 9.74 MB | 10 月前3
Python 标准库参考指南 3.10.15 extend(t) 或 s += t 用 t 的内容扩展 s (基本上等同于 s[len(s):len(s)] = t) s *= n 使用 s 的内容重复 n 次来对其进行更新 (6) s.insert(i, x) 在由 i 给出的索引位置将 x 插入 s (等同于 s[i:i] = [x]) s.pop() 或 s.pop(i) 提取在 i 位置上的项,并将其从 s 中移除 (2) s.remove(x) 值为字符串,其含义如下: 值 含意 'replace' a[i1:i2] 应由 b[j1:j2] 替换。 'delete' a[i1:i2] 应被删除。请注意在此情况下 j1 == j2。 'insert' b[j1:j2] 应插入到 a[i1:i1]。请注意在此情况下 i1 == i2。 'equal' a[i1:i2] == b[j1:j2] (两个子序列相同)。 例如: >>> a = b[0:2] 'ab' --> 'ab' replace a[3:4] --> b[2:3] 'x' --> 'y' equal a[4:6] --> b[3:5] 'cd' --> 'cd' insert a[6:6] --> b[5:6] '' --> 'f' 6.3. difflib --- 计算差异的辅助工具 133 The Python Library Reference, 发布 30 码力 | 2072 页 | 10.39 MB | 10 月前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100













