使用RPi-Monitor监控、统计Guitar的运行状态

2024-02-04 07:10

本文主要是介绍使用RPi-Monitor监控、统计Guitar的运行状态,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

之前发在ickey社区上的一系列文章:

  1. 犹抱琵琶半遮面,无人知是荔枝来——unboxing & interview 一、二、三
  2. 葡萄美酒夜光杯,巧妇难为无米炊——资料与社区
  3. 一支穿云箭,板子要加散热片——系统监控与发热问题
  4. 念去去千里烟波,暮霭沉沉楚天阔——远程控制相关
  5. 竹喧归浣女,莲动小轻舟——延长板载eMMC寿命、优化性能

RPi-Monitor简介

前文 讲到如何通过一个shell脚本获取CPU状态和PMU温度,而RPi-Monitor基于perl,内置webserver,通过优化后对sd卡占用更少。由于其极强的可定制性与拓展性,你可以换用熟悉的Web Server,显示服务状态,甚至作为视频监控。最早是基于树莓派的项目,后来在XApple社区发现有人移植到蓮霧派,今天cnx-software也报道了,特此记录下来。之前都是使用的phpsysinfo

项目主页:http://rpi-experiences.blogspot.com/
Github主页: https://github.com/XavierBerger/RPi-Monitor

开始页面

67163219.jpg

统计页面

直接用cnx-software的图了

安装配置

添加rpimonitor源

sudo -s
apt-get install apt-transport-https ca-certificates
wget https://raw.githubusercontent.com/XavierBerger/RPi-Monitor/master/init/apt/sources.list.d/rpimonitor.list -O /etc/apt/sources.list.d/rpimonitor.list
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 2C0D3C0F

安装升级RPi-Monitor

apt-get update && apt-get install rpimonitor && apt-get upgrade

停止服务添加自定义模块

systemctl stop rpimonitor
nano /etc/rpimonitor/template/S500_ATC2603.conf

输入以下内容:

########################################################################
# Extract S500/ATC2603 information
#  Page: 1
#  Information               Status     Statistics
#  - cpu frequency           - yes      - yes
#  - cpu load 1, 5, 15       - yes      - yes
#  - cpu scaling governor    - yes      - no
#  - power in voltage        - yes      - yes
#  - power in consumption    - yes      - yes
#  - USB OTG voltage         - yes      - yes
#  - USB OTG consumption     - yes      - yes
#  - battery consumption     - yes      - yes
#  - total consumption       - yes      - yes
#  - power in current        - yes      - yes
#  - USB OTG current         - yes      - yes
#  - soc temperature         - yes      - yes
#  - pmu temperature         - yes      - yes
########################################################################
dynamic.1.name=cpu_frequency
dynamic.1.source=/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq
dynamic.1.regexp=(.*)
dynamic.1.postprocess=$1/1000
dynamic.1.rrd=GAUGEdynamic.2.name=load1,load5,load15
dynamic.2.source=/proc/loadavg
dynamic.2.regexp=^(\S+)\s(\S+)\s(\S+)
dynamic.2.postprocess=
dynamic.2.rrd=GAUGEdynamic.3.name=scaling_governor
dynamic.3.source=/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
dynamic.3.regexp=(.*)
dynamic.3.postprocess=
dynamic.3.rrd=dynamic.4.name=ac_voltage
dynamic.4.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/wall_voltage
dynamic.4.regexp=(.*)
dynamic.4.postprocess=sprintf("%.2f", $1/1000)
dynamic.4.rrd=GAUGEdynamic.5.name=ac_consumption
dynamic.5.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/wall_current
dynamic.5.regexp=(.*)
dynamic.5.postprocess=sprintf("%.2f", $1/153 * $this->{'dynamic'}->{'ac_voltage'})
dynamic.5.rrd=GAUGEdynamic.6.name=usb_voltage
dynamic.6.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/vbus_voltage
dynamic.6.regexp=(.*)
dynamic.6.postprocess=sprintf("%.2f", $1/1000)
dynamic.6.rrd=GAUGEdynamic.7.name=usb_consumption
dynamic.7.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/vbus_current
dynamic.7.regexp=(.*)
dynamic.7.postprocess=sprintf("%.2f", $1/1000 * $this->{'dynamic'}->{'usb_voltage'})
dynamic.7.rrd=GAUGEdynamic.8.name=battery_consumption
dynamic.8.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/bat_current
dynamic.8.regexp=(.*)
dynamic.8.postprocess=sprintf("%.2f", $1/1000)
dynamic.8.rrd=GAUGEdynamic.9.name=total_consumption
dynamic.9.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/bat_voltage
dynamic.9.regexp=(.*)
dynamic.9.postprocess=sprintf("%.2f", $1/1000 + $this->{'dynamic'}->{'ac_consumption'} + $this->{'dynamic'}->{'usb_consumption'})
dynamic.9.rrd=GAUGEdynamic.10.name=usb_current
dynamic.10.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/vbus_current
dynamic.10.regexp=(.*)
dynamic.10.postprocess=sprintf("%.2f", $1/1000)
dynamic.10.rrd=GAUGEdynamic.11.name=ac_current
dynamic.11.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/wall_current
dynamic.11.regexp=(.*)
dynamic.11.postprocess=sprintf("%.2f", $1/153)
dynamic.11.rrd=GAUGEdynamic.12.name=soc_temp
dynamic.12.source=/sys/devices/virtual/thermal/thermal_zone1/temp
dynamic.12.regexp=(.*)
dynamic.12.postprocess=sprintf("%.1f", $1/1000)
dynamic.12.rrd=GAUGEdynamic.13.name=pmu_temp
dynamic.13.source=/sys/devices/b0170000.i2c/i2c-0/0-0065/atc2603c-hwmon.0/ic_temperature
dynamic.13.regexp=(.*)
dynamic.13.postprocess=sprintf("%.1f", $1/1000)
dynamic.13.rrd=GAUGEweb.status.1.content.1.name=CPU
web.status.1.content.1.icon=cpu.png
web.status.1.content.1.line.1="Loads: <b>" + data.load1 + "</b> [1min] - <b>" + data.load5 + "</b> [5min] - <b>" + data.load15 + "</b> [15min]"
web.status.1.content.1.line.2="CPU frequency: <b>" + data.cpu_frequency + "MHz</b>  Governor: <b>" + data.scaling_governor + "</b>"web.status.1.content.2.name=PMU
web.status.1.content.2.icon=pmu.png
web.status.1.content.2.line.1="Total PMU Consumption: <b>" + data.total_consumption + " W</b>"
web.status.1.content.2.line.2="PWR in: <b>" + data.ac_consumption + " W</b> USB OTG in: <b>" + data.usb_consumption + " W</b> BATT in: <b>" + data.battery_consumption + " W</b>"web.status.1.content.3.name=Temperature
web.status.1.content.3.icon=cpu_temp.png
web.status.1.content.3.line.1=JustGageBar("SoC", "°C",0, data.soc_temp , 125,100,80,percentColors,70,85)+" "+JustGageBar("PMU", "°C",0, data.pmu_temp , 125,100,80,percentColors,70,85)web.statistics.1.content.1.name=Load / cpufreq / Consumption
web.statistics.1.content.1.graph.1=load1
web.statistics.1.content.1.graph.2=load5
web.statistics.1.content.1.graph.3=load15
web.statistics.1.content.1.graph.4=total_consumption
web.statistics.1.content.1.graph.5=cpu_frequency
web.statistics.1.content.1.ds_graph_options.load1.label=Load 1 min
web.statistics.1.content.1.ds_graph_options.load5.label=Load 5 min
web.statistics.1.content.1.ds_graph_options.load15.label=Load 15 min
web.statistics.1.content.1.ds_graph_options.total_consumption.label=Consumption (W)
web.statistics.1.content.1.ds_graph_options.cpu_frequency.label=Clock speed (MHz)
web.statistics.1.content.1.ds_graph_options.cpu_frequency.yaxis=2
web.statistics.1.content.1.graph_options.y2axis={ position: "right" }web.statistics.1.content.2.name=PMU current/voltage
web.statistics.1.content.2.graph.1=ac_voltage
web.statistics.1.content.2.graph.2=usb_voltage
web.statistics.1.content.2.graph.3=ac_current
web.statistics.1.content.2.graph.4=usb_current
web.statistics.1.content.2.graph.5=battery_consumption
web.statistics.1.content.2.ds_graph_options.ac_voltage.label=Voltage PWR in (V)
web.statistics.1.content.2.ds_graph_options.usb_voltage.label=Voltage USB OTG (V)
web.statistics.1.content.2.ds_graph_options.ac_current.label=Current PWR in (A)
web.statistics.1.content.2.ds_graph_options.usb_current.label=Current USB OTG (mA)
web.statistics.1.content.2.ds_graph_options.battery_consumption.label=Consumption Battery (W)
web.statistics.1.content.2.ds_graph_options.ac_voltage.yaxis=1
web.statistics.1.content.2.ds_graph_options.usb_voltage.yaxis=1
web.statistics.1.content.2.ds_graph_options.ac_current.yaxis=2
web.statistics.1.content.2.ds_graph_options.usb_current.yaxis=2
web.statistics.1.content.2.ds_graph_options.battery_consumption.yaxis=1
web.statistics.1.content.2.graph_options.y1axis={ position: "left", min: 1.5, max: 11 }
web.statistics.1.content.2.graph_options.y2axis={ position: "right" }web.statistics.1.content.3.name=Temperature / Consumption
web.statistics.1.content.3.graph.1=pmu_temp
web.statistics.1.content.3.graph.2=soc_temp
web.statistics.1.content.3.graph.3=total_consumption
web.statistics.1.content.3.ds_graph_options.pmu_temp.label=PMU temperature (°C)
web.statistics.1.content.3.ds_graph_options.soc_temp.label=SoC temperature (°C)
web.statistics.1.content.3.ds_graph_options.total_consumption.label=Consumption (W)
web.statistics.1.content.3.ds_graph_options.total_consumption.yaxis=2
web.statistics.1.content.3.graph_options.y1axis={ position: "left", min: 0, max: 125 }
web.statistics.1.content.3.graph_options.y2axis={ position: "right" }
nano /etc/rpimonitor/template/lemaker_guitar.conf

添加以下内容,创建主配置文件,根据自己需要启用|禁用模块:

web.page.icon='img/logo.png'
web.page.menutitle='RPi-Monitor  <sub>('+data.hostname+')</sub>'
web.page.pagetitle='RPi-Monitor ('+data.hostname+')'web.status.1.name=lemaker_guitar
web.statistics.1.name=lemaker_guitarinclude=/etc/rpimonitor/template/version.conf
include=/etc/rpimonitor/template/uptime.conf
include=/etc/rpimonitor/template/S500_ATC2603.conf
include=/etc/rpimonitor/template/memory.conf
include=/etc/rpimonitor/template/swap.conf
include=/etc/rpimonitor/template/sdcard.conf
include=/etc/rpimonitor/template/network.conf
include=/etc/rpimonitor/template/wlan.conf

创建软链接:

ln -sf /etc/rpimonitor/template/lemaker_guitar.conf /etc/rpimonitor/data.conf

重启rpimonitor服务

systemctl start rpimonitor

访问网页前端

假如Guitar的IP为192.168.1.111,那么在浏览器里输入192.168.1.111:8888 即可打开状态页面。经过配置可以远程访问Guitar之后,无论身处何地都可以及时监控Guitar的运行状态。
软件使用GPL3 协议,所以可以对界面进行一些改造。

自定义功能与添加模块

使用配置文件生成助手

2.6版本之后引入了一个新工具:RPi-Monitor交互式配置文件生成助手 (RPi-Monitor Interactive Configuration Helper),通过运行

rpimonitord -i

可以非常方便地创建自己的监视点。Via

添加传感器数据

以DHT温湿度传感器为例,可以监视温湿度变化,绘制折线图,修改之后可以显示诸多传感器数值。Via
官网截图

使用标签显示状态

2.7版本之后引入标签显示服务状态的功能,支持6种颜色:
61139011.jpg
效果如图所示:
89729018.jpg
根据模板修改/etc/rpimonitor/template/services.conf文件即可。稍加改造可以实现更多功能。
注意:最新2.10版/etc/rpimonitor/template/services.conf文件最后一行少一个")",需要自己补上。
nano中可通过Ctrl+E快速跳至行尾。Via

进阶用法

其他进阶用法及自定义功能。Via

其他模板

  • 全志A10/A13/A20
  • 全志H3
  • A64 (Pine64)
  • A83T/H8 (Banana Pi M3, Cubietruck +)
    via

    总结

转载于:https://www.cnblogs.com/sjqlwy/p/guitar_monitor.html

这篇关于使用RPi-Monitor监控、统计Guitar的运行状态的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/676706

相关文章

Python使用Tenacity一行代码实现自动重试详解

《Python使用Tenacity一行代码实现自动重试详解》tenacity是一个专为Python设计的通用重试库,它的核心理念就是用简单、清晰的方式,为任何可能失败的操作添加重试能力,下面我们就来看... 目录一切始于一个简单的 API 调用Tenacity 入门:一行代码实现优雅重试精细控制:让重试按我

MySQL中EXISTS与IN用法使用与对比分析

《MySQL中EXISTS与IN用法使用与对比分析》在MySQL中,EXISTS和IN都用于子查询中根据另一个查询的结果来过滤主查询的记录,本文将基于工作原理、效率和应用场景进行全面对比... 目录一、基本用法详解1. IN 运算符2. EXISTS 运算符二、EXISTS 与 IN 的选择策略三、性能对比

使用Python构建智能BAT文件生成器的完美解决方案

《使用Python构建智能BAT文件生成器的完美解决方案》这篇文章主要为大家详细介绍了如何使用wxPython构建一个智能的BAT文件生成器,它不仅能够为Python脚本生成启动脚本,还提供了完整的文... 目录引言运行效果图项目背景与需求分析核心需求技术选型核心功能实现1. 数据库设计2. 界面布局设计3

SQL Server跟踪自动统计信息更新实战指南

《SQLServer跟踪自动统计信息更新实战指南》本文详解SQLServer自动统计信息更新的跟踪方法,推荐使用扩展事件实时捕获更新操作及详细信息,同时结合系统视图快速检查统计信息状态,重点强调修... 目录SQL Server 如何跟踪自动统计信息更新:深入解析与实战指南 核心跟踪方法1️⃣ 利用系统目录

使用IDEA部署Docker应用指南分享

《使用IDEA部署Docker应用指南分享》本文介绍了使用IDEA部署Docker应用的四步流程:创建Dockerfile、配置IDEADocker连接、设置运行调试环境、构建运行镜像,并强调需准备本... 目录一、创建 dockerfile 配置文件二、配置 IDEA 的 Docker 连接三、配置 Do

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

python使用try函数详解

《python使用try函数详解》Pythontry语句用于异常处理,支持捕获特定/多种异常、else/final子句确保资源释放,结合with语句自动清理,可自定义异常及嵌套结构,灵活应对错误场景... 目录try 函数的基本语法捕获特定异常捕获多个异常使用 else 子句使用 finally 子句捕获所

深度解析Nginx日志分析与499状态码问题解决

《深度解析Nginx日志分析与499状态码问题解决》在Web服务器运维和性能优化过程中,Nginx日志是排查问题的重要依据,本文将围绕Nginx日志分析、499状态码的成因、排查方法及解决方案展开讨论... 目录前言1. Nginx日志基础1.1 Nginx日志存放位置1.2 Nginx日志格式2. 499

SpringBoot监控API请求耗时的6中解决解决方案

《SpringBoot监控API请求耗时的6中解决解决方案》本文介绍SpringBoot中记录API请求耗时的6种方案,包括手动埋点、AOP切面、拦截器、Filter、事件监听、Micrometer+... 目录1. 简介2.实战案例2.1 手动记录2.2 自定义AOP记录2.3 拦截器技术2.4 使用Fi

C++11右值引用与Lambda表达式的使用

《C++11右值引用与Lambda表达式的使用》C++11引入右值引用,实现移动语义提升性能,支持资源转移与完美转发;同时引入Lambda表达式,简化匿名函数定义,通过捕获列表和参数列表灵活处理变量... 目录C++11新特性右值引用和移动语义左值 / 右值常见的左值和右值移动语义移动构造函数移动复制运算符