采集器「阿里云-mongodb 慢查询日志」配置手册
阅读本文前,请先阅读:
使用本采集器前,必须安装「观测云集成(核心包)」及其配套的第三方依赖包
本脚本的代码运行依赖 mongodb 实例对象采集,如果未配置 mongodb 的自定义对象采集,慢日志脚本无法采集到慢日志数据
1. 配置结构
本采集器配置结构如下:
字段 |
类型 |
是否必须 |
说明 |
regions |
list |
必须 |
所需采集的地域列表 |
regions[#] |
str |
必须 |
地域 ID。如:'cn-hangzhou' 总表见附录 |
2. 配置示例
指定地域
采集杭州、上海地域的数据
Python |
---|
| collector_configs = {
'regions': [ 'cn-hangzhou', 'cn-shanghai' ]
}
|
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
29
30 | {
"measurement": "aliyun_mongodb_slowlog",
"tags": {
"name" : "dds-bpxxxxxxxx",
"DBInstanceType" : "replicate",
"ChargeType" : "PrePaid",
"Engine" : "MongoDB",
"DBInstanceClass" : "dds.xxxxxxxx",
"DBInstanceId" : "dds-bpxxxxxxx",
"ZoneId" : "cn-hangzhou",
"RegionId" : "cn-hangzhou-h",
"VPCId" : "vpc-bpxxxxxxxx",
"EngineVersion" : "4.2",
"CurrentKernelVersion" : "mongodb_20210204_4.0.14",
"StorageEngine" : "WiredTiger",
"DBInstanceDescription": "业务系统",
"DBName" : "local",
"AccountName" : "脚本开发用阿里云账号",
"HostAddress" : "11.xxx.xxx.xx",
"TableName" : "oplog",
},
"fields": {
"SQLText" : "{SQL 语句}",
"ExecutionStartTime": "1",
"QueryTimes" : "1",
"ReturnRowCounts" : "1",
"KeysExamined" : "1",
"DocsExamined" : "1",
}
}
|
部分参数说明如下:
字段 |
类型 |
说明 |
QueryTimes |
Int |
执行时长,单位为毫秒 |
ExecutionStartTime |
Str |
执行开始时间,UTC时间 |
tags、fields 中的字段可能会随后续更新有所变动
fields.message 为 JSON 序列化后字符串
X. 附录
请参考阿里云官方文档: