esphome_syslog icon indicating copy to clipboard operation
esphome_syslog copied to clipboard

A simple syslog component for esphome

Results 9 esphome_syslog issues
Sort by recently updated
recently updated
newest added

heya, i successfully used your syslog component before on a dingtian board (ethernet only) by using the known hack of just commenting out the if(WiFi.status() != WL_CONNECTED) line. "some" months...

Hi, I have an ESP32 bord that is connected via Ethernet instead of WIFI. So NO WIFI is configured, only Ehternet. First part of my esphome config is: ``` esphome:...

Any chance we can get this to work with: framework: type: esp-idf I need that for a different component (secplus_gdo) I believe.

It turns out to be fairly simple to just send the UDP packets directly, and the UDP socket handling can then be a whole lot more generic.

Hi, i got my logger set to NONE since i only want to send some defined things with: ``` - syslog.log: level: 7 tag: "SerialLogger" payload: "Device Status LED ON"...

Am I right in saying that this is sending logs in RFC3164 format rather than the newer RFC5424 format. Both seem to be supported in the underlying https://github.com/arcao/Syslog library. Could...

``` src/esphome/components/syslog/syslog_component.cpp: In member function 'virtual void esphome::syslog::SyslogComponent::setup()': src/esphome/components/syslog/syslog_component.cpp:45:10: error: cannot convert 'esphome::syslog::SyslogComponent::setup()::' to 'std::function&&' 45 | }); | ^ In file included from src/esphome/components/syslog/syslog_component.cpp:7: src/esphome/components/logger/logger.h:146:95: note: initializing argument 1...

Is there anyway to add ipaddr or hostname to the log entries sent? Esphome sending `{ _timestamp:1747331495368628, message:**** }` Others send `{ _timestamp:1747331775373704, appname:TechnitiumDNSServer, facility:local6, hostname:sark, message:***** procid:1, severity:info, version:1...

# Enhanced Syslog Component with Filtering and Advanced Configuration This PR significantly enhances the Syslog component with a comprehensive message filtering system, improved configuration options, and additional automation capabilities. The...