motioneyeos icon indicating copy to clipboard operation
motioneyeos copied to clipboard

Feature Request

Open starbasessd opened this issue 3 years ago • 0 comments
trafficstars

Preliminary Docs

I confirm that I have read the CONTRIBUTING guide before opening this issue.

I confirm that I have read the FAQ before opening this issue.

motionEyeOS Version

I am running motionEyeOS version: Next Version.

Board Model

I am using the following board/model: Any RPi board.

Camera

I am using the following type of camera: Any.

My camera model is: Any.

Network Connection

My motionEyeOS unit is connected to the network via: Any.

Peripherals

I am using the following peripherals that I consider relevant to this issue:

  • Any

Log Files

I consider the following log files relevant to this issue:

  • This will create /data/log/info.log but could be included in messages.log or motioneye.log

I suggest additional info (besides the temperatures being logged currently) be included for diagnostics for Raspberry Pi. I include a sample setup to do this:

mkdir /data/usr nano /data/usr/status.sh copy and paste the following (minus the '- - - -')


#!/bin/bash temp=$(vcgencmd measure_temp) volt=$(vcgencmd measure_volts) throttled=$(vcgencmd get_throttled) echo $(/bin/date) $volt $temp $throttled >> /data/log/info.log


[ctrl]x y [enter] to save chmod 777 /data/usr/status.sh crontab -e (select 1 for editor)

add the following:

          • /data/usr/status.sh

[ctrl]x y [enter] to save

It should now save the info once a minute to /data/log/info.log with a time/date stamp.

starbasessd avatar Oct 16 '22 14:10 starbasessd