566 questions
-3
votes
0
answers
34
views
Need help to understand "type" field in Drupal watchdog logs. How to enable core "security" and "update" type logs on watchdog? Not looking for custom
I am working on creating OCSF schemas for watchdog logs and I came across some types -
|User| |Access Denied| |System| |PHP| |Page Not Found| |Cron| |Security| |Form| |Update Manager|
I need to know ...
2
votes
0
answers
87
views
ESP32-C3 sketch immediately resets with TG1WDT_SYS_RST on minimal code
I am using an ESP32-C3 Dev Module on Windows 11 with Arduino IDE (ESP32 package 3.3.0). Minimal sketches, such as the following, immediately trigger a watchdog reset during startup:
void setup() {
...
0
votes
0
answers
33
views
Independent WatchDog Reset Source Not Detected in RCC->CSR Register stm32f103c8t6
I got Problem with Reset Sources in stm32f103c8t6. when an independent watchdog reset occurs, IWD Reset Flag in RCC->CSR (Bit29) is not set!
it works fine with SW and External and Power On Reset ...
0
votes
0
answers
15
views
Pass text from watchdog to PyQT application [duplicate]
The task is to get a GUI application that will track file system changes and write a log in real time to a text widget. Currently, file system changes are output only to the console.
Any ideas on how ...
0
votes
1
answer
194
views
ESP32 Audio by Phil Schatzmann leads to Watchdog Reboot and other issues
like the title suggests, I am using an esp32 and want to output a mp3 file from an SD-card via the i2s-Amp MAX98357a.
To begin with, I was trying to get an example from the library running, but it ...
0
votes
1
answer
90
views
CancellationToken Watchdog
My use case is: Server side long running gRPC Streaming method. I want that the server method stops executing if the client does not send a request within a given period. Say 5 minutes for example. ...
0
votes
1
answer
119
views
Window Watchdog (WWDG) wakeup interrupt doesn't work - STM32H7
I have 2 questions for window watchdog:
I have an STM32 micro and I want to just check my window watchdog and use the wakeup
interrupt for write some code before the system reset, But the interrupt ...
0
votes
0
answers
57
views
watchdog oncreated trigger twice
I am facing problem where watchdog oncreated event trigger twice when a new file is created.
Right now the script is monitoring a folder and when a new file is created or move to this folder it should ...
1
vote
2
answers
123
views
Python -i flag for production
I have a Python program that uses a watchdog, the watchdog is running on a separate thread. In the main thread, I have no code, so in order to keep the program running I'm using a while true sleep.
...
0
votes
1
answer
222
views
Linux using Watchdog to monitor a folder, do not detect file event
I'm using Watchdog for monitoring a specific folder. if there is a .txt file created, it needs some processing. But now something very strange has happened: when I manually dragged a .txt file into ...
2
votes
0
answers
3k
views
How to use intel TCO watchdog with iTCO_wdt?
I have an intel platform (Alder Lake N50) and I'm trying to use the chipset watchdog hardware.
My kernel is configured to have the iTCO_wdt module, when I insert it, the device is detected and /dev/...
0
votes
1
answer
191
views
Azure Services Connectivity Watchdog
I'm developing a system with a microservices architecture that relies on several Azure services for continuous inter-service communication. For context, here's a simplified overview of my setup:
...
1
vote
1
answer
42
views
config watchdog.net for ocelot api gateway
i want to config watchdog.net for ocelot API gateway
but when i login to dashboard watchdog and refresh for load data from database watchdog.net i had this error:
and this is my program.cs
builder....
0
votes
1
answer
593
views
Watchdog Timer Reset on ESP32 using Webservers
I am using an ESP232 devkit and i am trying to start an Access Point where i can enter WiFi data, which then is Used to setup a WiFi Webserver to control Data. But whenever i enter wrong wifi data, it ...
0
votes
1
answer
98
views
Flask (connexion) app not reloading monitored extra_files when building app as a python package
I have a python flask (using connexion) project that I need to reload if I change any of the files in the project.
This project is built into a python module using setup.py, then run.
I tried using ...
0
votes
0
answers
413
views
Run Python Script based on Watchdog once files in folder
I would like run my python script once a file in a certain folder is modified. To do this, I chose Watchdog.
First, I created an own project folder on my local machine and created and activated a venv....
0
votes
0
answers
828
views
Python App with Watchdog Observer in Docker Container Throws FileNotFoundError
I developed a tiny python app to constantly run -> utilizing the watchdog package's capabilities of checking for events. When I drop an event in one folder on my desktop, I want to subsequently ...
1
vote
1
answer
263
views
Reasons to enable/disable Icache
I found a piece of watchdog driver code for an i.MX RT 1xxx Arm Cortex-M7, before initializing the WDT, there was an Icache disable, and an enable just after the WDT initialization. Why is that done ...
2
votes
1
answer
2k
views
opcua-asyncio solution to error in watchdog loop
I have the problem that the connection between my client and an OPC UA server is interrupted every few days. The server publishes new values every two seconds, which the client receives via a pub sub ...
1
vote
1
answer
112
views
Why is my Python file watcher not writing the data from Parquet files to a data frame?
I have written a file watcher in Python that will watch a specific folder in my laptop and whenever a new parquet file is created in it, the watcher will pull it and read the data inside using Pandas ...
0
votes
0
answers
45
views
Watchdog doesn't recognize RPi.GPIO library
i am trying to write a watchdog that will monitor the changes in Main.py file and will restart the script if the error occures. The watchdog works on files that doesn't include RPi.GPIO library, but ...
0
votes
1
answer
240
views
Error using python watchdog lib. AttributeError: 'nt.DirEntry' object has no attribute 'rstrip'
from os import scandir, rename
from os.path import splitext, exists, join
from shutil import move
import time
import logging
from watchdog.observers import Observer
from watchdog.events import ...
0
votes
1
answer
1k
views
ESP32 websocket server: Task watchdog got triggered
The Microcontroller I am using is a ESP-WROOM-32:
board model: ESP32-ST
software: ESP-IDF
working on windows with arduino 1.8.19
includes:
#include <Arduino.h>
#include <iostream>
using ...
1
vote
1
answer
221
views
How to configure watchdog for the arduino Nano 33 BLE Sense board?
For the arduino Nano 33 BLE Sense board, the standard avr/wdt.h is not available. And it seems that no standard library provides it. How to use the watchdog system for this board ? I found no full ...
0
votes
1
answer
1k
views
Soft wdt reset on ESP8266 when using Speed Sensor
I'm on my personal project to create a esp8266 module that can read several sensor from a vehicle and it can sends data over mqtt. so I have written the code where I try to reading the speed sensor ...