05 2017 档案
摘要:Git:https://github.com/influxdata/influxdb-python 帮助文档:http://influxdb-python.readthedocs.io/en/latest/examples.html 代码样例 influxdb结合grafana监控redis性能指标
阅读全文
摘要:grafana配置 官网介绍:http://docs.grafana.org/installation/configuration/ 以deb或者rpm安装的,则默认的配置文件是/etc/grafana/grafana.ini 所有在配置文件中的配置都可以通过环境变量来覆盖,使用的语法如下 1、pa
阅读全文
摘要:grafana-zabbix安装 官网安装介绍地址:https://grafana.com/plugins/alexanderzobnin-zabbix-app/installation 下载地址:https://grafana.com/api/plugins/alexanderzobnin-zab
阅读全文
摘要:nxlog 介绍 nxlog 是用 C 语言写的一个跨平台日志收集处理软件。其内部支持使用 Perl 正则和语法来进行数据结构化和逻辑判断操作。不过,其最常用的场景。是在 windows 服务器上,作为 logstash 的替代品运行。同时它也支持Linux、Android系统。 官方下载地址:ht
阅读全文
摘要:collect部署 1、安装 2、配置/etc/collectd.conf 3、启动服务 InfluxDB配置 1、修改文件/etc/influxdb/influxdb.conf 2、重启服务 3、查看服务端口 grafana配置 1、配置influxdb数据库 2、配置自定义Dashboards
阅读全文
摘要:InfluxDB基本概念 1、数据格式 在 InfluxDB 中,我们可以粗略的将要存入的一条数据看作一个虚拟的 key 和其对应的 value(field value)。格式如下: 虚拟的 key 包括以下几个部分: database, retention policy, measurement,
阅读全文
摘要:InfluxDB介绍 官网:https://www.influxdata.com/ 文档:https://docs.influxdata.com/influxdb/v1.2/introduction/ InfluxDB 是用Go语言编写的一个开源分布式时序、事件和指标数据库,无需外部依赖。 主要特色
阅读全文
摘要:worldPing插件安装 官网介绍:https://grafana.com/plugins/raintank-worldping-app/installation 插件下砸地址:https://grafana.com/api/plugins/raintank-worldping-app/versi
阅读全文
摘要:prometheus + grafana部署RabbitMQ监控 1、grafana导入dashboards https://grafana.com/dashboards/2121 2、export部署 下载:https://github.com/kbudde/rabbitmq_exporter/r
阅读全文
摘要:官方网址:https://prometheus.io/ GitHub网址:https://github.com/prometheus/prometheus 软件下载地址:https://prometheus.io/download/ 第三方中文介绍:https://github.com/104610
阅读全文
摘要:python实现windows Service服务程序 win32serviceutil.ServiceFramework是封装得很好的Windows服务框架,本文通过继承它来实现。 通过SvcDoRun方法,实现服务启动,运行服务内的业务代码。 通过SvcStop方法,停止服务。 WinPollM
阅读全文