记录到infloxdb的系统监视守护程序

metrics-collector的Python项目详细描述


#garena metrics collector

一个用于在[infloxdb]中记录服务器统计信息的系统监视守护进程(http://infloxdb.com/)。

\就像这样:

``sh
sudo pip安装garena_metrics_collector.zip
```

,然后您只需转到**/etc/garena_metrics_collector/**并编辑那里的**config.ini**文件,就应该准备好登录了。

假设您将配置文件重命名为**config.ini**,您可以继续运行以下命令:

``sh
garena_metrics_collector start
````

>守护进程将开始将所有内容记录到您指定的infloxdb服务器。


####Returns percentages of CPU allocation

|Key|Type|Description|
|---|----|-----------|
|**usage**|*int*|Percent used by user processes|


### **disk** - `system.disk`
#### Returns information about disk usage

|Key|Type|Description|
|---|----|-----------|
|**total**|*long*|Total available space *in 字节



<

<
<
返回系统负载information

|Key|Type|Description|
|---|----|-----------|
|**1m**|*int*|1 minute load average|
|**5m**|*int*|5 minute load average|
|**15m**|*int*|15 minute load average|


### **memory** - `system.memory`
#### Returns system memory allocations and usage

All of these values are calculated in *bytes*.

|Key|Type|Description|
|---|----|-----------|
|**total**|*long*|Total memory|
|**available**|*long*|Total uncached memory|
|**used**|*long*|Total cached memory|


### **net** - `system.net.*`
#### Returns network information seperated by interface

|Key|Type|Description|
|---|----|-----------|
|**bytes_tx**|*long*|Total bytes sent|
|**bytes_rx**|*long*|Total bytes received|
|**packets_rx**|*long*|Total packets received|
|**packets_tx**|*long*|Total packets sent|
|**errors_in**|*long*|Total incoming packet errors|
|**errors_out**|*long*|Total 传出数据包错误
**丢弃的数据包*long*传入的总丢弃的数据包
**丢弃的数据包*long*传出的总丢弃的数据包

自定义收集器
您可以继续并将收集器添加到**/etc/garena_metrics_collector/collectors/**中,我们将在周期中自动运行它们并报告它们值。

以下是一些示例:
**collectors/example.py**:

`` python
导入rand


类示例collector(collectorthread):
标识符='示例';这是必需的!

def collect(self,cache):
有状态缓存(跨集合)
如果最后一个不在缓存中:
reutrn[]

return[{
“measurement”:“your戋measurement”,
“fields”:{
“point”:rand.randint(0,100)-cache['last']
}
}
````
标记自动添加,包括服务器公共IP和主机名(可在主机名中配置)。

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java Android:在ListView上使用setOnItemClickListener   使用Netbeans 7.0连接到SQL Server的java正在挂起   java Spring3依赖项注入不适用于mule   java Flink SQL结果字段与LocalDateTime上请求的类型错误不匹配   java找不到文件的结尾   考虑到NamingStrategy,java有没有办法将字符串转换为JsonNode?   使用Netbeans/ant部署java(命令行)应用程序   java如何修复Spring引导多部分上载中的“所需请求部分不存在”   java在应用程序启动时通过引用获取映射未知目标实体属性异常   java形状旋转问题Java2d   Weblogic服务器上的java ExecuteAndWaitInterceptor问题   JavaSpringBoot:project将图像保存在错误的路径中,并且在使用IDEIntellji打开时不显示图像   类向java接口添加方法   Swing组件上的Java 7泛型   sql server如何从java获取用户名。sql。联系   java如何检查该行是否与正则表达式(regex)冲突?   java如何在spring引导安全中为计数失败登录设置验证登录为false   图像如何在Java中使PNG的白色透明?