community.general.circonus_annotation 模块 – 在 Circonus 中创建注释
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:community.general.circonus_annotation
。
概要
使用给定的类别、标题和描述创建注释事件。 可选择提供开始时间、结束时间或持续时间
要求
执行此模块的主机需要以下要求。
requests(对于 Python 3,要求 >= 2.0.0,对于 Python 2,要求 >= 1.0.0)
参数
参数 |
注释 |
---|---|
Circonus API 密钥 |
|
注释类别 |
|
注释的描述 |
|
注释的持续时间(以秒为单位) 默认值: |
|
事件开始的 Unix 时间戳 如果未指定,则默认为“now”。 |
|
事件结束的 Unix 时间戳 如果未指定,则默认为“now”+ |
|
注释的标题 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:无 |
可以在 |
|
支持:无 |
在差异模式下,将返回有关已更改的内容(或可能需要在 |
注意
注意
不支持检查模式。
示例
- name: Create a simple annotation event with a source, defaults to start and end time of now
community.general.circonus_annotation:
api_key: XXXXXXXXXXXXXXXXX
title: App Config Change
description: This is a detailed description of the config change
category: This category groups like annotations
- name: Create an annotation with a duration of 5 minutes and a default start time of now
community.general.circonus_annotation:
api_key: XXXXXXXXXXXXXXXXX
title: App Config Change
description: This is a detailed description of the config change
category: This category groups like annotations
duration: 300
- name: Create an annotation with a start_time and end_time
community.general.circonus_annotation:
api_key: XXXXXXXXXXXXXXXXX
title: App Config Change
description: This is a detailed description of the config change
category: This category groups like annotations
start_time: 1395940006
end_time: 1395954407
返回值
常见的返回值记录在 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
有关创建的注释的详细信息 返回:成功 |
|
注释标识符 返回:成功 示例: |
|
创建时间戳 返回:成功 示例: |
|
最后修改的时间戳 返回:成功 示例: |
|
最后修改者 返回:成功 示例: |
|
创建的注释的类别 返回:成功 示例: |
|
创建的注释的描述 返回:成功 示例: |
|
与此注释相关的指标数组,每个指标都是一个字符串。 返回:成功 示例: |
|
时间戳,自注释应用起。 返回:成功 示例: |
|
时间戳,自注释结束起。 返回:成功 示例: |
|
创建的注释的标题。 返回:成功 示例: |