跳转至

采集器「华为云-OBS」配置手册

阅读本文前,请先阅读:

使用本采集器前,必须安装「观测云集成 Core 核心包」及其配套的第三方依赖包

1. 配置结构

本采集器配置结构如下:

字段 类型 是否必须 说明
regions list 必须 所需采集数据的地域列表
regions[#] str 必须 地域 ID。如:'cn-north-4'
总表见附录

2. 配置示例

指定地域

采集华北-北京四地域对应项目的 obs 实例数据

Python
1
2
3
collector_configs = {
    'regions': [ 'cn-north-4' ]
}

配置过滤器(可选项)

本采集器脚本支持用户自定义过滤器,让用户通过对象属性筛选出目标资源。过滤器函数返回值为 True|False - True:目标资源需要被采集。 - False 目标资源不需要被采集

支持筛选的对象属性:

属性 描述
name Bucket 名称
es_version Bucket 类型
location 地域
Python
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# 示例:开启过滤器,根据对象的 location 和 name 属性过滤,配置格式如下:

def filter_bucket(bucket):
    '''
    return True|False
    '''
    bucket_location = bucket['location']
    bucket_name = bucket['name']
    if bucket_location in ['cn-north-4'] and bucket_name in ['xxx']:
        return True
    return False

###### Do not modify the following contents #####
from guance_integration__runner import Runner
import guance_huaweicloud_obs__main as main

def run():
    Runner(main.DataCollector(account, collector_configs, filters=[filter_bucket])).run()

3. 数据上报格式

数据正常同步后,可以在观测云的「基础设施-自定义对象」中查看数据。

上报的数据示例如下:

JSON
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{
  "measurement": "huaweicloud_obs",
  "tags": {
    "name"       : "test0-6153",
    "RegionId"   : "cn-north-4",
    "bucket_type": "OBJECT",
    "location"   : "cn-north-4"
  },
  "fields": {
    "create_date": "2022/06/16 10:51:16",
    "message"    : "{实例 JSON 数据}"
  }
}

部分参数说明如下

bucket_type(桶类型)取值含义

取值 说明
OBJECT 对象存储桶
POSIX 并行文件系统

tags、fields 中的字段可能会随后续更新有所变动

tags.name 值为桶名称,作为唯一标识

X. 附录

华为云 OBS「地域 ID」

请参考华为云官方文档: