采集器「腾讯云-EIP」配置手册
阅读本文前,请先阅读:
使用本采集器前,必须安装「观测云集成 Core 核心包」及其配套的第三方依赖包
1. 配置结构
本采集器配置结构如下:
字段 |
类型 |
是否必须 |
说明 |
regions |
list |
必须 |
所需采集的地域列表 |
regions[#] |
str |
必须 |
地域 ID。如:'ap-shanghai' 总表见附录 |
2. 配置示例
指定地域
采集上海、广州地域的数据
Python |
---|
| collector_configs = {
'regions': [ 'ap-shanghai', 'ap-guangzhou' ]
}
|
配置过滤器(可选项)
本采集器脚本支持用户自定义过滤器,让用户通过对象属性筛选出目标资源。过滤器函数返回值为 True|False
- True:目标资源需要被采集。
- False 目标资源不需要被采集
支持筛选的对象属性:
属性 |
描述 |
AddressId |
EIP 的 ID |
AddressName |
EIP 名称 |
AddressStatus |
EIP 状态 |
AddressIp |
外网 IP 地址 |
AddressType |
实例名称 |
InternetServiceProvider |
弹性公网 IP 的运营商信息 |
InternetChargeType |
弹性公网 IP 的网络计费模式 |
Python |
---|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | # 示例:开启过滤器,根据对象的 AddressId,AddressStatus 属性过滤,配置格式如下:
# Instance filter
def filter_instance(instance):
'''
采集 AddressId 为 eip-xxxxxxx, eip-yyyyyyy 且 AddressStatus 为 UNBIND (已解绑)的 EIP 实例
'''
address_id = instance['AddressId']
address_status = instance['AddressStatus']
if address_id in ['eip-xxxxxxx', 'eip-yyyyyyy'] and address_status in ['UNBIND']:
return True
return False
from guance_integration__runner import Runner
import guance_tencentcloud_eip__main as main
@DFF.API('TencentCloud-EIP Collection', timeout=3600, fixed_crontab='*/15 * * * *')
def run():
Runner(main.DataCollector(account, collector_configs, filters=[filter_instance])).run()
|
3. 数据上报格式
数据正常同步后,可以在观测云的「基础设施-资源目录」中查看数据。
上报的数据示例如下:
JSON |
---|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 | {
"measurement": "tencentcloud_eip",
"tags": {
"name" : "eip-xxxxxx",
"RegionId" : "ap-shanghai",
"AddressId" : "ap-shanghai-1",
"AddressName" : "xxxx",
"AddressStatus" : "BIND",
"AddressIp" : "119.45.172.244",
"AddressType" : "EIP",
"InternetServiceProvider" : "BGP",
"InternetChargeType" : "TRAFFIC_POSTPAID_BY_HOUR"
},
"fields": {
"IsEipDirectConnection" : False,
"IsArrears" : False,
"IsBlocked" : False,
"InstanceId" : "ins-mmxxxx",
"NetworkInterfaceId" : "eni-8xxxxx",
"PrivateAddressIp" : "10.206.0.16",
"CreatedTime" : "2024-06-11T08:10:57Z",
"CascadeRelease" : False,
"LocalBgp" : False,
"Bandwidth" : 1
"EipAlgType" : "{EIP ALG开启的协议类型}"
"message" : "{实例 JSON 数据}"
}
}
|
tags、fields 中的字段可能会随后续更新有所变动
fields.message、fields.EipAlgType 均为 JSON 序列化后字符串
X. 附录
请参考腾讯云官方文档: