Searched full:syslog (Results 1 – 25 of 29) sorted by relevance
12
/Zephyr-latest/samples/net/syslog_net/ |
D | sample.yaml | 6 - syslog 8 description: syslog network backend 11 sample.net.syslog.with_timefuncs: 15 sample.net.syslog.ipv4_only: 23 sample.net.syslog.ipv6_only: 30 sample.net.syslog.no_autostart: 34 sample.net.syslog.runtime_srv_addr: 40 sample.net.syslog.wifi.nrf70dk:
|
D | README.rst | 1 .. zephyr:code-sample:: syslog-net 2 :name: Remote syslog 5 Enable a remote syslog service that sends syslog messages to a remote server 10 This sample application enables a remote syslog service that will 11 send syslog messages to a remote server, as configured in ``prj.conf``. 13 for more details about syslog protocol over UDP. 26 For configuring the remote IPv6 syslog server, set the following
|
D | Kconfig | 1 # Private config options for syslog-net sample app 6 mainmenu "Networking syslog sample application" 17 string "Syslog server IP address set at runtime" 19 Server address for the syslog server.
|
D | docker-test.sh | 15 start_docker "/usr/local/bin/syslog-receiver.py 2001:db8::2" || return $? 28 start_docker "/usr/local/bin/syslog-receiver.py 192.0.2.2" || return $?
|
D | prj.conf | 18 # Deferred mode is required, synchronous mode does not work with network syslog
|
/Zephyr-latest/subsys/logging/backends/ |
D | Kconfig.net | 11 Send syslog messages to network server. 12 See RFC 5424 (syslog protocol) and RFC 5426 (syslog over UDP) and 13 RFC 6587 (syslog over TCP) specifications for details. 22 length of the syslog message a lot. 68 originator submits messages to the syslog transport for sending. 82 string "Syslog server IP address" 100 int "Max syslog message size" 106 As each syslog message needs to fit to UDP packet, set this value 123 bool "Use DHCPv4 Log Server Option to configure syslog server" 126 When enabled the syslog server IP address is read from the DHCPv4
|
D | log_backend_net.c | 268 LOG_ERR("Cannot parse syslog server address"); in log_backend_net_set_addr()
|
/Zephyr-latest/tests/posix/xsi_system_logging/src/ |
D | main.c | 7 #include <zephyr/posix/syslog.h> 23 openlog("syslog", LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_LOCAL7); in ZTEST() 27 syslog(i, "syslog priority %d", prios[i]); in ZTEST()
|
/Zephyr-latest/lib/posix/options/ |
D | syslog.c | 11 #include <zephyr/posix/syslog.h> 48 void syslog(int priority, const char *format, ...) in syslog() function
|
D | Kconfig.xsi | 30 This option provides support for closelog(), openlog(), syslog(),
|
D | CMakeLists.txt | 160 zephyr_library_sources_ifdef(CONFIG_XSI_SYSTEM_LOGGING syslog.c)
|
/Zephyr-latest/tests/posix/common/ |
D | prj.conf | 24 # for syslog()
|
/Zephyr-latest/samples/net/syslog_net/src/ |
D | main.c | 20 BUILD_ASSERT(IS_ENABLED(CONFIG_LOG_BACKEND_NET), "syslog backend not enabled"); 35 * to be fully up before the syslog-net is able to work. in main()
|
/Zephyr-latest/include/zephyr/posix/ |
D | syslog.h | 58 void syslog(int priority, const char *message, ...);
|
/Zephyr-latest/tests/subsys/logging/log_output_net/src/ |
D | log_output_test.c | 48 BUILD_ASSERT(IS_ENABLED(CONFIG_LOG_BACKEND_NET), "syslog backend not enabled");
|
/Zephyr-latest/subsys/logging/ |
D | Kconfig.formatting | 213 It will be applied to all backends except the syslog net backend.
|
D | log_output.c | 451 /* The syslog output format is: in syslog_print()
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_output.h | 50 /** @brief Flag forcing syslog format specified in RFC 5424
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.7.rst | 1339 * The syslog server address can now be set with DHCPv4 option. This is done by 1531 * Syslog: 1535 * :c:func:`log_backend_net_set_ip` to initialize syslog net backend with IP 1537 * :c:func:`log_backend_net_start` to facilitate syslog net backend activation. 1539 * Added structured logging support to syslog net backend. 1540 * Added TCP support to syslog net backend. 1692 syslog server for the networking backend is set by the DHCPv4 Log Server Option (7). 1696 * Add support for syslog (POSIX).
|
D | release-notes-4.1.rst | 312 * Syslog:
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | monitor.c | 38 /* These defines follow the values used by syslog(2) */
|
/Zephyr-latest/samples/net/mqtt_sn_publisher/compose/ |
D | mosquitto.conf | 447 # Possible destinations are: stdout stderr syslog topic file dlt 451 # syslog uses the userspace syslog facility which usually ends up 489 # If using syslog logging (not on Windows), messages will be logged to the
|
/Zephyr-latest/subsys/net/lib/config/ |
D | init.c | 554 * and running before syslog messages can be sent to network. in net_config_init_app()
|
/Zephyr-latest/doc/services/portability/posix/option_groups/ |
D | index.rst | 658 syslog(),yes
|
/Zephyr-latest/scripts/west_commands/completion/ |
D | west-completion.bash | 290 # "--debug=false" => 3 words, "--log-opt syslog-facility=daemon" => 4 words
|
12