├── .astylerc ├── .ctags ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── 10-bug-report.md │ ├── 20-documentation-issue.md │ └── 30-feature-request.md ├── pull_request_template.md └── workflows │ ├── axosyslog-builder.yml │ ├── axosyslog-charts-lint.yml │ ├── axosyslog-charts-release.yml │ ├── axosyslog-docker.yml │ ├── axosyslog-image-registry-cleanup.yml │ ├── axosyslog-image-snapshot.yml │ ├── axosyslog-image-stable-rebuild.yml │ ├── axosyslog-image-test.yml │ ├── axosyslog-nightly.yml │ ├── axosyslog-stable.yml │ ├── check-cfg-grammar-changes.yml │ ├── comment-cfg-grammar-changes.yml │ ├── comment-on-version-bump-pr.yml │ ├── create-packages.yml │ ├── dbld-images.yml │ ├── devshell.yml │ ├── devshell_light_valgrind.yml │ ├── draft-release.yml │ ├── gh-tools.sh │ ├── index-packages.yml │ ├── macos.yml │ ├── package-indexer-checks.yml │ ├── packages.yml │ ├── release-light.yml │ ├── test-apt-packages.yml │ ├── trigger-index-packages.yml │ ├── trigger-tests-on-packages.yml │ ├── upload-packages.yml │ └── version-bump.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── DCO.md ├── DEVELOPMENT-GUIDE.md ├── GPL.txt ├── Makefile.am ├── NEWS.md ├── README.md ├── VERSION.txt ├── autogen.sh ├── autotools ├── Mk │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── find-top-builddir.sh │ ├── lex-rules.am │ ├── populate-makefiles.sh │ ├── python-venv.am │ └── subdir.mk ├── dist.conf.in ├── m4 │ ├── _ax_valgrind_check.m4 │ ├── ax_require_defined.m4 │ ├── check_java_support.m4 │ └── m4_esyscmd_s.m4 ├── sub-configure.sh ├── syslog-ng-native-connector.pc.in └── syslog-ng.pc.in ├── charts ├── Makefile.am └── axosyslog │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── collector-config.yaml │ ├── collector-daemonset.yaml │ ├── podmonitor.yaml │ ├── scc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── syslog-config.yaml │ └── syslog-statefulset.yaml │ └── values.yaml ├── cmake ├── Makefile.am ├── Modules │ ├── CheckCreds.cmake │ ├── CheckIPv6.cmake │ ├── CheckSockaddrStorage.cmake │ ├── CheckStructMember.cmake │ ├── ExternalIVYKIS.cmake │ ├── FindCurl.cmake │ ├── FindESMTP.cmake │ ├── FindFLEX.cmake │ ├── FindGLIB.cmake │ ├── FindGettext.cmake │ ├── FindGperf.cmake │ ├── FindGradle.cmake │ ├── FindHiredis.cmake │ ├── FindIVYKIS.cmake │ ├── FindInotify.cmake │ ├── FindJSONC.cmake │ ├── FindLIBBPF.cmake │ ├── FindLIBCAP.cmake │ ├── FindLIBDBI.cmake │ ├── FindLIBMAXMINDDB.cmake │ ├── FindLIBNET.cmake │ ├── FindLIBUNWIND.cmake │ ├── FindNETSNMP.cmake │ ├── FindPackageMessage.cmake │ ├── FindPoetry.cmake │ ├── FindRabbitMQ.cmake │ ├── FindResolv.cmake │ ├── FindRiemannClient.cmake │ ├── FindWRAP.cmake │ ├── Findcriterion.cmake │ ├── FindgRPC.cmake │ ├── Findrdkafka.cmake │ ├── Findsystemd.cmake │ ├── GenerateYFromYm.cmake │ ├── LibFindMacros.cmake │ └── ProtobufGenerateCpp.cmake ├── add_module.cmake ├── add_tests.cmake ├── external_or_find_package.cmake ├── module_switch.cmake ├── openssl_functions.cmake ├── print_config_summary.cmake ├── python_build_venv.cmake ├── syslog-ng-config.h.in ├── syslog-ng-native-connector.pc.cmake ├── syslog-ng.pc.cmake └── syslog_ng_core_java_native.cmake ├── configure.ac ├── contrib ├── Brewfile ├── Makefile.am ├── README ├── README.syslog-ng-debun ├── aix-packaging │ └── syslog-ng.conf ├── apparmor │ └── opt.syslog-ng.sbin.syslog-ng ├── com.syslog-ng.syslog-ng.plist ├── cygwin-packaging │ ├── cygwin-postinstall │ ├── syslog-ng-config │ └── syslog-ng.sh ├── freebsd-packaging │ ├── syslog-ng.conf.example │ └── syslog-ng.rc.d ├── lfs-packaging │ ├── Makefile.lfs │ ├── README.lfs │ └── syslog-ng.init.lfs ├── openbsd-packaging │ └── syslog-ng.conf ├── relogger.pl ├── scripts │ └── config-graph-json-to-dot.py ├── selinux │ ├── README │ ├── labels.txt │ ├── src │ │ ├── root_safe │ │ │ ├── syslog_ng.el5.fc.in │ │ │ ├── syslog_ng.el6.fc.in │ │ │ └── syslog_ng.el789.fc.in │ │ ├── root_unsafe │ │ │ ├── syslog_ng.el5.fc.in │ │ │ ├── syslog_ng.el6.fc.in │ │ │ └── syslog_ng.el789.fc.in │ │ ├── syslog_ng.el5.te.in │ │ ├── syslog_ng.el6.0to4.te.in │ │ ├── syslog_ng.el6.5up.te.in │ │ ├── syslog_ng.el7.te.in │ │ ├── syslog_ng.el8.te.in │ │ ├── syslog_ng.el9.te.in │ │ └── syslog_ng.module.version │ └── syslog_ng.sh ├── syslog-mc ├── syslog-ng-debun ├── syslog-ng.conf.doc ├── syslog2ng └── systemd │ ├── syslog-ng@.service │ └── syslog-ng@default ├── dbld ├── .dockerignore ├── Makefile.am ├── README.md ├── bootstrap ├── build.manifest ├── build │ └── .gitignore ├── builddeps ├── deb ├── distcheck ├── functions.sh ├── generate-debian-directory ├── generate-rpm-specfile ├── images │ ├── README.md │ ├── almalinux-8.dockerfile │ ├── almalinux-9.dockerfile │ ├── almalinux.prepare.sh │ ├── debian-bookworm.dockerfile │ ├── debian-bullseye.dockerfile │ ├── debian-sid.dockerfile │ ├── debian-testing.dockerfile │ ├── debian-trixie.dockerfile │ ├── debian.prepare.sh │ ├── devshell.dockerfile │ ├── entrypoint.sh │ ├── fake-sudo.sh │ ├── fedora-41.dockerfile │ ├── fedora-42.dockerfile │ ├── fedora.prepare.sh │ ├── gosu.pubkey │ ├── hooks │ │ └── build │ ├── tarball.dockerfile │ ├── ubuntu-focal.dockerfile │ ├── ubuntu-jammy.dockerfile │ ├── ubuntu-noble.dockerfile │ ├── ubuntu-plucky.dockerfile │ ├── ubuntu.prepare.sh │ └── yum-builddep.sha1 ├── install │ └── .gitignore ├── make ├── package ├── packages.manifest ├── pip_packages.manifest ├── pkg-tarball ├── prepare-image-build ├── prepare-release ├── release │ └── .gitignore ├── rpm ├── rules ├── shell ├── tarball ├── tarball-changes.ignore └── validate-release-version ├── dev-requirements.txt ├── doc ├── ChangeLog.0 ├── ChangeLog.1 ├── ChangeLog.2 ├── Makefile.am ├── axoflow-logo-color.svg ├── axoflow-logo-white.svg ├── axosyslog-white.svg ├── axosyslog.svg ├── man │ ├── .gitignore │ ├── dqtool.1.xml │ ├── loggen.1.xml │ ├── pdbtool.1.xml │ ├── persist-tool.1.xml │ ├── secure-logging.7.xml │ ├── slogencrypt.1.xml │ ├── slogkey.1.xml │ ├── slogverify.1.xml │ ├── syslog-ng-ctl.1.xml │ ├── syslog-ng-debun.1.xml │ ├── syslog-ng.8.xml │ ├── syslog-ng.conf.5.xml │ └── update-manpages.sh ├── security │ ├── bof-2002-09-27.txt │ └── dos-2000-11-22.txt └── xsd │ ├── examples │ └── patterndb-1.xml │ ├── patterndb-1.xsd │ ├── patterndb-2.xsd │ ├── patterndb-3.xsd │ ├── patterndb-4.xsd │ ├── patterndb-5.xsd │ └── patterndb-6.xsd ├── docker ├── Makefile.am ├── apkbuild │ └── axoflow │ │ ├── axosyslog │ │ ├── APKBUILD │ │ └── axosyslog-python3.post-install │ │ └── rootbld-repositories ├── axosyslog-builder.dockerfile ├── axosyslog.dockerfile └── tests │ └── smoke.sh ├── lib ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── ack-tracker │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── ack_tracker.h │ ├── ack_tracker_factory.c │ ├── ack_tracker_factory.h │ ├── ack_tracker_types.h │ ├── batched_ack_tracker.c │ ├── batched_ack_tracker.h │ ├── batched_ack_tracker_factory.c │ ├── bookmark.h │ ├── consecutive_ack_record_container.h │ ├── consecutive_ack_record_container_dynamic.c │ ├── consecutive_ack_record_container_static.c │ ├── consecutive_ack_tracker.c │ ├── consecutive_ack_tracker.h │ ├── consecutive_ack_tracker_factory.c │ ├── instant_ack_tracker.c │ ├── instant_ack_tracker.h │ ├── instant_ack_tracker_bookmarkless.c │ ├── instant_ack_tracker_bookmarkless_factory.c │ ├── instant_ack_tracker_factory.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_ack_tracker_factory.c │ │ ├── test_batched_ack_tracker.c │ │ ├── test_consecutive_ack_record_container.c │ │ └── test_instant_ack_tracker.c ├── afinter.c ├── afinter.h ├── alarms.c ├── alarms.h ├── apphook.c ├── apphook.h ├── atomic-gssize.h ├── atomic.h ├── block-ref-grammar.ym ├── block-ref-parser.c ├── block-ref-parser.h ├── cache.c ├── cache.h ├── cfg-args.c ├── cfg-args.h ├── cfg-block-generator.c ├── cfg-block-generator.h ├── cfg-block.c ├── cfg-block.h ├── cfg-grammar-internal.c ├── cfg-grammar-internal.h ├── cfg-grammar.y ├── cfg-graph.c ├── cfg-graph.h ├── cfg-lex.l ├── cfg-lexer-subst.c ├── cfg-lexer-subst.h ├── cfg-lexer.c ├── cfg-lexer.h ├── cfg-parser.c ├── cfg-parser.h ├── cfg-path.c ├── cfg-path.h ├── cfg-persist.c ├── cfg-persist.h ├── cfg-source.c ├── cfg-source.h ├── cfg-tree.c ├── cfg-tree.h ├── cfg.c ├── cfg.h ├── children.c ├── children.h ├── compat │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── compat.h │ ├── cpp-end.h │ ├── cpp-start.h │ ├── curl.h │ ├── getent-generic.c │ ├── getent-generic.h │ ├── getent-openbsd.c │ ├── getent-openbsd.h │ ├── getent-sun.c │ ├── getent-sun.h │ ├── getent.h │ ├── getline.c │ ├── getutent.c │ ├── getutent.h │ ├── glib.c │ ├── glib.h │ ├── inet_aton.c │ ├── inttypes.h │ ├── json.h │ ├── lfs.h │ ├── memrchr.c │ ├── openssl_support.c │ ├── openssl_support.h │ ├── pcre.h │ ├── pio.c │ ├── pio.h │ ├── pow2.h │ ├── socket.h │ ├── strcasestr.c │ ├── string.h │ ├── strnlen.c │ ├── strtok_r.c │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_strtok_r.c │ ├── time.c │ ├── time.h │ └── un.h ├── console.c ├── console.h ├── control │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── control-command-thread.c │ ├── control-command-thread.h │ ├── control-commands.c │ ├── control-commands.h │ ├── control-connection.c │ ├── control-connection.h │ ├── control-main.c │ ├── control-main.h │ ├── control-server-unix.c │ ├── control-server-unix.h │ ├── control-server.c │ ├── control-server.h │ ├── control.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── control-server-dummy.c │ │ ├── control-server-dummy.h │ │ └── test_control_cmds.c ├── crypto.c ├── crypto.h ├── debugger │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── debugger-main.c │ ├── debugger-main.h │ ├── debugger.c │ ├── debugger.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test-debugger.c │ ├── tracer.c │ └── tracer.h ├── dnscache.c ├── dnscache.h ├── driver.c ├── driver.h ├── dynamic-window-pool.c ├── dynamic-window-pool.h ├── dynamic-window.c ├── dynamic-window.h ├── eventlog │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── CREDITS │ ├── ChangeLog │ ├── ChangeLog.0 │ ├── NEWS │ ├── doc │ │ ├── API.txt │ │ └── DESIGN.txt │ ├── src │ │ ├── Makefile.am │ │ ├── evt_internals.h │ │ ├── evtctx.c │ │ ├── evtfmt.c │ │ ├── evtlog.h │ │ ├── evtmaps.h │ │ ├── evtout.c │ │ ├── evtrec.c │ │ ├── evtstr.c │ │ ├── evtsyslog.c │ │ └── evttags.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── evt_tag_mem.c │ │ ├── evtfmt.c │ │ ├── evtrec.c │ │ └── evtsyslog.c ├── fdhelpers.c ├── fdhelpers.h ├── file-monitor.c ├── file-monitor.h ├── file-perms.c ├── file-perms.h ├── filter │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── filter-call.c │ ├── filter-call.h │ ├── filter-cmp.c │ ├── filter-cmp.h │ ├── filter-expr-grammar.ym │ ├── filter-expr-parser.c │ ├── filter-expr-parser.h │ ├── filter-expr.c │ ├── filter-expr.h │ ├── filter-in-list.c │ ├── filter-in-list.h │ ├── filter-netmask.c │ ├── filter-netmask.h │ ├── filter-netmask6.c │ ├── filter-netmask6.h │ ├── filter-op.c │ ├── filter-op.h │ ├── filter-pipe.c │ ├── filter-pipe.h │ ├── filter-pri.c │ ├── filter-pri.h │ ├── filter-re.c │ ├── filter-re.h │ ├── filter-tags.c │ ├── filter-tags.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── filters-in-list │ │ ├── Makefile.am │ │ ├── empty.list │ │ ├── ip.list │ │ ├── long_line.list │ │ ├── lot_of_lines.list │ │ └── test.list │ │ ├── test_filter_call.c │ │ ├── test_filters_common.c │ │ ├── test_filters_common.h │ │ ├── test_filters_facility.c │ │ ├── test_filters_fop.c │ │ ├── test_filters_fop_cmp.c │ │ ├── test_filters_in_list.c │ │ ├── test_filters_level_new.c │ │ ├── test_filters_netmask.c │ │ ├── test_filters_netmask6.c │ │ ├── test_filters_regexp.c │ │ └── test_filters_statistics.c ├── filterx │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── expr-arithmetic-operators.c │ ├── expr-arithmetic-operators.h │ ├── expr-assign.c │ ├── expr-assign.h │ ├── expr-boolalg.c │ ├── expr-boolalg.h │ ├── expr-break.c │ ├── expr-break.h │ ├── expr-comparison.c │ ├── expr-comparison.h │ ├── expr-compound.c │ ├── expr-compound.h │ ├── expr-condition.c │ ├── expr-condition.h │ ├── expr-done.c │ ├── expr-done.h │ ├── expr-drop.c │ ├── expr-drop.h │ ├── expr-function.c │ ├── expr-function.h │ ├── expr-get-subscript.c │ ├── expr-get-subscript.h │ ├── expr-getattr.c │ ├── expr-getattr.h │ ├── expr-isset.c │ ├── expr-isset.h │ ├── expr-literal-container.c │ ├── expr-literal-container.h │ ├── expr-literal.c │ ├── expr-literal.h │ ├── expr-membership.c │ ├── expr-membership.h │ ├── expr-null-coalesce.c │ ├── expr-null-coalesce.h │ ├── expr-plus.c │ ├── expr-plus.h │ ├── expr-regexp-common.c │ ├── expr-regexp-common.h │ ├── expr-regexp-search.c │ ├── expr-regexp-search.h │ ├── expr-regexp-subst.c │ ├── expr-regexp-subst.h │ ├── expr-regexp.c │ ├── expr-regexp.h │ ├── expr-set-subscript.c │ ├── expr-set-subscript.h │ ├── expr-setattr.c │ ├── expr-setattr.h │ ├── expr-string-operators.c │ ├── expr-string-operators.h │ ├── expr-switch.c │ ├── expr-switch.h │ ├── expr-template.c │ ├── expr-template.h │ ├── expr-unset.c │ ├── expr-unset.h │ ├── expr-variable.c │ ├── expr-variable.h │ ├── filterx-config.c │ ├── filterx-config.h │ ├── filterx-dpath.c │ ├── filterx-dpath.h │ ├── filterx-error.c │ ├── filterx-error.h │ ├── filterx-eval.c │ ├── filterx-eval.h │ ├── filterx-expr.c │ ├── filterx-expr.h │ ├── filterx-globals.c │ ├── filterx-globals.h │ ├── filterx-grammar.ym │ ├── filterx-mapping.c │ ├── filterx-mapping.h │ ├── filterx-metrics-labels.c │ ├── filterx-metrics-labels.h │ ├── filterx-metrics.c │ ├── filterx-metrics.h │ ├── filterx-object.c │ ├── filterx-object.h │ ├── filterx-parser.c │ ├── filterx-parser.h │ ├── filterx-pipe.c │ ├── filterx-pipe.h │ ├── filterx-plist.c │ ├── filterx-plist.h │ ├── filterx-private.c │ ├── filterx-private.h │ ├── filterx-ref.c │ ├── filterx-ref.h │ ├── filterx-scope.c │ ├── filterx-scope.h │ ├── filterx-sequence.c │ ├── filterx-sequence.h │ ├── filterx-variable.c │ ├── filterx-variable.h │ ├── filterx-weakrefs.c │ ├── filterx-weakrefs.h │ ├── func-cache-json-file.c │ ├── func-cache-json-file.h │ ├── func-dict-to-pairs.c │ ├── func-dict-to-pairs.h │ ├── func-failure-info.c │ ├── func-failure-info.h │ ├── func-flags.h │ ├── func-flatten.c │ ├── func-flatten.h │ ├── func-istype.c │ ├── func-istype.h │ ├── func-keys.c │ ├── func-keys.h │ ├── func-len.c │ ├── func-len.h │ ├── func-repr.c │ ├── func-repr.h │ ├── func-sdata.c │ ├── func-sdata.h │ ├── func-set-fields.c │ ├── func-set-fields.h │ ├── func-set-pri.c │ ├── func-set-pri.h │ ├── func-str-transform.c │ ├── func-str-transform.h │ ├── func-str.c │ ├── func-str.h │ ├── func-timestamp.c │ ├── func-timestamp.h │ ├── func-unset-empties.c │ ├── func-unset-empties.h │ ├── func-vars.c │ ├── func-vars.h │ ├── json-repr.c │ ├── json-repr.h │ ├── object-datetime.c │ ├── object-datetime.h │ ├── object-dict.c │ ├── object-dict.h │ ├── object-extractor.h │ ├── object-list.c │ ├── object-list.h │ ├── object-message-value.c │ ├── object-message-value.h │ ├── object-metrics-labels.c │ ├── object-metrics-labels.h │ ├── object-null.c │ ├── object-null.h │ ├── object-primitive.c │ ├── object-primitive.h │ ├── object-string.c │ ├── object-string.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_builtin_functions.c │ │ ├── test_expr_comparison.c │ │ ├── test_expr_compound.c │ │ ├── test_expr_condition.c │ │ ├── test_expr_function.c │ │ ├── test_expr_null_coalesce.c │ │ ├── test_expr_plus.c │ │ ├── test_expr_regexp.c │ │ ├── test_expr_regexp_search.c │ │ ├── test_expr_regexp_subst.c │ │ ├── test_filterx_eval.c │ │ ├── test_filterx_expr.c │ │ ├── test_filterx_plist.c │ │ ├── test_func_flatten.c │ │ ├── test_func_format_json.c │ │ ├── test_func_istype.c │ │ ├── test_func_keys.c │ │ ├── test_func_unset_empties.c │ │ ├── test_metrics_labels.c │ │ ├── test_object_boolean.c │ │ ├── test_object_bytes.c │ │ ├── test_object_cow.c │ │ ├── test_object_datetime.c │ │ ├── test_object_dict.c │ │ ├── test_object_dict_interface.c │ │ ├── test_object_double.c │ │ ├── test_object_filterx_metrics_labels.c │ │ ├── test_object_integer.c │ │ ├── test_object_message.c │ │ ├── test_object_null.c │ │ ├── test_object_primitive.c │ │ ├── test_object_protobuf.c │ │ ├── test_object_string.c │ │ ├── test_scope.c │ │ └── test_type_registry.c ├── find-crlf.c ├── find-crlf.h ├── generic-number.c ├── generic-number.h ├── globals.c ├── gprocess.c ├── gprocess.h ├── gsockaddr.c ├── gsockaddr.h ├── gsocket.c ├── gsocket.h ├── healthcheck │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── healthcheck-control.c │ ├── healthcheck-control.h │ ├── healthcheck-stats.c │ ├── healthcheck-stats.h │ ├── healthcheck.c │ ├── healthcheck.h │ └── stopwatch.h ├── host-id.c ├── host-id.h ├── host-resolve.c ├── host-resolve.h ├── hostname-unix.c ├── hostname.c ├── hostname.h ├── list-adt.h ├── logmatcher.c ├── logmatcher.h ├── logmpx.c ├── logmpx.h ├── logmsg │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gsockaddr-serialize.c │ ├── gsockaddr-serialize.h │ ├── logmsg-serialize-fixup.c │ ├── logmsg-serialize-fixup.h │ ├── logmsg-serialize.c │ ├── logmsg-serialize.h │ ├── logmsg.c │ ├── logmsg.h │ ├── nvhandle-descriptors.c │ ├── nvhandle-descriptors.h │ ├── nvtable-serialize-endianutils.h │ ├── nvtable-serialize-legacy.c │ ├── nvtable-serialize-legacy.h │ ├── nvtable-serialize.c │ ├── nvtable-serialize.h │ ├── nvtable.c │ ├── nvtable.h │ ├── serialization.h │ ├── tags-serialize.c │ ├── tags-serialize.h │ ├── tags.c │ ├── tags.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── dump_logmsg.c │ │ ├── messages │ │ │ ├── syslog-ng-3.17.1-msg.h │ │ │ ├── syslog-ng-3.18.1-msg.h │ │ │ ├── syslog-ng-3.21.1-msg.h │ │ │ ├── syslog-ng-3.25.1-msg.h │ │ │ ├── syslog-ng-3.26.1-msg.h │ │ │ ├── syslog-ng-3.28.1-msg.h │ │ │ ├── syslog-ng-3.29.1-msg.h │ │ │ ├── syslog-ng-3.30.1-msg.h │ │ │ └── syslog-ng-pe-6.0-msg.h │ │ ├── test_gsockaddr_serialize.c │ │ ├── test_log_message.c │ │ ├── test_logmsg_ack.c │ │ ├── test_logmsg_serialize.c │ │ ├── test_nvhandle_desc_array.c │ │ ├── test_nvtable.c │ │ ├── test_tags.c │ │ ├── test_timestamp_serialize.c │ │ └── test_type_hints.c │ ├── timestamp-serialize.c │ ├── timestamp-serialize.h │ ├── type-hinting.c │ └── type-hinting.h ├── logpipe.c ├── logpipe.h ├── logproto │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── logproto-auto-server.c │ ├── logproto-auto-server.h │ ├── logproto-buffered-server.c │ ├── logproto-buffered-server.h │ ├── logproto-builtins.c │ ├── logproto-builtins.h │ ├── logproto-client.c │ ├── logproto-client.h │ ├── logproto-dgram-server.c │ ├── logproto-dgram-server.h │ ├── logproto-framed-client.c │ ├── logproto-framed-client.h │ ├── logproto-framed-server.c │ ├── logproto-framed-server.h │ ├── logproto-multiline-server.c │ ├── logproto-multiline-server.h │ ├── logproto-record-server.c │ ├── logproto-record-server.h │ ├── logproto-server.c │ ├── logproto-server.h │ ├── logproto-text-client.c │ ├── logproto-text-client.h │ ├── logproto-text-server.c │ ├── logproto-text-server.h │ ├── logproto.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test-auto-server.c │ │ ├── test-dgram-server.c │ │ ├── test-framed-server.c │ │ ├── test-indented-multiline-server.c │ │ ├── test-record-server.c │ │ ├── test-regexp-multiline-server.c │ │ ├── test-server-options.c │ │ ├── test-text-server.c │ │ ├── test_findeom.c │ │ └── test_logproto.c ├── logqueue-fifo.c ├── logqueue-fifo.h ├── logqueue.c ├── logqueue.h ├── logreader.c ├── logreader.h ├── logscheduler-pipe.c ├── logscheduler-pipe.h ├── logscheduler.c ├── logscheduler.h ├── logsource.c ├── logsource.h ├── logthrdest │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── logthrdestdrv.c │ ├── logthrdestdrv.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_logthrdestdrv.c ├── logthrsource │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── logthrfetcherdrv.c │ ├── logthrfetcherdrv.h │ ├── logthrsourcedrv.c │ ├── logthrsourcedrv.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_logthrfetcherdrv.c │ │ └── test_logthrsourcedrv.c ├── logwriter.c ├── logwriter.h ├── mainloop-call.c ├── mainloop-call.h ├── mainloop-control.c ├── mainloop-control.h ├── mainloop-io-worker.c ├── mainloop-io-worker.h ├── mainloop-threaded-worker.c ├── mainloop-threaded-worker.h ├── mainloop-worker.c ├── mainloop-worker.h ├── mainloop.c ├── mainloop.h ├── memtrace.c ├── memtrace.h ├── merge-grammar.py ├── messages.c ├── messages.h ├── metrics-pipe.c ├── metrics-pipe.h ├── metrics │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── dyn-metrics-cache.c │ ├── dyn-metrics-cache.h │ ├── dyn-metrics-store.c │ ├── dyn-metrics-store.h │ ├── dyn-metrics-template.c │ ├── dyn-metrics-template.h │ ├── label-template.c │ ├── label-template.h │ ├── metrics.c │ └── metrics.h ├── misc.h ├── ml-batched-timer.c ├── ml-batched-timer.h ├── module-config.c ├── module-config.h ├── msg-format.c ├── msg-format.h ├── msg-stats.c ├── msg-stats.h ├── multi-line │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── indented-multi-line.c │ ├── indented-multi-line.h │ ├── multi-line-factory.c │ ├── multi-line-factory.h │ ├── multi-line-logic.c │ ├── multi-line-logic.h │ ├── multi-line-pattern.c │ ├── multi-line-pattern.h │ ├── regexp-multi-line.c │ ├── regexp-multi-line.h │ ├── smart-multi-line.c │ ├── smart-multi-line.fsm │ ├── smart-multi-line.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_smart_multi_line.c ├── on-error.c ├── on-error.h ├── parse-number.c ├── parse-number.h ├── parser │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── parser-expr-grammar.ym │ ├── parser-expr-parser.c │ ├── parser-expr-parser.h │ ├── parser-expr.c │ └── parser-expr.h ├── pathutils.c ├── pathutils.h ├── perf │ ├── Makefile.am │ ├── perf.c │ ├── perf.h │ └── trampoline.S ├── persist-state.c ├── persist-state.h ├── persistable-state-header.h ├── persistable-state-presenter.c ├── persistable-state-presenter.h ├── plugin-types.h ├── plugin.c ├── plugin.h ├── poll-events.c ├── poll-events.h ├── poll-fd-events.c ├── poll-fd-events.h ├── pragma-grammar.ym ├── pragma-parser.c ├── pragma-parser.h ├── presented-persistable-state.h ├── rcptid.c ├── rcptid.h ├── reloc.c ├── reloc.h ├── resolved-configurable-paths.c ├── resolved-configurable-paths.h ├── rewrite │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── rewrite-expr-grammar.ym │ ├── rewrite-expr-parser.c │ ├── rewrite-expr-parser.h │ ├── rewrite-expr.c │ ├── rewrite-expr.h │ ├── rewrite-groupset.c │ ├── rewrite-groupset.h │ ├── rewrite-rename.c │ ├── rewrite-rename.h │ ├── rewrite-set-facility.c │ ├── rewrite-set-facility.h │ ├── rewrite-set-matches.c │ ├── rewrite-set-matches.h │ ├── rewrite-set-pri.c │ ├── rewrite-set-pri.h │ ├── rewrite-set-severity.c │ ├── rewrite-set-severity.h │ ├── rewrite-set-tag.c │ ├── rewrite-set-tag.h │ ├── rewrite-set.c │ ├── rewrite-set.h │ ├── rewrite-subst.c │ ├── rewrite-subst.h │ ├── rewrite-unset-matches.c │ ├── rewrite-unset-matches.h │ ├── rewrite-unset.c │ ├── rewrite-unset.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_rename.c │ │ ├── test_rewrite.c │ │ ├── test_set_facility.c │ │ ├── test_set_matches.c │ │ ├── test_set_pri.c │ │ ├── test_set_severity.c │ │ └── test_set_tag.c ├── ringbuffer.c ├── ringbuffer.h ├── run-id.c ├── run-id.h ├── scanner │ ├── CMakeLists.txt │ ├── csv-scanner │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── csv-scanner.c │ │ ├── csv-scanner.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── test_csv_scanner.c │ ├── kv-scanner │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── kv-scanner.c │ │ ├── kv-scanner.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── test_kv_scanner.c │ ├── list-scanner │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── list-scanner.c │ │ ├── list-scanner.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── test_list_scanner.c │ └── xml-scanner │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_xml_scanner.c │ │ ├── xml-scanner.c │ │ └── xml-scanner.h ├── scratch-buffers.c ├── scratch-buffers.h ├── secret-storage │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── nondumpable-allocator.c │ ├── nondumpable-allocator.h │ ├── secret-storage.c │ ├── secret-storage.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_nondumpable_allocator.c │ │ └── test_secret_storage.c ├── seqnum.h ├── serialize.c ├── serialize.h ├── service-management.c ├── service-management.h ├── severity-aliases.table ├── signal-handler.c ├── signal-handler.h ├── signal-slot-connector │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── signal-slot-connector.c │ ├── signal-slot-connector.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_signal_slots.c ├── stackdump.c ├── stackdump.h ├── stats │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── aggregator │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── stats-aggregator-registry.c │ │ ├── stats-aggregator-registry.h │ │ ├── stats-aggregator.c │ │ ├── stats-aggregator.h │ │ ├── stats-average.c │ │ ├── stats-change-per-second.c │ │ ├── stats-histogram.c │ │ └── stats-maximum.c │ ├── stats-cluster-hist.c │ ├── stats-cluster-hist.h │ ├── stats-cluster-key-builder.c │ ├── stats-cluster-key-builder.h │ ├── stats-cluster-logpipe.c │ ├── stats-cluster-logpipe.h │ ├── stats-cluster-single.c │ ├── stats-cluster-single.h │ ├── stats-cluster.c │ ├── stats-cluster.h │ ├── stats-compat.h │ ├── stats-control.c │ ├── stats-control.h │ ├── stats-counter.h │ ├── stats-csv.c │ ├── stats-csv.h │ ├── stats-log.c │ ├── stats-log.h │ ├── stats-prometheus.c │ ├── stats-prometheus.h │ ├── stats-query-commands.c │ ├── stats-query-commands.h │ ├── stats-query.c │ ├── stats-query.h │ ├── stats-registry.c │ ├── stats-registry.h │ ├── stats.c │ ├── stats.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_alias_ctr_reg.c │ │ ├── test_dynamic_ctr_reg.c │ │ ├── test_external_ctr_reg.c │ │ ├── test_stats_cluster.c │ │ ├── test_stats_cluster_key_builder.c │ │ ├── test_stats_prometheus.c │ │ └── test_stats_query.c ├── str-format.c ├── str-format.h ├── str-repr │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── decode.c │ ├── decode.h │ ├── encode.c │ ├── encode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_decode.c │ │ └── test_encode.c ├── str-utils.c ├── str-utils.h ├── string-list.c ├── string-list.h ├── syslog-names.c ├── syslog-names.h ├── syslog-ng.h ├── template │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── common-template-typedefs.h │ ├── compiler.c │ ├── compiler.h │ ├── escaping.c │ ├── escaping.h │ ├── eval.c │ ├── eval.h │ ├── function.h │ ├── globals.c │ ├── globals.h │ ├── macros.c │ ├── macros.h │ ├── repr.c │ ├── repr.h │ ├── simple-function.c │ ├── simple-function.h │ ├── templates.c │ ├── templates.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_macro.c │ │ ├── test_template.c │ │ ├── test_template_compile.c │ │ ├── test_template_on_error.c │ │ └── test_template_speed.c │ ├── user-function.c │ └── user-function.h ├── tests │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── test_apphook.c │ ├── test_atomic_gssize.c │ ├── test_cache.c │ ├── test_cfg_lexer_subst.c │ ├── test_cfg_tree.c │ ├── test_clone_logmsg.c │ ├── test_dnscache.c │ ├── test_dynamic_window.c │ ├── test_findcrlf.c │ ├── test_generic_number.c │ ├── test_gsocket.c │ ├── test_host_resolve.c │ ├── test_hostid.c │ ├── test_hostname.c │ ├── test_lexer.c │ ├── test_lexer_block.c │ ├── test_logqueue.c │ ├── test_logscheduler.c │ ├── test_logsource.c │ ├── test_logwriter.c │ ├── test_matcher.c │ ├── test_messages.c │ ├── test_msgparse.c │ ├── test_parse_number.c │ ├── test_pathutils.c │ ├── test_persist_state.c │ ├── test_pragma.c │ ├── test_rcptid.c │ ├── test_reloc.c │ ├── test_ringbuffer.c │ ├── test_runid.c │ ├── test_scratch_buffers.c │ ├── test_serialize.c │ ├── test_str-utils.c │ ├── test_str_format.c │ ├── test_string_list.c │ ├── test_thread_wakeup.c │ ├── test_userdb.c │ ├── test_utf8utils.c │ ├── test_window_size_counter.c │ ├── test_zone.c │ └── testdata-lexer │ │ └── include-test │ │ ├── bar.conf │ │ ├── baz.conf │ │ ├── foo.conf │ │ └── invalid~include~file.conf ├── thread-utils.h ├── timeutils │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cache.c │ ├── cache.h │ ├── conv.c │ ├── conv.h │ ├── format.c │ ├── format.h │ ├── misc.c │ ├── misc.h │ ├── names.c │ ├── names.h │ ├── scan-timestamp.c │ ├── scan-timestamp.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_cache.c │ │ ├── test_conv.c │ │ ├── test_misc.c │ │ ├── test_scan-timestamp.c │ │ ├── test_unixtime.c │ │ └── test_wallclocktime.c │ ├── timeutils.c │ ├── timeutils.h │ ├── unixtime.c │ ├── unixtime.h │ ├── wallclocktime.c │ ├── wallclocktime.h │ ├── zonecache.c │ ├── zonecache.h │ ├── zonedb.c │ ├── zonedb.h │ ├── zoneinfo.c │ └── zoneinfo.h ├── tls-support.h ├── transport │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── logtransport.c │ ├── logtransport.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_aux_data.c │ │ ├── test_tls_wildcard_match.c │ │ ├── test_transport.c │ │ ├── test_transport_haproxy.c │ │ └── test_transport_stack.c │ ├── tls-context.c │ ├── tls-context.h │ ├── tls-session.c │ ├── tls-session.h │ ├── tls-verifier.c │ ├── tls-verifier.h │ ├── transport-adapter.c │ ├── transport-adapter.h │ ├── transport-aux-data.c │ ├── transport-aux-data.h │ ├── transport-factory-haproxy.c │ ├── transport-factory-haproxy.h │ ├── transport-factory-tls.c │ ├── transport-factory-tls.h │ ├── transport-file.c │ ├── transport-file.h │ ├── transport-globals.c │ ├── transport-globals.h │ ├── transport-haproxy.c │ ├── transport-haproxy.h │ ├── transport-pipe.c │ ├── transport-pipe.h │ ├── transport-socket.c │ ├── transport-socket.h │ ├── transport-stack.c │ ├── transport-stack.h │ ├── transport-tls.c │ ├── transport-tls.h │ ├── transport-udp-socket.c │ └── transport-udp-socket.h ├── userdb.c ├── userdb.h ├── utf8utils.c ├── utf8utils.h ├── uuid.c ├── uuid.h ├── value-pairs │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cmdline.c │ ├── cmdline.h │ ├── evttag.c │ ├── evttag.h │ ├── internals.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_value_pairs.c │ │ └── test_value_pairs_walk.c │ ├── transforms.c │ ├── transforms.h │ ├── value-pairs.c │ └── value-pairs.h ├── versioning.h ├── window-size-counter.c └── window-size-counter.h ├── libtest ├── CMakeLists.txt ├── Makefile.am ├── config_parse_lib.c ├── config_parse_lib.h ├── cr_template.c ├── cr_template.h ├── fake-time.c ├── fake-time.h ├── filterx-lib.c ├── filterx-lib.h ├── grab-logging.c ├── grab-logging.h ├── libtest.c ├── mock-cfg-parser.c ├── mock-cfg-parser.h ├── mock-logpipe.c ├── mock-logpipe.h ├── mock-transport.c ├── mock-transport.h ├── msg_parse_lib.c ├── msg_parse_lib.h ├── persist_lib.c ├── persist_lib.h ├── proto_lib.c ├── proto_lib.h ├── queue_utils_lib.c ├── queue_utils_lib.h ├── stopwatch.c ├── stopwatch.h ├── syslog-ng-test.pc.in └── tests │ ├── CMakeLists.txt │ ├── Makefile.am │ └── test_mock_transport.c ├── modules ├── CMakeLists.txt ├── Makefile.am ├── add-contextual-data │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── add-contextual-data-filter-selector.c │ ├── add-contextual-data-filter-selector.h │ ├── add-contextual-data-glob-selector.c │ ├── add-contextual-data-glob-selector.h │ ├── add-contextual-data-grammar.ym │ ├── add-contextual-data-parser.c │ ├── add-contextual-data-parser.h │ ├── add-contextual-data-plugin.c │ ├── add-contextual-data-selector.h │ ├── add-contextual-data-template-selector.c │ ├── add-contextual-data-template-selector.h │ ├── add-contextual-data.c │ ├── add-contextual-data.h │ ├── context-info-db.c │ ├── context-info-db.h │ ├── contextual-data-record-scanner.c │ ├── contextual-data-record-scanner.h │ ├── contextual-data-record.c │ ├── contextual-data-record.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_context_info_db.c │ │ ├── test_filter_selector.c │ │ ├── test_glob_selector.c │ │ └── test_template_selector.c ├── afamqp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afamqp-grammar.ym │ ├── afamqp-parser.c │ ├── afamqp-parser.h │ ├── afamqp-plugin.c │ ├── afamqp.c │ ├── afamqp.h │ └── compat │ │ ├── amqp-compat.c │ │ └── amqp-compat.h ├── affile │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── affile-dest.c │ ├── affile-dest.h │ ├── affile-grammar.ym │ ├── affile-parser.c │ ├── affile-parser.h │ ├── affile-plugin.c │ ├── affile-source.c │ ├── affile-source.h │ ├── collection-comparator.c │ ├── collection-comparator.h │ ├── directory-monitor-factory.c │ ├── directory-monitor-factory.h │ ├── directory-monitor-inotify.c │ ├── directory-monitor-inotify.h │ ├── directory-monitor-poll.c │ ├── directory-monitor-poll.h │ ├── directory-monitor.c │ ├── directory-monitor.h │ ├── file-list.c │ ├── file-list.h │ ├── file-opener.c │ ├── file-opener.h │ ├── file-reader.c │ ├── file-reader.h │ ├── file-specializations.h │ ├── linux-kmsg.c │ ├── logproto-file-reader.c │ ├── logproto-file-reader.h │ ├── logproto-file-writer.c │ ├── logproto-file-writer.h │ ├── named-pipe.c │ ├── named-pipe.h │ ├── poll-file-changes.c │ ├── poll-file-changes.h │ ├── poll-multiline-file-changes.c │ ├── poll-multiline-file-changes.h │ ├── regular-files.c │ ├── stdin.c │ ├── stdin.h │ ├── stdout.c │ ├── stdout.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_collection_comparator.c │ │ ├── test_directory_monitor.c │ │ ├── test_file_list.c │ │ ├── test_file_opener.c │ │ ├── test_file_writer.c │ │ ├── test_wildcard_file_reader.c │ │ └── test_wildcard_source.c │ ├── transport-prockmsg.c │ ├── transport-prockmsg.h │ ├── wildcard-file-reader.c │ ├── wildcard-file-reader.h │ ├── wildcard-source.c │ └── wildcard-source.h ├── afmongodb │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afmongodb-grammar.ym │ ├── afmongodb-parser.c │ ├── afmongodb-parser.h │ ├── afmongodb-private.h │ ├── afmongodb-worker.c │ ├── afmongodb-worker.h │ ├── afmongodb.c │ ├── afmongodb.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test-mongodb-config.c ├── afprog │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afprog-grammar.ym │ ├── afprog-parser.c │ ├── afprog-parser.h │ ├── afprog-plugin.c │ ├── afprog.c │ └── afprog.h ├── afsmtp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afsmtp-grammar.ym │ ├── afsmtp-parser.c │ ├── afsmtp-parser.h │ ├── afsmtp.c │ └── afsmtp.h ├── afsnmp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afsnmp-grammar.ym │ ├── afsnmp-parser.c │ ├── afsnmp-parser.h │ ├── afsnmp-plugin.c │ ├── afsnmpdest.c │ ├── afsnmpdest.h │ ├── snmptrapd-header-parser.c │ ├── snmptrapd-header-parser.h │ ├── snmptrapd-nv-context.h │ ├── snmptrapd-parser.c │ ├── snmptrapd-parser.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_afsnmp_dest.c │ │ ├── test_snmptrapd_parser.c │ │ └── test_varbindlist_scanner.c │ ├── varbindlist-scanner.c │ └── varbindlist-scanner.h ├── afsocket │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afinet-dest-failover.c │ ├── afinet-dest-failover.h │ ├── afinet-dest.c │ ├── afinet-dest.h │ ├── afinet-source.c │ ├── afinet-source.h │ ├── afinet.c │ ├── afinet.h │ ├── afsocket-dest.c │ ├── afsocket-dest.h │ ├── afsocket-grammar.ym │ ├── afsocket-parser.c │ ├── afsocket-parser.h │ ├── afsocket-plugin.c │ ├── afsocket-signals.h │ ├── afsocket-source.c │ ├── afsocket-source.h │ ├── afsocket-systemd-override.h │ ├── afsocket.c │ ├── afsocket.h │ ├── afunix-dest.c │ ├── afunix-dest.h │ ├── afunix-source.c │ ├── afunix-source.h │ ├── compat-unix-creds.c │ ├── compat-unix-creds.h │ ├── socket-options-inet.c │ ├── socket-options-inet.h │ ├── socket-options-unix.c │ ├── socket-options-unix.h │ ├── socket-options.c │ ├── socket-options.h │ ├── systemd-syslog-source.c │ ├── systemd-syslog-source.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test-transport-mapper-inet.c │ │ ├── test-transport-mapper-unix.c │ │ ├── test-transport-mapper.c │ │ ├── transport-mapper-lib.c │ │ └── transport-mapper-lib.h │ ├── transport-mapper-inet.c │ ├── transport-mapper-inet.h │ ├── transport-mapper-unix.c │ ├── transport-mapper-unix.h │ ├── transport-mapper.c │ ├── transport-mapper.h │ ├── transport-unix-socket.c │ └── transport-unix-socket.h ├── afsql │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afsql-grammar.ym │ ├── afsql-parser.c │ ├── afsql-parser.h │ ├── afsql-plugin.c │ ├── afsql.c │ └── afsql.h ├── afstomp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afstomp-grammar.ym │ ├── afstomp-parser.c │ ├── afstomp-parser.h │ ├── afstomp.c │ ├── afstomp.h │ ├── stomp.c │ ├── stomp.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_stomp_proto.c ├── afstreams │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afstreams-grammar.ym │ ├── afstreams-parser.c │ ├── afstreams-parser.h │ ├── afstreams-plugin.c │ ├── afstreams.c │ └── afstreams.h ├── afuser │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afuser-grammar.ym │ ├── afuser-parser.c │ ├── afuser-parser.h │ ├── afuser-plugin.c │ ├── afuser.c │ └── afuser.h ├── appmodel │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── app-object-generator.c │ ├── app-object-generator.h │ ├── app-parser-generator.c │ ├── app-parser-generator.h │ ├── app-transform-generator.c │ ├── app-transform-generator.h │ ├── application.c │ ├── application.h │ ├── appmodel-context.c │ ├── appmodel-context.h │ ├── appmodel-grammar.ym │ ├── appmodel-parser.c │ ├── appmodel-parser.h │ ├── appmodel-plugin.c │ ├── appmodel.c │ ├── appmodel.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_app_parser_generator.c │ │ ├── test_app_transform_generator.c │ │ ├── test_application.c │ │ ├── test_appmodel.c │ │ └── test_appmodel_context.c │ ├── transformation.c │ └── transformation.h ├── azure-auth-header │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── azure-auth-header-grammar.ym │ ├── azure-auth-header-parser.c │ ├── azure-auth-header-parser.h │ ├── azure-auth-header-plugin.c │ ├── azure-auth-header.c │ └── azure-auth-header.h ├── basicfuncs │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── basic-funcs.c │ ├── cond-funcs.c │ ├── context-funcs.c │ ├── fname-funcs.c │ ├── ip-funcs.c │ ├── list-funcs.c │ ├── misc-funcs.c │ ├── numeric-funcs.c │ ├── str-funcs.c │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_basicfuncs.c │ ├── tf-filter.c │ ├── tf-iterate.c │ ├── tf-map.c │ ├── tf-tag.c │ ├── tf-template.c │ ├── urlencode.c │ └── vp-funcs.c ├── cef │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cef-plugin.c │ ├── event-format-cfg.h │ ├── event-format-formatter.c │ ├── event-format-formatter.h │ ├── event-format-parser.c │ ├── event-format-parser.h │ ├── filterx-func-format-cef.c │ ├── filterx-func-format-cef.h │ ├── filterx-func-format-leef.c │ ├── filterx-func-format-leef.h │ ├── filterx-func-parse-cef.c │ ├── filterx-func-parse-cef.h │ ├── filterx-func-parse-leef.c │ ├── filterx-func-parse-leef.h │ ├── format-cef-extension.c │ ├── format-cef-extension.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test-filterx-function-parse-cef.c │ │ ├── test-filterx-function-parse-leef.c │ │ ├── test-format-cef-extension.c │ │ ├── test_helpers.c │ │ └── test_helpers.h ├── cloud-auth │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── azure-auth.cpp │ ├── azure-auth.h │ ├── azure-auth.hpp │ ├── cloud-auth-grammar.ym │ ├── cloud-auth-parser.c │ ├── cloud-auth-parser.h │ ├── cloud-auth-plugin.c │ ├── cloud-auth.c │ ├── cloud-auth.cpp │ ├── cloud-auth.h │ ├── cloud-auth.hpp │ ├── google-auth.cpp │ ├── google-auth.h │ └── google-auth.hpp ├── confgen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── confgen-plugin.c │ ├── confgen.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── confgentest.sh │ │ └── test_confgen.c ├── correlation │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── correlation-context.c │ ├── correlation-context.h │ ├── correlation-grammar.ym │ ├── correlation-key.c │ ├── correlation-key.h │ ├── correlation-parser.c │ ├── correlation-parser.h │ ├── correlation-plugin.c │ ├── correlation.c │ ├── correlation.h │ ├── dbparser.c │ ├── dbparser.h │ ├── group-lines.c │ ├── group-lines.h │ ├── grouping-parser.c │ ├── grouping-parser.h │ ├── groupingby.c │ ├── groupingby.h │ ├── id-counter.c │ ├── id-counter.h │ ├── patterndb.c │ ├── patterndb.h │ ├── patternize.c │ ├── patternize.h │ ├── pdb-action.c │ ├── pdb-action.h │ ├── pdb-context.c │ ├── pdb-context.h │ ├── pdb-error.c │ ├── pdb-error.h │ ├── pdb-example.c │ ├── pdb-example.h │ ├── pdb-file.c │ ├── pdb-file.h │ ├── pdb-load.c │ ├── pdb-load.h │ ├── pdb-lookup-params.c │ ├── pdb-lookup-params.h │ ├── pdb-program.c │ ├── pdb-program.h │ ├── pdb-ratelimit.c │ ├── pdb-ratelimit.h │ ├── pdb-rule.c │ ├── pdb-rule.h │ ├── pdb-ruleset.c │ ├── pdb-ruleset.h │ ├── pdbtool │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── pdbtool.c │ ├── radix.c │ ├── radix.h │ ├── stateful-parser.c │ ├── stateful-parser.h │ ├── synthetic-context.c │ ├── synthetic-context.h │ ├── synthetic-message.c │ ├── synthetic-message.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_grouping_by.c │ │ ├── test_parsers.c │ │ ├── test_parsers_e2e.c │ │ ├── test_patterndb.c │ │ ├── test_patterndb.h │ │ ├── test_patternize.c │ │ ├── test_radix.c │ │ └── test_timer_wheel.c │ ├── timerwheel.c │ └── timerwheel.h ├── cryptofuncs │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cryptofuncs.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_cryptofuncs.c ├── csvparser │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── csvparser-grammar.ym │ ├── csvparser-parser.c │ ├── csvparser-parser.h │ ├── csvparser-plugin.c │ ├── csvparser.c │ ├── csvparser.h │ ├── filterx-func-format-csv.c │ ├── filterx-func-format-csv.h │ ├── filterx-func-parse-csv.c │ ├── filterx-func-parse-csv.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_csvparser.c │ │ ├── test_csvparser_from_config.c │ │ ├── test_csvparser_perf.c │ │ ├── test_filterx_func_format_csv.c │ │ └── test_filterx_func_parse_csv.c ├── darwinosl │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── darwinosl-grammar.ym │ ├── darwinosl-parser.c │ ├── darwinosl-parser.h │ ├── darwinosl-plugin.c │ ├── darwinosl-source-oslog.h │ ├── darwinosl-source-oslog.m │ ├── darwinosl-source-persist.c │ ├── darwinosl-source-persist.h │ ├── darwinosl-source.h │ └── darwinosl-source.m ├── diskq │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── diskq-config.c │ ├── diskq-config.h │ ├── diskq-global-metrics.c │ ├── diskq-global-metrics.h │ ├── diskq-grammar.ym │ ├── diskq-options.c │ ├── diskq-options.h │ ├── diskq-parser.c │ ├── diskq-parser.h │ ├── diskq-plugin.c │ ├── diskq.c │ ├── diskq.h │ ├── dqtool.c │ ├── logqueue-disk-non-reliable.c │ ├── logqueue-disk-non-reliable.h │ ├── logqueue-disk-reliable.c │ ├── logqueue-disk-reliable.h │ ├── logqueue-disk.c │ ├── logqueue-disk.h │ ├── qdisk.c │ ├── qdisk.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_diskq.c │ │ ├── test_diskq_counters.c │ │ ├── test_diskq_full.c │ │ ├── test_diskq_tools.h │ │ ├── test_diskq_truncate.c │ │ ├── test_logqueue_disk.c │ │ ├── test_qdisk.c │ │ └── test_reliable_backlog.c ├── ebpf │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── ebpf-grammar.ym │ ├── ebpf-parser.c │ ├── ebpf-parser.h │ ├── ebpf-plugin.c │ ├── ebpf-reuseport.c │ ├── ebpf-reuseport.h │ └── random.kern.c ├── examples │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── destinations │ │ └── example_destination │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── example_destination-grammar.ym │ │ │ ├── example_destination-parser.c │ │ │ ├── example_destination-parser.h │ │ │ ├── example_destination-plugin.c │ │ │ ├── example_destination.c │ │ │ ├── example_destination.h │ │ │ ├── example_destination_worker.c │ │ │ └── example_destination_worker.h │ ├── example-plugins.c │ ├── filterx │ │ └── example-filterx-func │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── example-filterx-func-plugin.c │ │ │ └── example-filterx-func-plugin.h │ ├── inner-destinations │ │ ├── http-test-slots │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── http-test-slots-grammar.ym │ │ │ ├── http-test-slots-parser.c │ │ │ ├── http-test-slots-parser.h │ │ │ ├── http-test-slots.c │ │ │ └── http-test-slots.h │ │ └── tls-test-validation │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── tls-test-validation-grammar.ym │ │ │ ├── tls-test-validation-parser.c │ │ │ ├── tls-test-validation-parser.h │ │ │ ├── tls-test-validation.c │ │ │ └── tls-test-validation.h │ └── sources │ │ ├── msg-generator │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── msg-generator-grammar.ym │ │ ├── msg-generator-parser.c │ │ ├── msg-generator-parser.h │ │ ├── msg-generator-source-options.h │ │ ├── msg-generator-source.c │ │ ├── msg-generator-source.h │ │ ├── msg-generator.c │ │ └── msg-generator.h │ │ ├── random-choice-generator │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── random-choice-generator-grammar.ym │ │ ├── random-choice-generator-parser.c │ │ ├── random-choice-generator-parser.h │ │ ├── random-choice-generator.cpp │ │ ├── random-choice-generator.h │ │ └── random-choice-generator.hpp │ │ ├── threaded-diskq-source │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── threaded-diskq-source-grammar.ym │ │ ├── threaded-diskq-source-parser.c │ │ ├── threaded-diskq-source-parser.h │ │ ├── threaded-diskq-source.c │ │ └── threaded-diskq-source.h │ │ └── threaded-random-generator │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── threaded-random-generator-grammar.ym │ │ ├── threaded-random-generator-parser.c │ │ ├── threaded-random-generator-parser.h │ │ ├── threaded-random-generator.c │ │ └── threaded-random-generator.h ├── geoip2 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── geoip-parser-grammar.ym │ ├── geoip-parser-parser.c │ ├── geoip-parser-parser.h │ ├── geoip-parser.c │ ├── geoip-parser.h │ ├── geoip-plugin.c │ ├── maxminddb-helper.c │ ├── maxminddb-helper.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test.mmdb │ │ └── test_geoip_parser.c │ └── tfgeoip.c ├── getent │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── getent-group.c │ ├── getent-passwd.c │ ├── getent-protocols.c │ ├── getent-services.c │ └── tfgetent.c ├── graphite │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── graphite-output.c │ ├── graphite-output.h │ ├── graphite-plugin.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_graphite_output.c ├── grpc │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bigquery │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── bigquery-dest.cpp │ │ ├── bigquery-dest.h │ │ ├── bigquery-dest.hpp │ │ ├── bigquery-grammar.ym │ │ ├── bigquery-parser.c │ │ ├── bigquery-parser.h │ │ ├── bigquery-plugin.c │ │ ├── bigquery-worker.cpp │ │ └── bigquery-worker.hpp │ ├── clickhouse │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── clickhouse-dest-worker.cpp │ │ ├── clickhouse-dest-worker.hpp │ │ ├── clickhouse-dest.cpp │ │ ├── clickhouse-dest.h │ │ ├── clickhouse-dest.hpp │ │ ├── clickhouse-exception-codes.c │ │ ├── clickhouse-exception-codes.h │ │ ├── clickhouse-grammar.ym │ │ ├── clickhouse-parser.c │ │ ├── clickhouse-parser.h │ │ └── clickhouse-plugin.c │ ├── common │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── credentials │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── grpc-credentials-builder.cpp │ │ │ ├── grpc-credentials-builder.h │ │ │ └── grpc-credentials-builder.hpp │ │ ├── filterx │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── filterx-protobuf-formatter.cpp │ │ │ ├── filterx-protobuf-formatter.hpp │ │ │ ├── protobuf-field-converter.cpp │ │ │ └── protobuf-field-converter.hpp │ │ ├── grpc-dest-worker.cpp │ │ ├── grpc-dest-worker.hpp │ │ ├── grpc-dest.cpp │ │ ├── grpc-dest.h │ │ ├── grpc-dest.hpp │ │ ├── grpc-grammar-internal.c │ │ ├── grpc-grammar-internal.h │ │ ├── grpc-grammar.ym │ │ ├── grpc-parser.h │ │ ├── grpc-source-worker.cpp │ │ ├── grpc-source-worker.hpp │ │ ├── grpc-source.cpp │ │ ├── grpc-source.h │ │ ├── grpc-source.hpp │ │ ├── metrics │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── grpc-metrics.cpp │ │ │ └── grpc-metrics.hpp │ │ └── schema │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── log-message-protobuf-formatter.cpp │ │ │ ├── log-message-protobuf-formatter.hpp │ │ │ ├── proto-schema-provider.cpp │ │ │ └── proto-schema-provider.hpp │ ├── filterx │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── func-protobuf-message.cpp │ │ ├── func-protobuf-message.h │ │ ├── grpc-filterx-plugin.c │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── test_protobuf_message.c │ ├── loki │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── loki-dest.cpp │ │ ├── loki-dest.h │ │ ├── loki-dest.hpp │ │ ├── loki-grammar.ym │ │ ├── loki-parser.c │ │ ├── loki-parser.h │ │ ├── loki-plugin.c │ │ ├── loki-worker.cpp │ │ └── loki-worker.hpp │ ├── otel │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── filterx │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── object-otel-array.cpp │ │ │ ├── object-otel-array.hpp │ │ │ ├── object-otel-base.cpp │ │ │ ├── object-otel-base.hpp │ │ │ ├── object-otel-kvlist.cpp │ │ │ ├── object-otel-kvlist.hpp │ │ │ ├── object-otel-logrecord.cpp │ │ │ ├── object-otel-logrecord.hpp │ │ │ ├── object-otel-resource.cpp │ │ │ ├── object-otel-resource.hpp │ │ │ ├── object-otel-scope.cpp │ │ │ ├── object-otel-scope.hpp │ │ │ ├── object-otel.h │ │ │ ├── otel-field-converter.cpp │ │ │ └── otel-field-converter.hpp │ │ ├── otel-dest-worker.cpp │ │ ├── otel-dest-worker.hpp │ │ ├── otel-dest.cpp │ │ ├── otel-dest.h │ │ ├── otel-dest.hpp │ │ ├── otel-grammar.ym │ │ ├── otel-logmsg-handles.cpp │ │ ├── otel-logmsg-handles.h │ │ ├── otel-logmsg-handles.hpp │ │ ├── otel-parser.c │ │ ├── otel-parser.h │ │ ├── otel-plugin.c │ │ ├── otel-protobuf-formatter.cpp │ │ ├── otel-protobuf-formatter.hpp │ │ ├── otel-protobuf-parser.cpp │ │ ├── otel-protobuf-parser.h │ │ ├── otel-protobuf-parser.hpp │ │ ├── otel-servicecall.hpp │ │ ├── otel-source-services.hpp │ │ ├── otel-source.cpp │ │ ├── otel-source.h │ │ ├── otel-source.hpp │ │ ├── syslog-ng-otlp-dest-worker.cpp │ │ ├── syslog-ng-otlp-dest-worker.hpp │ │ ├── syslog-ng-otlp-dest.cpp │ │ ├── syslog-ng-otlp-dest.h │ │ ├── syslog-ng-otlp-dest.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── test-otel-filterx.cpp │ │ │ ├── test-otel-protobuf-formatter.cpp │ │ │ ├── test-otel-protobuf-parser.cpp │ │ │ └── test-syslog-ng-otlp.cpp │ ├── protos │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── apphook.cpp │ │ ├── apphook.h │ │ ├── clickhouse-proto │ │ │ └── clickhouse_grpc.proto │ │ ├── googleapis-proto │ │ │ └── google │ │ │ │ ├── api │ │ │ │ ├── annotations.proto │ │ │ │ ├── client.proto │ │ │ │ ├── field_behavior.proto │ │ │ │ ├── http.proto │ │ │ │ ├── launch_stage.proto │ │ │ │ └── resource.proto │ │ │ │ ├── cloud │ │ │ │ └── bigquery │ │ │ │ │ └── storage │ │ │ │ │ └── v1 │ │ │ │ │ ├── annotations.proto │ │ │ │ │ ├── arrow.proto │ │ │ │ │ ├── avro.proto │ │ │ │ │ ├── protobuf.proto │ │ │ │ │ ├── storage.proto │ │ │ │ │ ├── stream.proto │ │ │ │ │ └── table.proto │ │ │ │ ├── pubsub │ │ │ │ └── v1 │ │ │ │ │ ├── pubsub.proto │ │ │ │ │ └── schema.proto │ │ │ │ └── rpc │ │ │ │ └── status.proto │ │ └── grafana-loki │ │ │ └── push.proto │ └── pubsub │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── filterx │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── object-pubsub-message.cpp │ │ ├── object-pubsub-message.hpp │ │ └── object-pubsub.h │ │ ├── pubsub-dest-worker.cpp │ │ ├── pubsub-dest-worker.hpp │ │ ├── pubsub-dest.cpp │ │ ├── pubsub-dest.h │ │ ├── pubsub-dest.hpp │ │ ├── pubsub-grammar.ym │ │ ├── pubsub-parser.c │ │ ├── pubsub-parser.h │ │ └── pubsub-plugin.c ├── hook-commands │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── hook-commands-grammar.ym │ ├── hook-commands-parser.c │ ├── hook-commands-parser.h │ ├── hook-commands-plugin.c │ ├── hook-commands.c │ └── hook-commands.h ├── http │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── autodetect-ca-location.c │ ├── autodetect-ca-location.h │ ├── compression.c │ ├── compression.h │ ├── http-curl-header-list.c │ ├── http-curl-header-list.h │ ├── http-grammar.ym │ ├── http-loadbalancer.c │ ├── http-loadbalancer.h │ ├── http-parser.c │ ├── http-parser.h │ ├── http-plugin.c │ ├── http-signals.h │ ├── http-worker.c │ ├── http-worker.h │ ├── http.c │ ├── http.h │ ├── response-handler.c │ ├── response-handler.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_compression.c │ │ ├── test_http-loadbalancer.c │ │ ├── test_http-response_handlers.c │ │ ├── test_http-signal_slot.c │ │ └── test_http.c ├── java-modules │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── build.gradle │ ├── common │ │ ├── README.md │ │ ├── build.gradle │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── syslog_ng │ │ │ │ ├── logging │ │ │ │ ├── CustomConfigurationFactory.java │ │ │ │ └── SyslogNgInternalLogger.java │ │ │ │ └── options │ │ │ │ ├── BooleanOptionDecorator.java │ │ │ │ ├── EnumOptionDecorator.java │ │ │ │ ├── IntegerOptionDecorator.java │ │ │ │ ├── IntegerRangeCheckOptionDecorator.java │ │ │ │ ├── InvalidOptionException.java │ │ │ │ ├── Option.java │ │ │ │ ├── OptionDecorator.java │ │ │ │ ├── Options.java │ │ │ │ ├── PortCheckDecorator.java │ │ │ │ ├── RequiredOptionDecorator.java │ │ │ │ ├── StringOption.java │ │ │ │ └── TemplateOption.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── syslog_ng │ │ │ ├── logging │ │ │ └── test │ │ │ │ └── MockLogDestination.java │ │ │ └── options │ │ │ └── test │ │ │ ├── TestBooleanOptionDecorator.java │ │ │ ├── TestEnumOptionDecorator.java │ │ │ ├── TestIntegerOptionDecorator.java │ │ │ ├── TestIntegerRangeCheckOptionDecorator.java │ │ │ ├── TestOption.java │ │ │ ├── TestPortCheckDecorator.java │ │ │ ├── TestRequiredOptionDecorator.java │ │ │ └── TestStringOption.java │ ├── dummy │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── syslog_ng │ │ │ └── DummyTextDestination.java │ ├── hdfs │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── syslog_ng │ │ │ └── hdfs │ │ │ ├── HdfsDestination.java │ │ │ ├── HdfsFile.java │ │ │ └── HdfsOptions.java │ ├── internal_repositories.gradle │ └── settings.gradle ├── java │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── native │ │ ├── java-class-loader.c │ │ ├── java-class-loader.h │ │ ├── java-config.c │ │ ├── java-config.h │ │ ├── java-destination.c │ │ ├── java-destination.h │ │ ├── java-grammar.ym │ │ ├── java-parser.c │ │ ├── java-parser.h │ │ ├── java-plugin.c │ │ ├── java_machine.c │ │ └── java_machine.h │ ├── proxies │ │ ├── internal-message-sender-proxy.c │ │ ├── java-destination-proxy.c │ │ ├── java-destination-proxy.h │ │ ├── java-logmsg-proxy.c │ │ ├── java-logmsg-proxy.h │ │ ├── java-template-proxy.c │ │ └── java-template-proxy.h │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── syslog_ng │ │ │ ├── DummyStructuredDestination.java │ │ │ ├── DummyTextDestination.java │ │ │ ├── InternalMessageSender.java │ │ │ ├── LogDestination.java │ │ │ ├── LogMessage.java │ │ │ ├── LogPipe.java │ │ │ ├── LogTemplate.java │ │ │ ├── StructuredLogDestination.java │ │ │ ├── SyslogNgClassLoader.java │ │ │ └── TextLogDestination.java │ └── tools │ │ └── syslog-ng.conf.example ├── json │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── dot-notation.c │ ├── dot-notation.h │ ├── format-json.c │ ├── format-json.h │ ├── json-parser-grammar.ym │ ├── json-parser-parser.c │ ├── json-parser-parser.h │ ├── json-parser.c │ ├── json-parser.h │ ├── json-plugin.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_dot_notation.c │ │ ├── test_format_json.c │ │ └── test_json_parser.c ├── kafka │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── kafka-dest-driver.c │ ├── kafka-dest-driver.h │ ├── kafka-dest-worker.c │ ├── kafka-dest-worker.h │ ├── kafka-grammar.ym │ ├── kafka-internal.h │ ├── kafka-parser.c │ ├── kafka-parser.h │ ├── kafka-plugin.c │ ├── kafka-props.c │ ├── kafka-props.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_kafka-props.c │ │ ├── test_kafka_config.c │ │ └── test_kafka_topic.c ├── kvformat │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── filterx-func-format-kv.c │ ├── filterx-func-format-kv.h │ ├── filterx-func-parse-kv.c │ ├── filterx-func-parse-kv.h │ ├── format-welf.c │ ├── format-welf.h │ ├── kv-parser-grammar.ym │ ├── kv-parser-parser.c │ ├── kv-parser-parser.h │ ├── kv-parser.c │ ├── kv-parser.h │ ├── kvformat-plugin.c │ ├── linux-audit-parser.c │ ├── linux-audit-parser.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_filterx_func_format_kv.c │ │ ├── test_filterx_func_parse_kv.c │ │ ├── test_format_welf.c │ │ ├── test_kv_parser.c │ │ └── test_linux_audit_scanner.c ├── linux-kmsg-format │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── linux-kmsg-format-plugin.c │ ├── linux-kmsg-format.c │ ├── linux-kmsg-format.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_linux_format_kmsg.c ├── map-value-pairs │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── map-value-pairs-grammar.ym │ ├── map-value-pairs-parser.c │ ├── map-value-pairs-parser.h │ ├── map-value-pairs-plugin.c │ ├── map-value-pairs.c │ └── map-value-pairs.h ├── metrics-probe │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── filterx │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── func-update-metric.c │ │ └── func-update-metric.h │ ├── metrics-probe-grammar.ym │ ├── metrics-probe-parser.c │ ├── metrics-probe-parser.h │ ├── metrics-probe-plugin.c │ ├── metrics-probe.c │ ├── metrics-probe.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── metrics-probe-test.h │ │ ├── test_filterx_func_update_metric.c │ │ └── test_metrics_probe.c ├── mqtt │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── destination │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── mqtt-destination.c │ │ ├── mqtt-destination.h │ │ ├── mqtt-worker.c │ │ └── mqtt-worker.h │ ├── mqtt-grammar.ym │ ├── mqtt-options.c │ ├── mqtt-options.h │ ├── mqtt-parser.c │ ├── mqtt-parser.h │ ├── mqtt-plugins.c │ └── source │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── mqtt-source.c │ │ └── mqtt-source.h ├── native │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── native-grammar.ym │ ├── native-parser.c │ ├── native-parser.h │ ├── parser.c │ └── parser.h ├── openbsd │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── openbsd-driver.c │ ├── openbsd-driver.h │ ├── openbsd-grammar.ym │ ├── openbsd-parser.c │ ├── openbsd-parser.h │ └── openbsd-plugin.c ├── pacctformat │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── pacct-format-plugin.c │ ├── pacct-format.c │ └── pacct-format.h ├── pseudofile │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── pseudofile-grammar.ym │ ├── pseudofile-parser.c │ ├── pseudofile-parser.h │ ├── pseudofile-plugin.c │ ├── pseudofile.c │ └── pseudofile.h ├── python-modules │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── pylintrc │ ├── setup.py │ ├── syslogng │ │ ├── __init__.py │ │ ├── confgen.py │ │ ├── debuggercli │ │ │ ├── __init__.py │ │ │ ├── choicecompleter.py │ │ │ ├── commandlinelexer.py │ │ │ ├── completer.py │ │ │ ├── completerlang.py │ │ │ ├── debuggercli.py │ │ │ ├── debuglang.py │ │ │ ├── editline.py │ │ │ ├── getoptlexer.py │ │ │ ├── langcompleter.py │ │ │ ├── lexer.py │ │ │ ├── lexertoken.py │ │ │ ├── macrocompleter.py │ │ │ ├── readline.py │ │ │ ├── syslognginternals.py │ │ │ ├── tablexer.py │ │ │ ├── templatelang.py │ │ │ ├── templatelexer.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_choicecompleter.py │ │ │ │ ├── test_commandlinelexer.py │ │ │ │ ├── test_completer.py │ │ │ │ ├── test_completerlang.py │ │ │ │ ├── test_debuggercli.py │ │ │ │ ├── test_debuglang.py │ │ │ │ ├── test_getoptlexer.py │ │ │ │ ├── test_langcompleter.py │ │ │ │ ├── test_lexer.py │ │ │ │ ├── test_macrocompleter.py │ │ │ │ ├── test_tablexer.py │ │ │ │ ├── test_templatelang.py │ │ │ │ ├── test_templatelexer.py │ │ │ │ └── test_tflang.py │ │ │ └── tflang.py │ │ ├── dest.py │ │ ├── logger.py │ │ ├── message.py │ │ ├── modules │ │ │ ├── example │ │ │ │ ├── __init__.py │ │ │ │ └── scl │ │ │ │ │ └── example.conf │ │ │ ├── hypr │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── scl │ │ │ │ │ └── hypr.conf │ │ │ │ └── tests │ │ │ │ │ ├── test_confgen.py │ │ │ │ │ └── test_hypr_audit_source.py │ │ │ ├── kubernetes │ │ │ │ ├── __init__.py │ │ │ │ ├── scl │ │ │ │ │ └── kubernetes.conf │ │ │ │ └── tests │ │ │ │ │ └── test_kubernetes_api_enrichment.py │ │ │ ├── s3 │ │ │ │ ├── __init__.py │ │ │ │ ├── compressable_file_buffer.py │ │ │ │ ├── s3_destination.py │ │ │ │ ├── s3_object.py │ │ │ │ └── scl │ │ │ │ │ └── s3.conf │ │ │ └── webhook │ │ │ │ ├── __init__.py │ │ │ │ ├── scl │ │ │ │ └── webhook.conf │ │ │ │ └── source.py │ │ ├── parser.py │ │ ├── persist.py │ │ ├── reloc.py │ │ ├── source.py │ │ └── template.py │ └── test_pymodules.sh ├── python │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── compat │ │ ├── compat-python.c │ │ └── compat-python.h │ ├── python-ack-tracker.c │ ├── python-ack-tracker.h │ ├── python-binding.c │ ├── python-binding.h │ ├── python-bookmark.c │ ├── python-bookmark.h │ ├── python-confgen.c │ ├── python-confgen.h │ ├── python-config.c │ ├── python-config.h │ ├── python-debugger.c │ ├── python-debugger.h │ ├── python-dest.c │ ├── python-dest.h │ ├── python-example.conf │ ├── python-fetcher.c │ ├── python-fetcher.h │ ├── python-flags.c │ ├── python-flags.h │ ├── python-global-code-loader.c │ ├── python-global-code-loader.h │ ├── python-global.c │ ├── python-global.h │ ├── python-grammar.ym │ ├── python-helpers.c │ ├── python-helpers.h │ ├── python-http-header.c │ ├── python-http-header.h │ ├── python-integerpointer.c │ ├── python-integerpointer.h │ ├── python-logger.c │ ├── python-logger.h │ ├── python-logmsg.c │ ├── python-logmsg.h │ ├── python-logparser.c │ ├── python-logparser.h │ ├── python-logtemplate-options.c │ ├── python-logtemplate-options.h │ ├── python-logtemplate.c │ ├── python-logtemplate.h │ ├── python-main.c │ ├── python-main.h │ ├── python-module.h │ ├── python-options.c │ ├── python-options.h │ ├── python-parser.c │ ├── python-parser.h │ ├── python-persist.c │ ├── python-persist.h │ ├── python-plugin.c │ ├── python-reloc.c │ ├── python-reloc.h │ ├── python-source.c │ ├── python-source.h │ ├── python-startup.c │ ├── python-startup.h │ ├── python-tf.c │ ├── python-tf.h │ ├── python-types.c │ ├── python-types.h │ ├── python-value-pairs.c │ ├── python-value-pairs.h │ ├── sngexample.py │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_python_ack_tracker.c │ │ ├── test_python_bookmark.c │ │ ├── test_python_logmsg.c │ │ ├── test_python_options.c │ │ ├── test_python_persist.c │ │ ├── test_python_persist_name.c │ │ ├── test_python_reloc.c │ │ ├── test_python_template.c │ │ └── test_python_tf.c ├── rate-limit-filter │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── rate-limit-grammar.ym │ ├── rate-limit-parser.c │ ├── rate-limit-parser.h │ ├── rate-limit-plugin.c │ ├── rate-limit.c │ └── rate-limit.h ├── redis │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── redis-grammar.ym │ ├── redis-parser.c │ ├── redis-parser.h │ ├── redis-worker.c │ ├── redis-worker.h │ ├── redis.c │ └── redis.h ├── regexp-parser │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── regexp-parser-grammar.ym │ ├── regexp-parser-parser.c │ ├── regexp-parser-parser.h │ ├── regexp-parser-plugin.c │ ├── regexp-parser.c │ ├── regexp-parser.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_regexp_parser.c ├── riemann │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── riemann-example.conf │ ├── riemann-grammar.ym │ ├── riemann-parser.c │ ├── riemann-parser.h │ ├── riemann-plugin.c │ ├── riemann-worker.c │ ├── riemann-worker.h │ ├── riemann.c │ └── riemann.h ├── secure-logging │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── secure-logging.c │ ├── slog.c │ ├── slog.h │ ├── slogencrypt │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── slogencrypt.c │ ├── slogkey │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── slogkey.c │ ├── slogverify │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── slogverify.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_secure_logging.c ├── stardate │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── stardate-plugin.c │ ├── stardate.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_stardate.c ├── syslogformat │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── filterx-func-format-syslog.c │ ├── filterx-func-format-syslog.h │ ├── sdata-parser.c │ ├── sdata-parser.h │ ├── syslog-format-plugin.c │ ├── syslog-format.c │ ├── syslog-format.h │ ├── syslog-parser-grammar.ym │ ├── syslog-parser-parser.c │ ├── syslog-parser-parser.h │ ├── syslog-parser.c │ ├── syslog-parser.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_syslog_format.c ├── system-source │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── system-expand.sh │ └── system-source.c ├── systemd-journal │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── journal-reader.c │ ├── journal-reader.h │ ├── journald-helper.c │ ├── journald-helper.h │ ├── journald-subsystem.c │ ├── journald-subsystem.h │ ├── systemd-journal-grammar.ym │ ├── systemd-journal-parser.c │ ├── systemd-journal-parser.h │ ├── systemd-journal-plugin.c │ ├── systemd-journal.c │ ├── systemd-journal.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── journald-mock.c │ │ ├── journald-mock.h │ │ ├── test-journald-mock.c │ │ ├── test-source.c │ │ ├── test-source.h │ │ └── test_systemd_journal.c ├── tagsparser │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── tags-parser-grammar.ym │ ├── tags-parser-parser.c │ ├── tags-parser-parser.h │ ├── tags-parser-plugin.c │ ├── tags-parser.c │ ├── tags-parser.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── test_tagsparser.c ├── timestamp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.md │ ├── date-parser.c │ ├── date-parser.h │ ├── rewrite-fix-timezone.c │ ├── rewrite-fix-timezone.h │ ├── rewrite-guess-timezone.c │ ├── rewrite-guess-timezone.h │ ├── rewrite-set-timezone.c │ ├── rewrite-set-timezone.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── test_date.c │ │ └── test_format_date.c │ ├── tf-format-date.c │ ├── tf-format-date.h │ ├── timestamp-grammar.ym │ ├── timestamp-parser.c │ ├── timestamp-parser.h │ └── timestamp-plugin.c └── xml │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── filterx-func-format-windows-eventlog-xml.c │ ├── filterx-func-format-windows-eventlog-xml.h │ ├── filterx-func-format-xml.c │ ├── filterx-func-format-xml.h │ ├── filterx-parse-windows-eventlog-xml.c │ ├── filterx-parse-windows-eventlog-xml.h │ ├── filterx-parse-xml.c │ ├── filterx-parse-xml.h │ ├── tests │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── test_filterx_parse_windows_eventlog_xml.c │ ├── test_filterx_parse_xml.c │ ├── test_windows_eventlog_xml_parser.c │ └── test_xml_parser.c │ ├── windows-eventlog-xml-parser.c │ ├── windows-eventlog-xml-parser.h │ ├── xml-grammar.ym │ ├── xml-parser.c │ ├── xml-parser.h │ ├── xml-plugin.c │ ├── xml-private.h │ ├── xml.c │ └── xml.h ├── news ├── README.md ├── create-newsfile.py ├── feature-855.md ├── feature-866.md ├── feature-875.md └── next-pr-id.py ├── optional-dev-requirements.txt ├── packaging ├── Makefile.am ├── README.md ├── debian │ ├── MPL │ ├── README.source │ ├── axosyslog-core.NEWS │ ├── axosyslog-core.dirs │ ├── axosyslog-core.install │ ├── axosyslog-core.manpages │ ├── axosyslog-core.postrm │ ├── axosyslog-core.preinst │ ├── axosyslog-core.prerm │ ├── axosyslog-core.syslog-ng.default │ ├── axosyslog-core.syslog-ng.init │ ├── axosyslog-core.syslog-ng.logcheck.ignore.paranoid │ ├── axosyslog-core.syslog-ng.logcheck.ignore.server │ ├── axosyslog-core.syslog-ng.logcheck.violations.ignore │ ├── axosyslog-core.syslog-ng.logrotate │ ├── axosyslog-core.syslog-ng.upstart │ ├── axosyslog-dev.install │ ├── axosyslog-mod-add-contextual-data.install │ ├── axosyslog-mod-amqp.docs │ ├── axosyslog-mod-amqp.install │ ├── axosyslog-mod-bpf.install │ ├── axosyslog-mod-cloud-auth.install │ ├── axosyslog-mod-common.maintscript │ ├── axosyslog-mod-examples.install │ ├── axosyslog-mod-geoip2.install │ ├── axosyslog-mod-getent.install │ ├── axosyslog-mod-graphite.install │ ├── axosyslog-mod-grpc.install │ ├── axosyslog-mod-hdfs.install │ ├── axosyslog-mod-http.install │ ├── axosyslog-mod-java-common-lib.install │ ├── axosyslog-mod-java.install │ ├── axosyslog-mod-map-value-pairs.install │ ├── axosyslog-mod-mongodb.install │ ├── axosyslog-mod-mongodb.postinst │ ├── axosyslog-mod-mongodb.postrm │ ├── axosyslog-mod-mongodb.preinst │ ├── axosyslog-mod-mqtt.install │ ├── axosyslog-mod-python.install │ ├── axosyslog-mod-python.postinst │ ├── axosyslog-mod-rdkafka.install │ ├── axosyslog-mod-redis.install │ ├── axosyslog-mod-riemann.install │ ├── axosyslog-mod-slog.install │ ├── axosyslog-mod-slog.manpages │ ├── axosyslog-mod-smtp.install │ ├── axosyslog-mod-snmp.install │ ├── axosyslog-mod-sql.install │ ├── axosyslog-mod-sql.postinst │ ├── axosyslog-mod-sql.postrm │ ├── axosyslog-mod-sql.preinst │ ├── axosyslog-mod-stardate.install │ ├── axosyslog-mod-stomp.install │ ├── axosyslog-mod-xml-parser.install │ ├── axosyslog-scl.install │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── man │ │ └── update-patterndb.1 │ ├── not-installed │ ├── rules │ ├── source │ │ ├── format │ │ ├── options │ │ └── patch-header │ ├── syslog-ng.conf │ ├── syslog-ng.systemd │ ├── tests │ │ ├── baseconfig │ │ ├── basic │ │ ├── compile-incubator │ │ ├── config.syslog │ │ ├── control │ │ ├── testinitscript │ │ └── upgrade │ ├── tools │ │ └── list-modules.sh │ ├── tty10.kfreebsd.conf │ ├── tty10.linux.conf │ └── watch ├── package-indexer │ ├── .gitignore │ ├── Dockerfile │ ├── cdn │ │ ├── __init__.py │ │ ├── azure_cdn.py │ │ ├── cdn.py │ │ └── cloudflare_cdn.py │ ├── config │ │ ├── __init__.py │ │ └── config.py │ ├── example-cfg.yml │ ├── index-packages.py │ ├── indexer │ │ ├── __init__.py │ │ ├── apt_conf │ │ │ ├── nightly.conf │ │ │ └── stable.conf │ │ ├── deb_indexer.py │ │ ├── indexer.py │ │ ├── rpm_indexer.py │ │ └── utils.py │ ├── pyproject.toml │ └── remote_storage_synchronizer │ │ ├── __init__.py │ │ ├── azure_container_synchronizer.py │ │ ├── remote_storage_synchronizer.py │ │ └── s3_bucket_synchronizer.py └── rhel │ ├── axosyslog.spec │ ├── syslog-ng.conf │ ├── syslog-ng.logrotate │ ├── syslog-ng.logrotate7 │ └── syslog-ng.service ├── persist-tool ├── CMakeLists.txt ├── Makefile.am ├── add.c ├── add.h ├── dump.c ├── dump.h ├── generate.c ├── generate.h ├── persist-tool.c └── persist-tool.h ├── requirements.txt ├── scl ├── CMakeLists.txt ├── Makefile.am ├── apache │ └── apache.conf ├── arr │ └── arr.conf ├── azure │ └── azure-monitor.conf ├── cee │ └── adapter.conf ├── checkpoint │ └── plugin.conf ├── cim │ ├── adapter.conf │ └── template.conf ├── cisco │ └── plugin.conf ├── collectd │ └── plugin.conf ├── darwinosl │ ├── darwinosl-metadata-db.csv │ └── plugin.conf ├── default-network-drivers │ └── plugin.conf ├── discord │ └── discord.conf ├── elasticsearch │ ├── elastic-datastream.conf │ └── elastic-http.conf ├── ewmm │ └── ewmm.conf ├── fortigate │ └── fortigate.conf ├── google │ └── google-pubsub.conf ├── graphite │ ├── README │ └── plugin.conf ├── graylog2 │ └── plugin.conf ├── hdfs │ └── plugin.conf ├── iptables │ └── iptables.conf ├── jellyfin │ └── jellyfin.conf ├── junos │ └── plugin.conf ├── kafka │ └── kafka.conf ├── linux-audit │ └── linux-audit.conf ├── loadbalancer │ ├── gen-loadbalancer.sh │ └── plugin.conf ├── loggly │ └── loggly.conf ├── logmatic │ └── logmatic.conf ├── logscale │ └── logscale.conf ├── mariadb │ └── audit.conf ├── mbox │ └── mbox.conf ├── netskope │ └── plugin.conf ├── nodejs │ └── plugin.conf ├── openobserve │ └── openobserve.conf ├── opensearch │ └── opensearch.conf ├── osquery │ └── plugin.conf ├── pacct │ └── plugin.conf ├── paloalto │ └── panos.conf ├── pgsql │ └── pgsql.conf ├── pihole │ └── pihole.conf ├── python │ └── python-modules.conf ├── qbittorrent │ └── qbittorrent.conf ├── rewrite │ └── cc-mask.conf ├── scl.conf ├── slack │ └── slack.conf ├── snmptrap │ └── snmptrapd-source.conf ├── solaris │ └── plugin.conf ├── splunk │ └── splunk.conf ├── sudo │ └── sudo.conf ├── sumologic │ └── sumologic.conf ├── syslog-ng.conf ├── syslogconf │ ├── README │ ├── convert-syslogconf.awk │ └── plugin.conf ├── system │ └── plugin.conf ├── telegram │ └── telegram.conf ├── websense │ └── plugin.conf └── windowseventlog │ ├── plugin.conf │ └── windowseventlog.xml ├── scripts ├── CMakeLists.txt ├── Makefile.am ├── build-python-venv.sh ├── get-libjvm-path.sh ├── make-and-check.sh ├── plugin-skeleton-creator │ ├── Makefile.am │ ├── create_plugin.sh │ ├── plugin_template_CMakeLists.txt │ ├── plugin_template_Makefile.am │ ├── plugin_template_grammar.ym │ ├── plugin_template_parser.c │ ├── plugin_template_parser.h │ └── plugin_template_plugin.c ├── rm-extra-msg-sentinel.sh ├── style-checker.sh ├── syslog-ng-update-virtualenv.in ├── test-grep.sh ├── update-patterndb.in └── version.sh ├── syslog-ng-ctl ├── CMakeLists.txt ├── Makefile.am ├── commands │ ├── attach.c │ ├── attach.h │ ├── commands.c │ ├── commands.h │ ├── config.c │ ├── config.h │ ├── credentials.c │ ├── credentials.h │ ├── ctl-stats.c │ ├── ctl-stats.h │ ├── healthcheck.c │ ├── healthcheck.h │ ├── license.c │ ├── license.h │ ├── log-level.c │ ├── log-level.h │ ├── query.c │ ├── query.h │ ├── verbose.c │ └── verbose.h ├── control-client-unix.c ├── control-client.c ├── control-client.h └── syslog-ng-ctl.c ├── syslog-ng ├── CMakeLists.txt ├── Makefile.am ├── main.c └── wrapper.c └── tests ├── CMakeLists.txt ├── Makefile.am ├── build-log-cflags-propagation.sh ├── collect-cov.sh ├── commits └── check.sh ├── copyright ├── check.sh ├── license.text.GPLv3+.txt ├── license.text.GPLv3+_SSL.txt └── policy ├── functional ├── CMakeLists.txt ├── Makefile.am ├── control.py ├── func_test.py ├── globals.py ├── log.py ├── messagecheck.py ├── messagegen.py ├── rnd.in ├── runtests.sh ├── sngtestmod.py ├── ssl.crt ├── ssl.key ├── test_file_source.py ├── test_file_source_exclude.py ├── test_filters.py ├── test_input_drivers.py ├── test_map_value_pairs.py ├── test_performance.py ├── test_python.py └── test_sql.py ├── light ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── Makefile.am ├── README.md ├── functional_tests │ ├── Makefile.am │ ├── config_change │ │ ├── test_backtick_substitution.py │ │ ├── test_manipulating_config_between_reload.py │ │ └── test_python_custom_options.py │ ├── conftest.py │ ├── destination_drivers │ │ ├── clickhouse_destination │ │ │ ├── inputs_and_outputs_for_complex_types.py │ │ │ ├── test_clickhouse_complex_types.py │ │ │ ├── test_clickhouse_connection_options.py │ │ │ └── test_clickhouse_schema_options.py │ │ ├── example_destination │ │ │ └── test_example_destination.py │ │ ├── network_destination │ │ │ ├── test_kept_alive_tls_connection_doing_handshake_after_reload.py │ │ │ └── test_network_destination_transport.py │ │ ├── snmp_destination │ │ │ ├── general │ │ │ │ ├── test_snmp_destination_acceptance.py │ │ │ │ ├── test_snmp_destination_missing_snmp_obj.py │ │ │ │ ├── test_snmp_destination_missing_trap_obj.py │ │ │ │ ├── test_snmp_destination_reload_statistics.py │ │ │ │ └── test_snmp_destination_wrong_version.py │ │ │ └── v2c │ │ │ │ ├── test_snmp_destination_v2c_cisco_ios_traps.py │ │ │ │ ├── test_snmp_destination_v2c_custom_community.py │ │ │ │ └── test_snmp_destination_v2c_using_macro_snmp_obj.py │ │ ├── unix_dgram_destination │ │ │ └── test_unix_dgram_destination.py │ │ └── unix_stream_destination │ │ │ └── test_unix_stream_destination.py │ ├── filters │ │ ├── rate-limit │ │ │ └── test_rate_limit_filter_acceptance.py │ │ ├── test_filter_reference.py │ │ └── test_multiple_filters.py │ ├── filterx │ │ ├── cache_json_file.json │ │ ├── test_filterx.py │ │ ├── test_filterx_cache_json_file.py │ │ ├── test_filterx_control.py │ │ ├── test_filterx_cow.py │ │ ├── test_filterx_dict.py │ │ ├── test_filterx_failure_info.py │ │ ├── test_filterx_funcs.py │ │ ├── test_filterx_scope.py │ │ └── test_filterx_update_metric.py │ ├── logpath │ │ ├── __init__.py │ │ ├── test_conditionals.py │ │ ├── test_flags_catch_all.py │ │ ├── test_flags_fallback.py │ │ ├── test_flags_final.py │ │ ├── test_midpoint_destinations.py │ │ ├── test_multiple_embedded_logpaths.py │ │ ├── test_multiple_flags.py │ │ ├── test_named_logpaths.py │ │ ├── test_named_logpaths_with_catchall_flag.py │ │ ├── test_named_logpaths_with_fallback_flag.py │ │ └── test_named_logpaths_with_final_flag.py │ ├── parsers │ │ ├── app-parser │ │ │ ├── test_app_parser.py │ │ │ ├── test_topic_syslog.py │ │ │ └── test_topic_syslog_raw.py │ │ ├── app-transform │ │ │ ├── test_app_transform_filterx.py │ │ │ ├── test_app_transform_parser.py │ │ │ └── test_app_transform_parser_and_filterx.py │ │ ├── checkpoint │ │ │ └── test_checkpoint.py │ │ ├── cisco-parser │ │ │ └── test_cisco_parser.py │ │ ├── csv-parser │ │ │ └── test_csv_parser.py │ │ ├── db_parser │ │ │ └── test_db_parser.py │ │ ├── group-lines-parser │ │ │ └── test_group_lines_parser.py │ │ ├── mariadb-parser │ │ │ └── test_mariadb_audit_parser.py │ │ ├── metrics-probe │ │ │ └── test_metrics_probe.py │ │ ├── panos │ │ │ └── test_panos_parser.py │ │ ├── postgresql-csvlog-parser │ │ │ └── test_postgresql_csvlog_parser.py │ │ ├── regexp-parser │ │ │ └── test_regexp_parser.py │ │ └── sdata-parser │ │ │ └── test_sdata_parser.py │ ├── rewrites │ │ ├── cc-mask │ │ │ └── test_cc_mask_and_cc_hash.py │ │ ├── set-pri │ │ │ └── test_set_pri.py │ │ └── set-tag │ │ │ └── test_set_tag.py │ ├── source_drivers │ │ ├── file_source │ │ │ ├── test_acceptance.py │ │ │ ├── test_follow_freq_value.py │ │ │ └── test_no_header_flag.py │ │ ├── generator_source │ │ │ └── test_generator_source.py │ │ ├── internal_source │ │ │ └── test_internal_acceptance.py │ │ ├── network_source │ │ │ ├── proxyprotocol │ │ │ │ ├── test_pp_acceptance.py │ │ │ │ ├── test_pp_reload.py │ │ │ │ ├── test_pp_with_multiple_clients.py │ │ │ │ ├── test_pp_with_simple_tcp_connection.py │ │ │ │ └── test_pp_with_syslog_proto.py │ │ │ ├── test_client_port.py │ │ │ ├── test_network_transports.py │ │ │ ├── test_syslog_parser_timestamp_spinning.py │ │ │ └── text_with_nuls │ │ │ │ ├── test_embedded_nul.py │ │ │ │ └── test_nul_terminated.py │ │ ├── opentelemetry_source │ │ │ └── test_opentelemetry_source_acceptance.py │ │ ├── syslog_source │ │ │ ├── auto │ │ │ │ └── test_auto_proto.py │ │ │ └── test_syslog_transports.py │ │ ├── unix_dgram_source │ │ │ └── test_unix_dgram_source_acceptance.py │ │ └── webhook_source │ │ │ └── test_webhook_source_acceptance.py │ ├── source_options │ │ └── test_use_syslogng_pid.py │ ├── template_functions │ │ ├── graphite-output │ │ │ └── test_graphite_output.py │ │ └── slog │ │ │ └── test_secure_logging.py │ ├── templates │ │ └── test_template_stmt.py │ ├── tools │ │ └── loggen │ │ │ └── test_loggen_with_reconnect.py │ └── value-pairs │ │ └── test_value_pairs.py ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── scripts │ └── process_valgrind_output.py ├── shared_files │ ├── ca.crt │ ├── ca.key │ ├── clickhouse.proto │ ├── clickhouse_nested_types.proto │ ├── clickhouse_non_nested_protobuf_types.proto │ ├── clickhouse_server_config.xml │ ├── clickhouse_server_types.proto │ ├── clickhouse_users.xml │ ├── gdb_exec.sh │ ├── server-protected-asdfg.crt │ ├── server-protected-asdfg.key │ ├── server.crt │ ├── server.key │ ├── valid-ca.crt │ ├── valid-ca.key │ ├── valid-localhost.crt │ └── valid-localhost.key ├── src │ └── axosyslog_light │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── common │ │ ├── __init__.py │ │ ├── asynchronous.py │ │ ├── blocking.py │ │ ├── file.py │ │ ├── network.py │ │ ├── network_operations.py │ │ ├── operations.py │ │ ├── pytest_operations.py │ │ ├── random_id.py │ │ ├── session_data.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_blocking.py │ │ ├── driver_io │ │ ├── __init__.py │ │ ├── clickhouse │ │ │ └── clickhouse_io.py │ │ ├── file │ │ │ ├── __init__.py │ │ │ ├── file_io.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_file_io.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ └── http_io.py │ │ ├── message_readers.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ └── network_io.py │ │ ├── opentelemetry │ │ │ └── opentelemetry_io.py │ │ └── unix_dgram │ │ │ └── unix_dgram_io.py │ │ ├── executors │ │ ├── __init__.py │ │ ├── command_executor.py │ │ ├── process_executor.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_command_executor.py │ │ │ └── test_process_executor.py │ │ ├── fixtures.py │ │ ├── helpers │ │ ├── __init__.py │ │ ├── clickhouse │ │ │ └── clickhouse_server_executor.py │ │ ├── loggen │ │ │ ├── __init__.py │ │ │ ├── loggen.py │ │ │ ├── loggen_docker_executor.py │ │ │ ├── loggen_executor.py │ │ │ └── loggen_local_executor.py │ │ ├── secure_logging │ │ │ ├── __init__.py │ │ │ └── conftest.py │ │ └── snmptrapd │ │ │ ├── __init__.py │ │ │ └── conftest.py │ │ ├── message_builder │ │ ├── __init__.py │ │ ├── bsd_format.py │ │ ├── log_message.py │ │ └── tests │ │ │ └── __init__.py │ │ ├── self_test_fixtures.py │ │ ├── syslog_ng │ │ ├── __init__.py │ │ ├── console_log_reader.py │ │ ├── syslog_ng.py │ │ ├── syslog_ng_docker_executor.py │ │ ├── syslog_ng_executor.py │ │ ├── syslog_ng_local_executor.py │ │ ├── syslog_ng_paths.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_syslog_ng_paths.py │ │ ├── syslog_ng_config │ │ ├── __init__.py │ │ ├── renderer.py │ │ ├── statement_group.py │ │ ├── statements │ │ │ ├── __init__.py │ │ │ ├── destinations │ │ │ │ ├── __init__.py │ │ │ │ ├── clickhouse_destination.py │ │ │ │ ├── destination_driver.py │ │ │ │ ├── example_destination.py │ │ │ │ ├── file_destination.py │ │ │ │ ├── network_destination.py │ │ │ │ ├── snmp_destination.py │ │ │ │ ├── unix_dgram_destination.py │ │ │ │ └── unix_stream_destination.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── filter.py │ │ │ ├── filterx │ │ │ │ └── filterx.py │ │ │ ├── logpath │ │ │ │ ├── __init__.py │ │ │ │ ├── log_context_scl_block.py │ │ │ │ ├── logpath.py │ │ │ │ └── logpath_if.py │ │ │ ├── parsers │ │ │ │ ├── __init__.py │ │ │ │ ├── db_parser.py │ │ │ │ └── parser.py │ │ │ ├── rewrite │ │ │ │ ├── __init__.py │ │ │ │ └── rewrite.py │ │ │ ├── sources │ │ │ │ ├── __init__.py │ │ │ │ ├── example_msg_generator_source.py │ │ │ │ ├── file_source.py │ │ │ │ ├── inner_source.py │ │ │ │ ├── internal_source.py │ │ │ │ ├── network_source.py │ │ │ │ ├── opentelemetry_source.py │ │ │ │ ├── source_driver.py │ │ │ │ ├── syslog_source.py │ │ │ │ ├── unix_dgram_source.py │ │ │ │ └── webhook_source.py │ │ │ └── template │ │ │ │ ├── __init__.py │ │ │ │ └── template.py │ │ └── syslog_ng_config.py │ │ ├── syslog_ng_ctl │ │ ├── __init__.py │ │ ├── legacy_stats_handler.py │ │ ├── prometheus_stats_handler.py │ │ ├── syslog_ng_ctl.py │ │ ├── syslog_ng_ctl_docker_executor.py │ │ ├── syslog_ng_ctl_executor.py │ │ └── syslog_ng_ctl_local_executor.py │ │ └── testcase_parameters │ │ ├── __init__.py │ │ └── testcase_parameters.py └── tox.ini ├── loggen ├── CMakeLists.txt ├── Makefile.am ├── file_reader.c ├── file_reader.h ├── loggen.c ├── loggen.md ├── loggen_helper.c ├── loggen_helper.h ├── loggen_plugin.c ├── loggen_plugin.h ├── logline_generator.c ├── logline_generator.h ├── socket_plugin │ ├── CMakeLists.txt │ ├── Makefile.am │ └── socket_plugin.c ├── ssl_plugin │ ├── CMakeLists.txt │ ├── Makefile.am │ └── ssl_plugin.c └── tests │ ├── CMakeLists.txt │ ├── Makefile.am │ └── test_loggen_filereader.c └── valgrind └── unit-test-leak.supp /.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.astylerc -------------------------------------------------------------------------------- /.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.ctags -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/.mailmap -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/COPYING -------------------------------------------------------------------------------- /DCO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/DCO.md -------------------------------------------------------------------------------- /DEVELOPMENT-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/DEVELOPMENT-GUIDE.md -------------------------------------------------------------------------------- /GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/GPL.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 4.20.1 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autogen.sh -------------------------------------------------------------------------------- /autotools/Mk/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES lex-rules.am DESTINATION share/syslog-ng/tools) 2 | -------------------------------------------------------------------------------- /autotools/Mk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/Mk/Makefile.am -------------------------------------------------------------------------------- /autotools/Mk/lex-rules.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/Mk/lex-rules.am -------------------------------------------------------------------------------- /autotools/Mk/python-venv.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/Mk/python-venv.am -------------------------------------------------------------------------------- /autotools/Mk/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/Mk/subdir.mk -------------------------------------------------------------------------------- /autotools/dist.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/dist.conf.in -------------------------------------------------------------------------------- /autotools/sub-configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/sub-configure.sh -------------------------------------------------------------------------------- /autotools/syslog-ng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/autotools/syslog-ng.pc.in -------------------------------------------------------------------------------- /charts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/charts/Makefile.am -------------------------------------------------------------------------------- /charts/axosyslog/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/charts/axosyslog/Chart.yaml -------------------------------------------------------------------------------- /charts/axosyslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/charts/axosyslog/README.md -------------------------------------------------------------------------------- /cmake/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/cmake/Makefile.am -------------------------------------------------------------------------------- /cmake/add_module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/cmake/add_module.cmake -------------------------------------------------------------------------------- /cmake/add_tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/cmake/add_tests.cmake -------------------------------------------------------------------------------- /cmake/module_switch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/cmake/module_switch.cmake -------------------------------------------------------------------------------- /cmake/syslog-ng-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/cmake/syslog-ng-config.h.in -------------------------------------------------------------------------------- /cmake/syslog-ng.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/cmake/syslog-ng.pc.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/Brewfile -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/relogger.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/relogger.pl -------------------------------------------------------------------------------- /contrib/selinux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/selinux/README -------------------------------------------------------------------------------- /contrib/selinux/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/selinux/labels.txt -------------------------------------------------------------------------------- /contrib/selinux/src/syslog_ng.el7.te.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/selinux/src/syslog_ng.module.version: -------------------------------------------------------------------------------- 1 | policy_module(syslog_ng, 1.0.10) 2 | 3 | -------------------------------------------------------------------------------- /contrib/syslog-mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/syslog-mc -------------------------------------------------------------------------------- /contrib/syslog-ng-debun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/syslog-ng-debun -------------------------------------------------------------------------------- /contrib/syslog-ng.conf.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/syslog-ng.conf.doc -------------------------------------------------------------------------------- /contrib/syslog2ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/contrib/syslog2ng -------------------------------------------------------------------------------- /dbld/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | release/ 3 | install/ 4 | *~ 5 | -------------------------------------------------------------------------------- /dbld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/Makefile.am -------------------------------------------------------------------------------- /dbld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/README.md -------------------------------------------------------------------------------- /dbld/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/bootstrap -------------------------------------------------------------------------------- /dbld/build.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/build.manifest -------------------------------------------------------------------------------- /dbld/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/build/.gitignore -------------------------------------------------------------------------------- /dbld/builddeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/builddeps -------------------------------------------------------------------------------- /dbld/deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/deb -------------------------------------------------------------------------------- /dbld/distcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/distcheck -------------------------------------------------------------------------------- /dbld/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/functions.sh -------------------------------------------------------------------------------- /dbld/generate-rpm-specfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/generate-rpm-specfile -------------------------------------------------------------------------------- /dbld/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/images/README.md -------------------------------------------------------------------------------- /dbld/images/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/images/entrypoint.sh -------------------------------------------------------------------------------- /dbld/images/fake-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/images/fake-sudo.sh -------------------------------------------------------------------------------- /dbld/images/gosu.pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/images/gosu.pubkey -------------------------------------------------------------------------------- /dbld/images/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/images/hooks/build -------------------------------------------------------------------------------- /dbld/images/yum-builddep.sha1: -------------------------------------------------------------------------------- 1 | 81e78a89cdb1bdee953fb23c0d0beeacbb5f9253 /usr/bin/yum-builddep 2 | -------------------------------------------------------------------------------- /dbld/install/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/install/.gitignore -------------------------------------------------------------------------------- /dbld/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/make -------------------------------------------------------------------------------- /dbld/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/package -------------------------------------------------------------------------------- /dbld/packages.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/packages.manifest -------------------------------------------------------------------------------- /dbld/pip_packages.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbld/pkg-tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/pkg-tarball -------------------------------------------------------------------------------- /dbld/prepare-image-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/prepare-image-build -------------------------------------------------------------------------------- /dbld/prepare-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/prepare-release -------------------------------------------------------------------------------- /dbld/release/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/release/.gitignore -------------------------------------------------------------------------------- /dbld/rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/rpm -------------------------------------------------------------------------------- /dbld/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/rules -------------------------------------------------------------------------------- /dbld/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/shell -------------------------------------------------------------------------------- /dbld/tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dbld/tarball -------------------------------------------------------------------------------- /dbld/tarball-changes.ignore: -------------------------------------------------------------------------------- 1 | ^/dbld 2 | ^/.git 3 | ^$ 4 | -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /doc/ChangeLog.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/ChangeLog.0 -------------------------------------------------------------------------------- /doc/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/ChangeLog.1 -------------------------------------------------------------------------------- /doc/ChangeLog.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/ChangeLog.2 -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/axoflow-logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/axoflow-logo-color.svg -------------------------------------------------------------------------------- /doc/axoflow-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/axoflow-logo-white.svg -------------------------------------------------------------------------------- /doc/axosyslog-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/axosyslog-white.svg -------------------------------------------------------------------------------- /doc/axosyslog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/axosyslog.svg -------------------------------------------------------------------------------- /doc/man/.gitignore: -------------------------------------------------------------------------------- 1 | /syslog-ng-ose-guides 2 | -------------------------------------------------------------------------------- /doc/man/dqtool.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/dqtool.1.xml -------------------------------------------------------------------------------- /doc/man/loggen.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/loggen.1.xml -------------------------------------------------------------------------------- /doc/man/pdbtool.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/pdbtool.1.xml -------------------------------------------------------------------------------- /doc/man/persist-tool.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/persist-tool.1.xml -------------------------------------------------------------------------------- /doc/man/slogencrypt.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/slogencrypt.1.xml -------------------------------------------------------------------------------- /doc/man/slogkey.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/slogkey.1.xml -------------------------------------------------------------------------------- /doc/man/slogverify.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/slogverify.1.xml -------------------------------------------------------------------------------- /doc/man/syslog-ng-ctl.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/syslog-ng-ctl.1.xml -------------------------------------------------------------------------------- /doc/man/syslog-ng.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/syslog-ng.8.xml -------------------------------------------------------------------------------- /doc/man/update-manpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/man/update-manpages.sh -------------------------------------------------------------------------------- /doc/xsd/patterndb-1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/xsd/patterndb-1.xsd -------------------------------------------------------------------------------- /doc/xsd/patterndb-2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/xsd/patterndb-2.xsd -------------------------------------------------------------------------------- /doc/xsd/patterndb-3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/xsd/patterndb-3.xsd -------------------------------------------------------------------------------- /doc/xsd/patterndb-4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/xsd/patterndb-4.xsd -------------------------------------------------------------------------------- /doc/xsd/patterndb-5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/xsd/patterndb-5.xsd -------------------------------------------------------------------------------- /doc/xsd/patterndb-6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/doc/xsd/patterndb-6.xsd -------------------------------------------------------------------------------- /docker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/docker/Makefile.am -------------------------------------------------------------------------------- /docker/axosyslog.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/docker/axosyslog.dockerfile -------------------------------------------------------------------------------- /docker/tests/smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/docker/tests/smoke.sh -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/ack-tracker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/ack-tracker/Makefile.am -------------------------------------------------------------------------------- /lib/ack-tracker/bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/ack-tracker/bookmark.h -------------------------------------------------------------------------------- /lib/afinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/afinter.c -------------------------------------------------------------------------------- /lib/afinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/afinter.h -------------------------------------------------------------------------------- /lib/alarms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/alarms.c -------------------------------------------------------------------------------- /lib/alarms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/alarms.h -------------------------------------------------------------------------------- /lib/apphook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/apphook.c -------------------------------------------------------------------------------- /lib/apphook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/apphook.h -------------------------------------------------------------------------------- /lib/atomic-gssize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/atomic-gssize.h -------------------------------------------------------------------------------- /lib/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/atomic.h -------------------------------------------------------------------------------- /lib/block-ref-grammar.ym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/block-ref-grammar.ym -------------------------------------------------------------------------------- /lib/block-ref-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/block-ref-parser.c -------------------------------------------------------------------------------- /lib/block-ref-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/block-ref-parser.h -------------------------------------------------------------------------------- /lib/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cache.c -------------------------------------------------------------------------------- /lib/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cache.h -------------------------------------------------------------------------------- /lib/cfg-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-args.c -------------------------------------------------------------------------------- /lib/cfg-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-args.h -------------------------------------------------------------------------------- /lib/cfg-block-generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-block-generator.c -------------------------------------------------------------------------------- /lib/cfg-block-generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-block-generator.h -------------------------------------------------------------------------------- /lib/cfg-block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-block.c -------------------------------------------------------------------------------- /lib/cfg-block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-block.h -------------------------------------------------------------------------------- /lib/cfg-grammar-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-grammar-internal.c -------------------------------------------------------------------------------- /lib/cfg-grammar-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-grammar-internal.h -------------------------------------------------------------------------------- /lib/cfg-grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-grammar.y -------------------------------------------------------------------------------- /lib/cfg-graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-graph.c -------------------------------------------------------------------------------- /lib/cfg-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-graph.h -------------------------------------------------------------------------------- /lib/cfg-lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-lex.l -------------------------------------------------------------------------------- /lib/cfg-lexer-subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-lexer-subst.c -------------------------------------------------------------------------------- /lib/cfg-lexer-subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-lexer-subst.h -------------------------------------------------------------------------------- /lib/cfg-lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-lexer.c -------------------------------------------------------------------------------- /lib/cfg-lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-lexer.h -------------------------------------------------------------------------------- /lib/cfg-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-parser.c -------------------------------------------------------------------------------- /lib/cfg-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-parser.h -------------------------------------------------------------------------------- /lib/cfg-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-path.c -------------------------------------------------------------------------------- /lib/cfg-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-path.h -------------------------------------------------------------------------------- /lib/cfg-persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-persist.c -------------------------------------------------------------------------------- /lib/cfg-persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-persist.h -------------------------------------------------------------------------------- /lib/cfg-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-source.c -------------------------------------------------------------------------------- /lib/cfg-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-source.h -------------------------------------------------------------------------------- /lib/cfg-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-tree.c -------------------------------------------------------------------------------- /lib/cfg-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg-tree.h -------------------------------------------------------------------------------- /lib/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg.c -------------------------------------------------------------------------------- /lib/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/cfg.h -------------------------------------------------------------------------------- /lib/children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/children.c -------------------------------------------------------------------------------- /lib/children.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/children.h -------------------------------------------------------------------------------- /lib/compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/CMakeLists.txt -------------------------------------------------------------------------------- /lib/compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/Makefile.am -------------------------------------------------------------------------------- /lib/compat/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/compat.h -------------------------------------------------------------------------------- /lib/compat/cpp-end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/cpp-end.h -------------------------------------------------------------------------------- /lib/compat/cpp-start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/cpp-start.h -------------------------------------------------------------------------------- /lib/compat/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/curl.h -------------------------------------------------------------------------------- /lib/compat/getent-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent-generic.c -------------------------------------------------------------------------------- /lib/compat/getent-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent-generic.h -------------------------------------------------------------------------------- /lib/compat/getent-openbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent-openbsd.c -------------------------------------------------------------------------------- /lib/compat/getent-openbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent-openbsd.h -------------------------------------------------------------------------------- /lib/compat/getent-sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent-sun.c -------------------------------------------------------------------------------- /lib/compat/getent-sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent-sun.h -------------------------------------------------------------------------------- /lib/compat/getent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getent.h -------------------------------------------------------------------------------- /lib/compat/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getline.c -------------------------------------------------------------------------------- /lib/compat/getutent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getutent.c -------------------------------------------------------------------------------- /lib/compat/getutent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/getutent.h -------------------------------------------------------------------------------- /lib/compat/glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/glib.c -------------------------------------------------------------------------------- /lib/compat/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/glib.h -------------------------------------------------------------------------------- /lib/compat/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/inet_aton.c -------------------------------------------------------------------------------- /lib/compat/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/inttypes.h -------------------------------------------------------------------------------- /lib/compat/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/json.h -------------------------------------------------------------------------------- /lib/compat/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/lfs.h -------------------------------------------------------------------------------- /lib/compat/memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/memrchr.c -------------------------------------------------------------------------------- /lib/compat/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/pcre.h -------------------------------------------------------------------------------- /lib/compat/pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/pio.c -------------------------------------------------------------------------------- /lib/compat/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/pio.h -------------------------------------------------------------------------------- /lib/compat/pow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/pow2.h -------------------------------------------------------------------------------- /lib/compat/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/socket.h -------------------------------------------------------------------------------- /lib/compat/strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/strcasestr.c -------------------------------------------------------------------------------- /lib/compat/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/string.h -------------------------------------------------------------------------------- /lib/compat/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/strnlen.c -------------------------------------------------------------------------------- /lib/compat/strtok_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/strtok_r.c -------------------------------------------------------------------------------- /lib/compat/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_unit_test(CRITERION TARGET test_strtok_r) 2 | -------------------------------------------------------------------------------- /lib/compat/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/time.c -------------------------------------------------------------------------------- /lib/compat/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/time.h -------------------------------------------------------------------------------- /lib/compat/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/compat/un.h -------------------------------------------------------------------------------- /lib/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/console.c -------------------------------------------------------------------------------- /lib/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/console.h -------------------------------------------------------------------------------- /lib/control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/control/CMakeLists.txt -------------------------------------------------------------------------------- /lib/control/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/control/Makefile.am -------------------------------------------------------------------------------- /lib/control/control-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/control/control-main.c -------------------------------------------------------------------------------- /lib/control/control-main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/control/control-main.h -------------------------------------------------------------------------------- /lib/control/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/control/control.h -------------------------------------------------------------------------------- /lib/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/crypto.c -------------------------------------------------------------------------------- /lib/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/crypto.h -------------------------------------------------------------------------------- /lib/debugger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/debugger/CMakeLists.txt -------------------------------------------------------------------------------- /lib/debugger/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/debugger/Makefile.am -------------------------------------------------------------------------------- /lib/debugger/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/debugger/debugger.c -------------------------------------------------------------------------------- /lib/debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/debugger/debugger.h -------------------------------------------------------------------------------- /lib/debugger/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_unit_test(CRITERION TARGET test-debugger) 2 | -------------------------------------------------------------------------------- /lib/debugger/tracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/debugger/tracer.c -------------------------------------------------------------------------------- /lib/debugger/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/debugger/tracer.h -------------------------------------------------------------------------------- /lib/dnscache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/dnscache.c -------------------------------------------------------------------------------- /lib/dnscache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/dnscache.h -------------------------------------------------------------------------------- /lib/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/driver.c -------------------------------------------------------------------------------- /lib/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/driver.h -------------------------------------------------------------------------------- /lib/dynamic-window-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/dynamic-window-pool.c -------------------------------------------------------------------------------- /lib/dynamic-window-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/dynamic-window-pool.h -------------------------------------------------------------------------------- /lib/dynamic-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/dynamic-window.c -------------------------------------------------------------------------------- /lib/dynamic-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/dynamic-window.h -------------------------------------------------------------------------------- /lib/eventlog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/AUTHORS -------------------------------------------------------------------------------- /lib/eventlog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/CMakeLists.txt -------------------------------------------------------------------------------- /lib/eventlog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/COPYING -------------------------------------------------------------------------------- /lib/eventlog/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/CREDITS -------------------------------------------------------------------------------- /lib/eventlog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/ChangeLog -------------------------------------------------------------------------------- /lib/eventlog/ChangeLog.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/ChangeLog.0 -------------------------------------------------------------------------------- /lib/eventlog/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/NEWS -------------------------------------------------------------------------------- /lib/eventlog/doc/API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/doc/API.txt -------------------------------------------------------------------------------- /lib/eventlog/doc/DESIGN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/doc/DESIGN.txt -------------------------------------------------------------------------------- /lib/eventlog/src/evtctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtctx.c -------------------------------------------------------------------------------- /lib/eventlog/src/evtfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtfmt.c -------------------------------------------------------------------------------- /lib/eventlog/src/evtlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtlog.h -------------------------------------------------------------------------------- /lib/eventlog/src/evtmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtmaps.h -------------------------------------------------------------------------------- /lib/eventlog/src/evtout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtout.c -------------------------------------------------------------------------------- /lib/eventlog/src/evtrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtrec.c -------------------------------------------------------------------------------- /lib/eventlog/src/evtstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evtstr.c -------------------------------------------------------------------------------- /lib/eventlog/src/evttags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/src/evttags.c -------------------------------------------------------------------------------- /lib/eventlog/tests/evtfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/tests/evtfmt.c -------------------------------------------------------------------------------- /lib/eventlog/tests/evtrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/eventlog/tests/evtrec.c -------------------------------------------------------------------------------- /lib/fdhelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/fdhelpers.c -------------------------------------------------------------------------------- /lib/fdhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/fdhelpers.h -------------------------------------------------------------------------------- /lib/file-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/file-monitor.c -------------------------------------------------------------------------------- /lib/file-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/file-monitor.h -------------------------------------------------------------------------------- /lib/file-perms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/file-perms.c -------------------------------------------------------------------------------- /lib/file-perms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/file-perms.h -------------------------------------------------------------------------------- /lib/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/filter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/Makefile.am -------------------------------------------------------------------------------- /lib/filter/filter-call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-call.c -------------------------------------------------------------------------------- /lib/filter/filter-call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-call.h -------------------------------------------------------------------------------- /lib/filter/filter-cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-cmp.c -------------------------------------------------------------------------------- /lib/filter/filter-cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-cmp.h -------------------------------------------------------------------------------- /lib/filter/filter-expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-expr.c -------------------------------------------------------------------------------- /lib/filter/filter-expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-expr.h -------------------------------------------------------------------------------- /lib/filter/filter-in-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-in-list.c -------------------------------------------------------------------------------- /lib/filter/filter-in-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-in-list.h -------------------------------------------------------------------------------- /lib/filter/filter-netmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-netmask.c -------------------------------------------------------------------------------- /lib/filter/filter-netmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-netmask.h -------------------------------------------------------------------------------- /lib/filter/filter-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-op.c -------------------------------------------------------------------------------- /lib/filter/filter-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-op.h -------------------------------------------------------------------------------- /lib/filter/filter-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-pipe.c -------------------------------------------------------------------------------- /lib/filter/filter-pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-pipe.h -------------------------------------------------------------------------------- /lib/filter/filter-pri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-pri.c -------------------------------------------------------------------------------- /lib/filter/filter-pri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-pri.h -------------------------------------------------------------------------------- /lib/filter/filter-re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-re.c -------------------------------------------------------------------------------- /lib/filter/filter-re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-re.h -------------------------------------------------------------------------------- /lib/filter/filter-tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-tags.c -------------------------------------------------------------------------------- /lib/filter/filter-tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filter/filter-tags.h -------------------------------------------------------------------------------- /lib/filter/tests/filters-in-list/empty.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/filter/tests/filters-in-list/test.list: -------------------------------------------------------------------------------- 1 | test-program 2 | -------------------------------------------------------------------------------- /lib/filterx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/CMakeLists.txt -------------------------------------------------------------------------------- /lib/filterx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/Makefile.am -------------------------------------------------------------------------------- /lib/filterx/expr-assign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-assign.c -------------------------------------------------------------------------------- /lib/filterx/expr-assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-assign.h -------------------------------------------------------------------------------- /lib/filterx/expr-boolalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-boolalg.c -------------------------------------------------------------------------------- /lib/filterx/expr-boolalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-boolalg.h -------------------------------------------------------------------------------- /lib/filterx/expr-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-break.c -------------------------------------------------------------------------------- /lib/filterx/expr-break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-break.h -------------------------------------------------------------------------------- /lib/filterx/expr-compound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-compound.c -------------------------------------------------------------------------------- /lib/filterx/expr-compound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-compound.h -------------------------------------------------------------------------------- /lib/filterx/expr-done.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-done.c -------------------------------------------------------------------------------- /lib/filterx/expr-done.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-done.h -------------------------------------------------------------------------------- /lib/filterx/expr-drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-drop.c -------------------------------------------------------------------------------- /lib/filterx/expr-drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-drop.h -------------------------------------------------------------------------------- /lib/filterx/expr-function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-function.c -------------------------------------------------------------------------------- /lib/filterx/expr-function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-function.h -------------------------------------------------------------------------------- /lib/filterx/expr-getattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-getattr.c -------------------------------------------------------------------------------- /lib/filterx/expr-getattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-getattr.h -------------------------------------------------------------------------------- /lib/filterx/expr-isset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-isset.c -------------------------------------------------------------------------------- /lib/filterx/expr-isset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-isset.h -------------------------------------------------------------------------------- /lib/filterx/expr-literal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-literal.c -------------------------------------------------------------------------------- /lib/filterx/expr-literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-literal.h -------------------------------------------------------------------------------- /lib/filterx/expr-plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-plus.c -------------------------------------------------------------------------------- /lib/filterx/expr-plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-plus.h -------------------------------------------------------------------------------- /lib/filterx/expr-regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-regexp.c -------------------------------------------------------------------------------- /lib/filterx/expr-regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-regexp.h -------------------------------------------------------------------------------- /lib/filterx/expr-setattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-setattr.c -------------------------------------------------------------------------------- /lib/filterx/expr-setattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-setattr.h -------------------------------------------------------------------------------- /lib/filterx/expr-switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-switch.c -------------------------------------------------------------------------------- /lib/filterx/expr-switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-switch.h -------------------------------------------------------------------------------- /lib/filterx/expr-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-template.c -------------------------------------------------------------------------------- /lib/filterx/expr-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-template.h -------------------------------------------------------------------------------- /lib/filterx/expr-unset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-unset.c -------------------------------------------------------------------------------- /lib/filterx/expr-unset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-unset.h -------------------------------------------------------------------------------- /lib/filterx/expr-variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-variable.c -------------------------------------------------------------------------------- /lib/filterx/expr-variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/expr-variable.h -------------------------------------------------------------------------------- /lib/filterx/filterx-dpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-dpath.c -------------------------------------------------------------------------------- /lib/filterx/filterx-dpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-dpath.h -------------------------------------------------------------------------------- /lib/filterx/filterx-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-error.c -------------------------------------------------------------------------------- /lib/filterx/filterx-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-error.h -------------------------------------------------------------------------------- /lib/filterx/filterx-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-eval.c -------------------------------------------------------------------------------- /lib/filterx/filterx-eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-eval.h -------------------------------------------------------------------------------- /lib/filterx/filterx-expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-expr.c -------------------------------------------------------------------------------- /lib/filterx/filterx-expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-expr.h -------------------------------------------------------------------------------- /lib/filterx/filterx-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-pipe.c -------------------------------------------------------------------------------- /lib/filterx/filterx-pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-pipe.h -------------------------------------------------------------------------------- /lib/filterx/filterx-plist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-plist.c -------------------------------------------------------------------------------- /lib/filterx/filterx-plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-plist.h -------------------------------------------------------------------------------- /lib/filterx/filterx-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-ref.c -------------------------------------------------------------------------------- /lib/filterx/filterx-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-ref.h -------------------------------------------------------------------------------- /lib/filterx/filterx-scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-scope.c -------------------------------------------------------------------------------- /lib/filterx/filterx-scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/filterx-scope.h -------------------------------------------------------------------------------- /lib/filterx/func-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-flags.h -------------------------------------------------------------------------------- /lib/filterx/func-flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-flatten.c -------------------------------------------------------------------------------- /lib/filterx/func-flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-flatten.h -------------------------------------------------------------------------------- /lib/filterx/func-istype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-istype.c -------------------------------------------------------------------------------- /lib/filterx/func-istype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-istype.h -------------------------------------------------------------------------------- /lib/filterx/func-keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-keys.c -------------------------------------------------------------------------------- /lib/filterx/func-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-keys.h -------------------------------------------------------------------------------- /lib/filterx/func-len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-len.c -------------------------------------------------------------------------------- /lib/filterx/func-len.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-len.h -------------------------------------------------------------------------------- /lib/filterx/func-repr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-repr.c -------------------------------------------------------------------------------- /lib/filterx/func-repr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-repr.h -------------------------------------------------------------------------------- /lib/filterx/func-sdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-sdata.c -------------------------------------------------------------------------------- /lib/filterx/func-sdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-sdata.h -------------------------------------------------------------------------------- /lib/filterx/func-set-pri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-set-pri.c -------------------------------------------------------------------------------- /lib/filterx/func-set-pri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-set-pri.h -------------------------------------------------------------------------------- /lib/filterx/func-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-str.c -------------------------------------------------------------------------------- /lib/filterx/func-str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-str.h -------------------------------------------------------------------------------- /lib/filterx/func-vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-vars.c -------------------------------------------------------------------------------- /lib/filterx/func-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/func-vars.h -------------------------------------------------------------------------------- /lib/filterx/json-repr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/json-repr.c -------------------------------------------------------------------------------- /lib/filterx/json-repr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/json-repr.h -------------------------------------------------------------------------------- /lib/filterx/object-dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-dict.c -------------------------------------------------------------------------------- /lib/filterx/object-dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-dict.h -------------------------------------------------------------------------------- /lib/filterx/object-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-list.c -------------------------------------------------------------------------------- /lib/filterx/object-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-list.h -------------------------------------------------------------------------------- /lib/filterx/object-null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-null.c -------------------------------------------------------------------------------- /lib/filterx/object-null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-null.h -------------------------------------------------------------------------------- /lib/filterx/object-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-string.c -------------------------------------------------------------------------------- /lib/filterx/object-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/filterx/object-string.h -------------------------------------------------------------------------------- /lib/find-crlf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/find-crlf.c -------------------------------------------------------------------------------- /lib/find-crlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/find-crlf.h -------------------------------------------------------------------------------- /lib/generic-number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/generic-number.c -------------------------------------------------------------------------------- /lib/generic-number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/generic-number.h -------------------------------------------------------------------------------- /lib/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/globals.c -------------------------------------------------------------------------------- /lib/gprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/gprocess.c -------------------------------------------------------------------------------- /lib/gprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/gprocess.h -------------------------------------------------------------------------------- /lib/gsockaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/gsockaddr.c -------------------------------------------------------------------------------- /lib/gsockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/gsockaddr.h -------------------------------------------------------------------------------- /lib/gsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/gsocket.c -------------------------------------------------------------------------------- /lib/gsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/gsocket.h -------------------------------------------------------------------------------- /lib/healthcheck/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/healthcheck/Makefile.am -------------------------------------------------------------------------------- /lib/healthcheck/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/healthcheck/stopwatch.h -------------------------------------------------------------------------------- /lib/host-id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/host-id.c -------------------------------------------------------------------------------- /lib/host-id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/host-id.h -------------------------------------------------------------------------------- /lib/host-resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/host-resolve.c -------------------------------------------------------------------------------- /lib/host-resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/host-resolve.h -------------------------------------------------------------------------------- /lib/hostname-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/hostname-unix.c -------------------------------------------------------------------------------- /lib/hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/hostname.c -------------------------------------------------------------------------------- /lib/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/hostname.h -------------------------------------------------------------------------------- /lib/list-adt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/list-adt.h -------------------------------------------------------------------------------- /lib/logmatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmatcher.c -------------------------------------------------------------------------------- /lib/logmatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmatcher.h -------------------------------------------------------------------------------- /lib/logmpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmpx.c -------------------------------------------------------------------------------- /lib/logmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmpx.h -------------------------------------------------------------------------------- /lib/logmsg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/CMakeLists.txt -------------------------------------------------------------------------------- /lib/logmsg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/Makefile.am -------------------------------------------------------------------------------- /lib/logmsg/logmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/logmsg.c -------------------------------------------------------------------------------- /lib/logmsg/logmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/logmsg.h -------------------------------------------------------------------------------- /lib/logmsg/nvtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/nvtable.c -------------------------------------------------------------------------------- /lib/logmsg/nvtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/nvtable.h -------------------------------------------------------------------------------- /lib/logmsg/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/serialization.h -------------------------------------------------------------------------------- /lib/logmsg/tags-serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/tags-serialize.c -------------------------------------------------------------------------------- /lib/logmsg/tags-serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/tags-serialize.h -------------------------------------------------------------------------------- /lib/logmsg/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/tags.c -------------------------------------------------------------------------------- /lib/logmsg/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/tags.h -------------------------------------------------------------------------------- /lib/logmsg/type-hinting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/type-hinting.c -------------------------------------------------------------------------------- /lib/logmsg/type-hinting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logmsg/type-hinting.h -------------------------------------------------------------------------------- /lib/logpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logpipe.c -------------------------------------------------------------------------------- /lib/logpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logpipe.h -------------------------------------------------------------------------------- /lib/logproto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logproto/CMakeLists.txt -------------------------------------------------------------------------------- /lib/logproto/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logproto/Makefile.am -------------------------------------------------------------------------------- /lib/logproto/logproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logproto/logproto.h -------------------------------------------------------------------------------- /lib/logqueue-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logqueue-fifo.c -------------------------------------------------------------------------------- /lib/logqueue-fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logqueue-fifo.h -------------------------------------------------------------------------------- /lib/logqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logqueue.c -------------------------------------------------------------------------------- /lib/logqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logqueue.h -------------------------------------------------------------------------------- /lib/logreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logreader.c -------------------------------------------------------------------------------- /lib/logreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logreader.h -------------------------------------------------------------------------------- /lib/logscheduler-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logscheduler-pipe.c -------------------------------------------------------------------------------- /lib/logscheduler-pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logscheduler-pipe.h -------------------------------------------------------------------------------- /lib/logscheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logscheduler.c -------------------------------------------------------------------------------- /lib/logscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logscheduler.h -------------------------------------------------------------------------------- /lib/logsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logsource.c -------------------------------------------------------------------------------- /lib/logsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logsource.h -------------------------------------------------------------------------------- /lib/logthrdest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logthrdest/Makefile.am -------------------------------------------------------------------------------- /lib/logwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logwriter.c -------------------------------------------------------------------------------- /lib/logwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/logwriter.h -------------------------------------------------------------------------------- /lib/mainloop-call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-call.c -------------------------------------------------------------------------------- /lib/mainloop-call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-call.h -------------------------------------------------------------------------------- /lib/mainloop-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-control.c -------------------------------------------------------------------------------- /lib/mainloop-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-control.h -------------------------------------------------------------------------------- /lib/mainloop-io-worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-io-worker.c -------------------------------------------------------------------------------- /lib/mainloop-io-worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-io-worker.h -------------------------------------------------------------------------------- /lib/mainloop-worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-worker.c -------------------------------------------------------------------------------- /lib/mainloop-worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop-worker.h -------------------------------------------------------------------------------- /lib/mainloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop.c -------------------------------------------------------------------------------- /lib/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/mainloop.h -------------------------------------------------------------------------------- /lib/memtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/memtrace.c -------------------------------------------------------------------------------- /lib/memtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/memtrace.h -------------------------------------------------------------------------------- /lib/merge-grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/merge-grammar.py -------------------------------------------------------------------------------- /lib/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/messages.c -------------------------------------------------------------------------------- /lib/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/messages.h -------------------------------------------------------------------------------- /lib/metrics-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/metrics-pipe.c -------------------------------------------------------------------------------- /lib/metrics-pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/metrics-pipe.h -------------------------------------------------------------------------------- /lib/metrics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/metrics/CMakeLists.txt -------------------------------------------------------------------------------- /lib/metrics/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/metrics/Makefile.am -------------------------------------------------------------------------------- /lib/metrics/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/metrics/metrics.c -------------------------------------------------------------------------------- /lib/metrics/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/metrics/metrics.h -------------------------------------------------------------------------------- /lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/misc.h -------------------------------------------------------------------------------- /lib/ml-batched-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/ml-batched-timer.c -------------------------------------------------------------------------------- /lib/ml-batched-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/ml-batched-timer.h -------------------------------------------------------------------------------- /lib/module-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/module-config.c -------------------------------------------------------------------------------- /lib/module-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/module-config.h -------------------------------------------------------------------------------- /lib/msg-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/msg-format.c -------------------------------------------------------------------------------- /lib/msg-format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/msg-format.h -------------------------------------------------------------------------------- /lib/msg-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/msg-stats.c -------------------------------------------------------------------------------- /lib/msg-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/msg-stats.h -------------------------------------------------------------------------------- /lib/multi-line/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/multi-line/Makefile.am -------------------------------------------------------------------------------- /lib/multi-line/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_unit_test(LIBTEST CRITERION TARGET test_smart_multi_line) 2 | -------------------------------------------------------------------------------- /lib/on-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/on-error.c -------------------------------------------------------------------------------- /lib/on-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/on-error.h -------------------------------------------------------------------------------- /lib/parse-number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/parse-number.c -------------------------------------------------------------------------------- /lib/parse-number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/parse-number.h -------------------------------------------------------------------------------- /lib/parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/parser/CMakeLists.txt -------------------------------------------------------------------------------- /lib/parser/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/parser/Makefile.am -------------------------------------------------------------------------------- /lib/parser/parser-expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/parser/parser-expr.c -------------------------------------------------------------------------------- /lib/parser/parser-expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/parser/parser-expr.h -------------------------------------------------------------------------------- /lib/pathutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/pathutils.c -------------------------------------------------------------------------------- /lib/pathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/pathutils.h -------------------------------------------------------------------------------- /lib/perf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/perf/Makefile.am -------------------------------------------------------------------------------- /lib/perf/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/perf/perf.c -------------------------------------------------------------------------------- /lib/perf/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/perf/perf.h -------------------------------------------------------------------------------- /lib/perf/trampoline.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/perf/trampoline.S -------------------------------------------------------------------------------- /lib/persist-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/persist-state.c -------------------------------------------------------------------------------- /lib/persist-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/persist-state.h -------------------------------------------------------------------------------- /lib/plugin-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/plugin-types.h -------------------------------------------------------------------------------- /lib/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/plugin.c -------------------------------------------------------------------------------- /lib/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/plugin.h -------------------------------------------------------------------------------- /lib/poll-events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/poll-events.c -------------------------------------------------------------------------------- /lib/poll-events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/poll-events.h -------------------------------------------------------------------------------- /lib/poll-fd-events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/poll-fd-events.c -------------------------------------------------------------------------------- /lib/poll-fd-events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/poll-fd-events.h -------------------------------------------------------------------------------- /lib/pragma-grammar.ym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/pragma-grammar.ym -------------------------------------------------------------------------------- /lib/pragma-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/pragma-parser.c -------------------------------------------------------------------------------- /lib/pragma-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/pragma-parser.h -------------------------------------------------------------------------------- /lib/rcptid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rcptid.c -------------------------------------------------------------------------------- /lib/rcptid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rcptid.h -------------------------------------------------------------------------------- /lib/reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/reloc.c -------------------------------------------------------------------------------- /lib/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/reloc.h -------------------------------------------------------------------------------- /lib/rewrite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/CMakeLists.txt -------------------------------------------------------------------------------- /lib/rewrite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/Makefile.am -------------------------------------------------------------------------------- /lib/rewrite/rewrite-expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-expr.c -------------------------------------------------------------------------------- /lib/rewrite/rewrite-expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-expr.h -------------------------------------------------------------------------------- /lib/rewrite/rewrite-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-set.c -------------------------------------------------------------------------------- /lib/rewrite/rewrite-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-set.h -------------------------------------------------------------------------------- /lib/rewrite/rewrite-subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-subst.c -------------------------------------------------------------------------------- /lib/rewrite/rewrite-subst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-subst.h -------------------------------------------------------------------------------- /lib/rewrite/rewrite-unset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-unset.c -------------------------------------------------------------------------------- /lib/rewrite/rewrite-unset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/rewrite/rewrite-unset.h -------------------------------------------------------------------------------- /lib/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/ringbuffer.c -------------------------------------------------------------------------------- /lib/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/ringbuffer.h -------------------------------------------------------------------------------- /lib/run-id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/run-id.c -------------------------------------------------------------------------------- /lib/run-id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/run-id.h -------------------------------------------------------------------------------- /lib/scanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/scanner/CMakeLists.txt -------------------------------------------------------------------------------- /lib/scratch-buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/scratch-buffers.c -------------------------------------------------------------------------------- /lib/scratch-buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/scratch-buffers.h -------------------------------------------------------------------------------- /lib/seqnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/seqnum.h -------------------------------------------------------------------------------- /lib/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/serialize.c -------------------------------------------------------------------------------- /lib/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/serialize.h -------------------------------------------------------------------------------- /lib/service-management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/service-management.c -------------------------------------------------------------------------------- /lib/service-management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/service-management.h -------------------------------------------------------------------------------- /lib/severity-aliases.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/severity-aliases.table -------------------------------------------------------------------------------- /lib/signal-handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/signal-handler.c -------------------------------------------------------------------------------- /lib/signal-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/signal-handler.h -------------------------------------------------------------------------------- /lib/signal-slot-connector/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_unit_test(CRITERION TARGET test_signal_slots) 2 | -------------------------------------------------------------------------------- /lib/stackdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stackdump.c -------------------------------------------------------------------------------- /lib/stackdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stackdump.h -------------------------------------------------------------------------------- /lib/stats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/CMakeLists.txt -------------------------------------------------------------------------------- /lib/stats/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/Makefile.am -------------------------------------------------------------------------------- /lib/stats/stats-cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-cluster.c -------------------------------------------------------------------------------- /lib/stats/stats-cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-cluster.h -------------------------------------------------------------------------------- /lib/stats/stats-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-compat.h -------------------------------------------------------------------------------- /lib/stats/stats-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-control.c -------------------------------------------------------------------------------- /lib/stats/stats-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-control.h -------------------------------------------------------------------------------- /lib/stats/stats-counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-counter.h -------------------------------------------------------------------------------- /lib/stats/stats-csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-csv.c -------------------------------------------------------------------------------- /lib/stats/stats-csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-csv.h -------------------------------------------------------------------------------- /lib/stats/stats-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-log.c -------------------------------------------------------------------------------- /lib/stats/stats-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-log.h -------------------------------------------------------------------------------- /lib/stats/stats-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-query.c -------------------------------------------------------------------------------- /lib/stats/stats-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-query.h -------------------------------------------------------------------------------- /lib/stats/stats-registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-registry.c -------------------------------------------------------------------------------- /lib/stats/stats-registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats-registry.h -------------------------------------------------------------------------------- /lib/stats/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats.c -------------------------------------------------------------------------------- /lib/stats/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/stats.h -------------------------------------------------------------------------------- /lib/stats/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/stats/tests/Makefile.am -------------------------------------------------------------------------------- /lib/str-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-format.c -------------------------------------------------------------------------------- /lib/str-format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-format.h -------------------------------------------------------------------------------- /lib/str-repr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-repr/CMakeLists.txt -------------------------------------------------------------------------------- /lib/str-repr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-repr/Makefile.am -------------------------------------------------------------------------------- /lib/str-repr/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-repr/decode.c -------------------------------------------------------------------------------- /lib/str-repr/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-repr/decode.h -------------------------------------------------------------------------------- /lib/str-repr/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-repr/encode.c -------------------------------------------------------------------------------- /lib/str-repr/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-repr/encode.h -------------------------------------------------------------------------------- /lib/str-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-utils.c -------------------------------------------------------------------------------- /lib/str-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/str-utils.h -------------------------------------------------------------------------------- /lib/string-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/string-list.c -------------------------------------------------------------------------------- /lib/string-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/string-list.h -------------------------------------------------------------------------------- /lib/syslog-names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/syslog-names.c -------------------------------------------------------------------------------- /lib/syslog-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/syslog-names.h -------------------------------------------------------------------------------- /lib/syslog-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/syslog-ng.h -------------------------------------------------------------------------------- /lib/template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/CMakeLists.txt -------------------------------------------------------------------------------- /lib/template/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/Makefile.am -------------------------------------------------------------------------------- /lib/template/compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/compiler.c -------------------------------------------------------------------------------- /lib/template/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/compiler.h -------------------------------------------------------------------------------- /lib/template/escaping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/escaping.c -------------------------------------------------------------------------------- /lib/template/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/escaping.h -------------------------------------------------------------------------------- /lib/template/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/eval.c -------------------------------------------------------------------------------- /lib/template/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/eval.h -------------------------------------------------------------------------------- /lib/template/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/function.h -------------------------------------------------------------------------------- /lib/template/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/globals.c -------------------------------------------------------------------------------- /lib/template/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/globals.h -------------------------------------------------------------------------------- /lib/template/macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/macros.c -------------------------------------------------------------------------------- /lib/template/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/macros.h -------------------------------------------------------------------------------- /lib/template/repr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/repr.c -------------------------------------------------------------------------------- /lib/template/repr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/repr.h -------------------------------------------------------------------------------- /lib/template/templates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/templates.c -------------------------------------------------------------------------------- /lib/template/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/template/templates.h -------------------------------------------------------------------------------- /lib/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/Makefile.am -------------------------------------------------------------------------------- /lib/tests/test_apphook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_apphook.c -------------------------------------------------------------------------------- /lib/tests/test_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_cache.c -------------------------------------------------------------------------------- /lib/tests/test_cfg_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_cfg_tree.c -------------------------------------------------------------------------------- /lib/tests/test_dnscache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_dnscache.c -------------------------------------------------------------------------------- /lib/tests/test_findcrlf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_findcrlf.c -------------------------------------------------------------------------------- /lib/tests/test_gsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_gsocket.c -------------------------------------------------------------------------------- /lib/tests/test_hostid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_hostid.c -------------------------------------------------------------------------------- /lib/tests/test_hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_hostname.c -------------------------------------------------------------------------------- /lib/tests/test_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_lexer.c -------------------------------------------------------------------------------- /lib/tests/test_logqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_logqueue.c -------------------------------------------------------------------------------- /lib/tests/test_logsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_logsource.c -------------------------------------------------------------------------------- /lib/tests/test_logwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_logwriter.c -------------------------------------------------------------------------------- /lib/tests/test_matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_matcher.c -------------------------------------------------------------------------------- /lib/tests/test_messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_messages.c -------------------------------------------------------------------------------- /lib/tests/test_msgparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_msgparse.c -------------------------------------------------------------------------------- /lib/tests/test_pathutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_pathutils.c -------------------------------------------------------------------------------- /lib/tests/test_pragma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_pragma.c -------------------------------------------------------------------------------- /lib/tests/test_rcptid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_rcptid.c -------------------------------------------------------------------------------- /lib/tests/test_reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_reloc.c -------------------------------------------------------------------------------- /lib/tests/test_ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_ringbuffer.c -------------------------------------------------------------------------------- /lib/tests/test_runid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_runid.c -------------------------------------------------------------------------------- /lib/tests/test_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_serialize.c -------------------------------------------------------------------------------- /lib/tests/test_str-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_str-utils.c -------------------------------------------------------------------------------- /lib/tests/test_str_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_str_format.c -------------------------------------------------------------------------------- /lib/tests/test_userdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_userdb.c -------------------------------------------------------------------------------- /lib/tests/test_utf8utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_utf8utils.c -------------------------------------------------------------------------------- /lib/tests/test_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tests/test_zone.c -------------------------------------------------------------------------------- /lib/tests/testdata-lexer/include-test/bar.conf: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /lib/tests/testdata-lexer/include-test/baz.conf: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /lib/tests/testdata-lexer/include-test/foo.conf: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /lib/tests/testdata-lexer/include-test/invalid~include~file.conf: -------------------------------------------------------------------------------- 1 | invalid include 2 | -------------------------------------------------------------------------------- /lib/thread-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/thread-utils.h -------------------------------------------------------------------------------- /lib/timeutils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/Makefile.am -------------------------------------------------------------------------------- /lib/timeutils/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/cache.c -------------------------------------------------------------------------------- /lib/timeutils/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/cache.h -------------------------------------------------------------------------------- /lib/timeutils/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/conv.c -------------------------------------------------------------------------------- /lib/timeutils/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/conv.h -------------------------------------------------------------------------------- /lib/timeutils/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/format.c -------------------------------------------------------------------------------- /lib/timeutils/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/format.h -------------------------------------------------------------------------------- /lib/timeutils/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/misc.c -------------------------------------------------------------------------------- /lib/timeutils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/misc.h -------------------------------------------------------------------------------- /lib/timeutils/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/names.c -------------------------------------------------------------------------------- /lib/timeutils/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/names.h -------------------------------------------------------------------------------- /lib/timeutils/timeutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/timeutils.c -------------------------------------------------------------------------------- /lib/timeutils/timeutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/timeutils.h -------------------------------------------------------------------------------- /lib/timeutils/unixtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/unixtime.c -------------------------------------------------------------------------------- /lib/timeutils/unixtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/unixtime.h -------------------------------------------------------------------------------- /lib/timeutils/zonecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/zonecache.c -------------------------------------------------------------------------------- /lib/timeutils/zonecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/zonecache.h -------------------------------------------------------------------------------- /lib/timeutils/zonedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/zonedb.c -------------------------------------------------------------------------------- /lib/timeutils/zonedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/zonedb.h -------------------------------------------------------------------------------- /lib/timeutils/zoneinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/zoneinfo.c -------------------------------------------------------------------------------- /lib/timeutils/zoneinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/timeutils/zoneinfo.h -------------------------------------------------------------------------------- /lib/tls-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/tls-support.h -------------------------------------------------------------------------------- /lib/transport/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/transport/Makefile.am -------------------------------------------------------------------------------- /lib/transport/tls-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/transport/tls-context.c -------------------------------------------------------------------------------- /lib/transport/tls-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/transport/tls-context.h -------------------------------------------------------------------------------- /lib/transport/tls-session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/transport/tls-session.c -------------------------------------------------------------------------------- /lib/transport/tls-session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/transport/tls-session.h -------------------------------------------------------------------------------- /lib/userdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/userdb.c -------------------------------------------------------------------------------- /lib/userdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/userdb.h -------------------------------------------------------------------------------- /lib/utf8utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/utf8utils.c -------------------------------------------------------------------------------- /lib/utf8utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/utf8utils.h -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/uuid.h -------------------------------------------------------------------------------- /lib/value-pairs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/value-pairs/Makefile.am -------------------------------------------------------------------------------- /lib/value-pairs/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/value-pairs/cmdline.c -------------------------------------------------------------------------------- /lib/value-pairs/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/value-pairs/cmdline.h -------------------------------------------------------------------------------- /lib/value-pairs/evttag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/value-pairs/evttag.c -------------------------------------------------------------------------------- /lib/value-pairs/evttag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/value-pairs/evttag.h -------------------------------------------------------------------------------- /lib/value-pairs/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/value-pairs/internals.h -------------------------------------------------------------------------------- /lib/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/versioning.h -------------------------------------------------------------------------------- /lib/window-size-counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/window-size-counter.c -------------------------------------------------------------------------------- /lib/window-size-counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/lib/window-size-counter.h -------------------------------------------------------------------------------- /libtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/CMakeLists.txt -------------------------------------------------------------------------------- /libtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/Makefile.am -------------------------------------------------------------------------------- /libtest/config_parse_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/config_parse_lib.c -------------------------------------------------------------------------------- /libtest/config_parse_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/config_parse_lib.h -------------------------------------------------------------------------------- /libtest/cr_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/cr_template.c -------------------------------------------------------------------------------- /libtest/cr_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/cr_template.h -------------------------------------------------------------------------------- /libtest/fake-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/fake-time.c -------------------------------------------------------------------------------- /libtest/fake-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/fake-time.h -------------------------------------------------------------------------------- /libtest/filterx-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/filterx-lib.c -------------------------------------------------------------------------------- /libtest/filterx-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/filterx-lib.h -------------------------------------------------------------------------------- /libtest/grab-logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/grab-logging.c -------------------------------------------------------------------------------- /libtest/grab-logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/grab-logging.h -------------------------------------------------------------------------------- /libtest/libtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/libtest.c -------------------------------------------------------------------------------- /libtest/mock-cfg-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/mock-cfg-parser.c -------------------------------------------------------------------------------- /libtest/mock-cfg-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/mock-cfg-parser.h -------------------------------------------------------------------------------- /libtest/mock-logpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/mock-logpipe.c -------------------------------------------------------------------------------- /libtest/mock-logpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/mock-logpipe.h -------------------------------------------------------------------------------- /libtest/mock-transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/mock-transport.c -------------------------------------------------------------------------------- /libtest/mock-transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/mock-transport.h -------------------------------------------------------------------------------- /libtest/msg_parse_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/msg_parse_lib.c -------------------------------------------------------------------------------- /libtest/msg_parse_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/msg_parse_lib.h -------------------------------------------------------------------------------- /libtest/persist_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/persist_lib.c -------------------------------------------------------------------------------- /libtest/persist_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/persist_lib.h -------------------------------------------------------------------------------- /libtest/proto_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/proto_lib.c -------------------------------------------------------------------------------- /libtest/proto_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/proto_lib.h -------------------------------------------------------------------------------- /libtest/queue_utils_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/queue_utils_lib.c -------------------------------------------------------------------------------- /libtest/queue_utils_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/queue_utils_lib.h -------------------------------------------------------------------------------- /libtest/stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/stopwatch.c -------------------------------------------------------------------------------- /libtest/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/stopwatch.h -------------------------------------------------------------------------------- /libtest/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_unit_test(CRITERION LIBTEST TARGET test_mock_transport) 2 | -------------------------------------------------------------------------------- /libtest/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/libtest/tests/Makefile.am -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/Makefile.am -------------------------------------------------------------------------------- /modules/afamqp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afamqp/Makefile.am -------------------------------------------------------------------------------- /modules/afamqp/afamqp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afamqp/afamqp.c -------------------------------------------------------------------------------- /modules/afamqp/afamqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afamqp/afamqp.h -------------------------------------------------------------------------------- /modules/affile/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/Makefile.am -------------------------------------------------------------------------------- /modules/affile/file-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/file-list.c -------------------------------------------------------------------------------- /modules/affile/file-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/file-list.h -------------------------------------------------------------------------------- /modules/affile/linux-kmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/linux-kmsg.c -------------------------------------------------------------------------------- /modules/affile/named-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/named-pipe.c -------------------------------------------------------------------------------- /modules/affile/named-pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/named-pipe.h -------------------------------------------------------------------------------- /modules/affile/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/stdin.c -------------------------------------------------------------------------------- /modules/affile/stdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/stdin.h -------------------------------------------------------------------------------- /modules/affile/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/stdout.c -------------------------------------------------------------------------------- /modules/affile/stdout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/affile/stdout.h -------------------------------------------------------------------------------- /modules/afprog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afprog/Makefile.am -------------------------------------------------------------------------------- /modules/afprog/afprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afprog/afprog.c -------------------------------------------------------------------------------- /modules/afprog/afprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afprog/afprog.h -------------------------------------------------------------------------------- /modules/afsmtp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsmtp/Makefile.am -------------------------------------------------------------------------------- /modules/afsmtp/afsmtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsmtp/afsmtp.c -------------------------------------------------------------------------------- /modules/afsmtp/afsmtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsmtp/afsmtp.h -------------------------------------------------------------------------------- /modules/afsnmp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsnmp/Makefile.am -------------------------------------------------------------------------------- /modules/afsnmp/afsnmpdest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsnmp/afsnmpdest.c -------------------------------------------------------------------------------- /modules/afsnmp/afsnmpdest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsnmp/afsnmpdest.h -------------------------------------------------------------------------------- /modules/afsocket/afinet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsocket/afinet.c -------------------------------------------------------------------------------- /modules/afsocket/afinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsocket/afinet.h -------------------------------------------------------------------------------- /modules/afsocket/afsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsocket/afsocket.c -------------------------------------------------------------------------------- /modules/afsocket/afsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsocket/afsocket.h -------------------------------------------------------------------------------- /modules/afsql/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsql/Makefile.am -------------------------------------------------------------------------------- /modules/afsql/afsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsql/afsql.c -------------------------------------------------------------------------------- /modules/afsql/afsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afsql/afsql.h -------------------------------------------------------------------------------- /modules/afstomp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afstomp/Makefile.am -------------------------------------------------------------------------------- /modules/afstomp/afstomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afstomp/afstomp.c -------------------------------------------------------------------------------- /modules/afstomp/afstomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afstomp/afstomp.h -------------------------------------------------------------------------------- /modules/afstomp/stomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afstomp/stomp.c -------------------------------------------------------------------------------- /modules/afstomp/stomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afstomp/stomp.h -------------------------------------------------------------------------------- /modules/afuser/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afuser/Makefile.am -------------------------------------------------------------------------------- /modules/afuser/afuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afuser/afuser.c -------------------------------------------------------------------------------- /modules/afuser/afuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/afuser/afuser.h -------------------------------------------------------------------------------- /modules/appmodel/appmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/appmodel/appmodel.c -------------------------------------------------------------------------------- /modules/appmodel/appmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/appmodel/appmodel.h -------------------------------------------------------------------------------- /modules/basicfuncs/tf-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/basicfuncs/tf-map.c -------------------------------------------------------------------------------- /modules/basicfuncs/tf-tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/basicfuncs/tf-tag.c -------------------------------------------------------------------------------- /modules/cef/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/cef/CMakeLists.txt -------------------------------------------------------------------------------- /modules/cef/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/cef/Makefile.am -------------------------------------------------------------------------------- /modules/cef/cef-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/cef/cef-plugin.c -------------------------------------------------------------------------------- /modules/confgen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/confgen/Makefile.am -------------------------------------------------------------------------------- /modules/confgen/confgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/confgen/confgen.h -------------------------------------------------------------------------------- /modules/correlation/radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/correlation/radix.c -------------------------------------------------------------------------------- /modules/correlation/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/correlation/radix.h -------------------------------------------------------------------------------- /modules/diskq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/diskq/Makefile.am -------------------------------------------------------------------------------- /modules/diskq/diskq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/diskq/diskq.c -------------------------------------------------------------------------------- /modules/diskq/diskq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/diskq/diskq.h -------------------------------------------------------------------------------- /modules/diskq/dqtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/diskq/dqtool.c -------------------------------------------------------------------------------- /modules/diskq/qdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/diskq/qdisk.c -------------------------------------------------------------------------------- /modules/diskq/qdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/diskq/qdisk.h -------------------------------------------------------------------------------- /modules/ebpf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/ebpf/CMakeLists.txt -------------------------------------------------------------------------------- /modules/ebpf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/ebpf/Makefile.am -------------------------------------------------------------------------------- /modules/ebpf/ebpf-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/ebpf/ebpf-parser.c -------------------------------------------------------------------------------- /modules/ebpf/ebpf-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/ebpf/ebpf-parser.h -------------------------------------------------------------------------------- /modules/ebpf/ebpf-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/ebpf/ebpf-plugin.c -------------------------------------------------------------------------------- /modules/ebpf/random.kern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/ebpf/random.kern.c -------------------------------------------------------------------------------- /modules/geoip2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/geoip2/Makefile.am -------------------------------------------------------------------------------- /modules/geoip2/tfgeoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/geoip2/tfgeoip.c -------------------------------------------------------------------------------- /modules/getent/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/getent/Makefile.am -------------------------------------------------------------------------------- /modules/getent/tfgetent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/getent/tfgetent.c -------------------------------------------------------------------------------- /modules/grpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/grpc/CMakeLists.txt -------------------------------------------------------------------------------- /modules/grpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/grpc/Makefile.am -------------------------------------------------------------------------------- /modules/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/CMakeLists.txt -------------------------------------------------------------------------------- /modules/http/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/Makefile.am -------------------------------------------------------------------------------- /modules/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/README.md -------------------------------------------------------------------------------- /modules/http/compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/compression.c -------------------------------------------------------------------------------- /modules/http/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/compression.h -------------------------------------------------------------------------------- /modules/http/http-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http-parser.c -------------------------------------------------------------------------------- /modules/http/http-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http-parser.h -------------------------------------------------------------------------------- /modules/http/http-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http-plugin.c -------------------------------------------------------------------------------- /modules/http/http-signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http-signals.h -------------------------------------------------------------------------------- /modules/http/http-worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http-worker.c -------------------------------------------------------------------------------- /modules/http/http-worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http-worker.h -------------------------------------------------------------------------------- /modules/http/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http.c -------------------------------------------------------------------------------- /modules/http/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/http/http.h -------------------------------------------------------------------------------- /modules/java-modules/internal_repositories.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/java/CMakeLists.txt -------------------------------------------------------------------------------- /modules/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/java/Makefile.am -------------------------------------------------------------------------------- /modules/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/java/README.md -------------------------------------------------------------------------------- /modules/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/CMakeLists.txt -------------------------------------------------------------------------------- /modules/json/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/Makefile.am -------------------------------------------------------------------------------- /modules/json/dot-notation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/dot-notation.c -------------------------------------------------------------------------------- /modules/json/dot-notation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/dot-notation.h -------------------------------------------------------------------------------- /modules/json/format-json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/format-json.c -------------------------------------------------------------------------------- /modules/json/format-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/format-json.h -------------------------------------------------------------------------------- /modules/json/json-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/json-parser.c -------------------------------------------------------------------------------- /modules/json/json-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/json-parser.h -------------------------------------------------------------------------------- /modules/json/json-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/json/json-plugin.c -------------------------------------------------------------------------------- /modules/kafka/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/kafka/Makefile.am -------------------------------------------------------------------------------- /modules/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/kafka/README.md -------------------------------------------------------------------------------- /modules/kafka/kafka-props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/kafka/kafka-props.c -------------------------------------------------------------------------------- /modules/kafka/kafka-props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/kafka/kafka-props.h -------------------------------------------------------------------------------- /modules/mqtt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/CMakeLists.txt -------------------------------------------------------------------------------- /modules/mqtt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/Makefile.am -------------------------------------------------------------------------------- /modules/mqtt/mqtt-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/mqtt-options.c -------------------------------------------------------------------------------- /modules/mqtt/mqtt-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/mqtt-options.h -------------------------------------------------------------------------------- /modules/mqtt/mqtt-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/mqtt-parser.c -------------------------------------------------------------------------------- /modules/mqtt/mqtt-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/mqtt-parser.h -------------------------------------------------------------------------------- /modules/mqtt/mqtt-plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/mqtt/mqtt-plugins.c -------------------------------------------------------------------------------- /modules/native/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/native/Makefile.am -------------------------------------------------------------------------------- /modules/native/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/native/parser.c -------------------------------------------------------------------------------- /modules/native/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/native/parser.h -------------------------------------------------------------------------------- /modules/openbsd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/openbsd/Makefile.am -------------------------------------------------------------------------------- /modules/python-modules/.gitignore: -------------------------------------------------------------------------------- 1 | syslogng_modules.egg-info 2 | -------------------------------------------------------------------------------- /modules/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/python/Makefile.am -------------------------------------------------------------------------------- /modules/python/python-tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/python/python-tf.c -------------------------------------------------------------------------------- /modules/python/python-tf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/python/python-tf.h -------------------------------------------------------------------------------- /modules/redis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/redis/Makefile.am -------------------------------------------------------------------------------- /modules/redis/redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/redis/redis.c -------------------------------------------------------------------------------- /modules/redis/redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/redis/redis.h -------------------------------------------------------------------------------- /modules/riemann/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/riemann/Makefile.am -------------------------------------------------------------------------------- /modules/riemann/riemann.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/riemann/riemann.c -------------------------------------------------------------------------------- /modules/riemann/riemann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/riemann/riemann.h -------------------------------------------------------------------------------- /modules/stardate/stardate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/stardate/stardate.c -------------------------------------------------------------------------------- /modules/timestamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/timestamp/README.md -------------------------------------------------------------------------------- /modules/xml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/CMakeLists.txt -------------------------------------------------------------------------------- /modules/xml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/Makefile.am -------------------------------------------------------------------------------- /modules/xml/xml-grammar.ym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml-grammar.ym -------------------------------------------------------------------------------- /modules/xml/xml-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml-parser.c -------------------------------------------------------------------------------- /modules/xml/xml-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml-parser.h -------------------------------------------------------------------------------- /modules/xml/xml-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml-plugin.c -------------------------------------------------------------------------------- /modules/xml/xml-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml-private.h -------------------------------------------------------------------------------- /modules/xml/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml.c -------------------------------------------------------------------------------- /modules/xml/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/modules/xml/xml.h -------------------------------------------------------------------------------- /news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/news/README.md -------------------------------------------------------------------------------- /news/create-newsfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/news/create-newsfile.py -------------------------------------------------------------------------------- /news/feature-855.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/news/feature-855.md -------------------------------------------------------------------------------- /news/feature-866.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/news/feature-866.md -------------------------------------------------------------------------------- /news/feature-875.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/news/feature-875.md -------------------------------------------------------------------------------- /news/next-pr-id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/news/next-pr-id.py -------------------------------------------------------------------------------- /optional-dev-requirements.txt: -------------------------------------------------------------------------------- 1 | syslog-ng-cfg-helper 2 | -------------------------------------------------------------------------------- /packaging/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/Makefile.am -------------------------------------------------------------------------------- /packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/README.md -------------------------------------------------------------------------------- /packaging/debian/MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/MPL -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-amqp.docs: -------------------------------------------------------------------------------- 1 | debian/MPL 2 | -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-hdfs.install: -------------------------------------------------------------------------------- 1 | usr/lib/syslog-ng/*/java-modules/hdfs.jar 2 | -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-mongodb.postinst: -------------------------------------------------------------------------------- 1 | axosyslog-mod-common.maintscript -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-mongodb.postrm: -------------------------------------------------------------------------------- 1 | axosyslog-mod-common.maintscript -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-mongodb.preinst: -------------------------------------------------------------------------------- 1 | axosyslog-mod-common.maintscript -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-sql.postinst: -------------------------------------------------------------------------------- 1 | axosyslog-mod-common.maintscript -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-sql.postrm: -------------------------------------------------------------------------------- 1 | axosyslog-mod-common.maintscript -------------------------------------------------------------------------------- /packaging/debian/axosyslog-mod-sql.preinst: -------------------------------------------------------------------------------- 1 | axosyslog-mod-common.maintscript -------------------------------------------------------------------------------- /packaging/debian/axosyslog-scl.install: -------------------------------------------------------------------------------- 1 | usr/share/syslog-ng/include/scl/* 2 | -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/gbp.conf -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /packaging/debian/source/options: -------------------------------------------------------------------------------- 1 | single-debian-patch 2 | -------------------------------------------------------------------------------- /packaging/debian/tests/compile-incubator: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | apt-get source --compile syslog-ng-incubator -------------------------------------------------------------------------------- /packaging/debian/tty10.kfreebsd.conf: -------------------------------------------------------------------------------- 1 | @define tty10 "/dev/ttyva" 2 | -------------------------------------------------------------------------------- /packaging/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/packaging/debian/watch -------------------------------------------------------------------------------- /packaging/package-indexer/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /persist-tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/CMakeLists.txt -------------------------------------------------------------------------------- /persist-tool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/Makefile.am -------------------------------------------------------------------------------- /persist-tool/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/add.c -------------------------------------------------------------------------------- /persist-tool/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/add.h -------------------------------------------------------------------------------- /persist-tool/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/dump.c -------------------------------------------------------------------------------- /persist-tool/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/dump.h -------------------------------------------------------------------------------- /persist-tool/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/generate.c -------------------------------------------------------------------------------- /persist-tool/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/generate.h -------------------------------------------------------------------------------- /persist-tool/persist-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/persist-tool.c -------------------------------------------------------------------------------- /persist-tool/persist-tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/persist-tool/persist-tool.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/requirements.txt -------------------------------------------------------------------------------- /scl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/CMakeLists.txt -------------------------------------------------------------------------------- /scl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/Makefile.am -------------------------------------------------------------------------------- /scl/apache/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/apache/apache.conf -------------------------------------------------------------------------------- /scl/arr/arr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/arr/arr.conf -------------------------------------------------------------------------------- /scl/cee/adapter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/cee/adapter.conf -------------------------------------------------------------------------------- /scl/checkpoint/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/checkpoint/plugin.conf -------------------------------------------------------------------------------- /scl/cim/adapter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/cim/adapter.conf -------------------------------------------------------------------------------- /scl/cim/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/cim/template.conf -------------------------------------------------------------------------------- /scl/cisco/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/cisco/plugin.conf -------------------------------------------------------------------------------- /scl/collectd/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/collectd/plugin.conf -------------------------------------------------------------------------------- /scl/darwinosl/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/darwinosl/plugin.conf -------------------------------------------------------------------------------- /scl/discord/discord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/discord/discord.conf -------------------------------------------------------------------------------- /scl/ewmm/ewmm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/ewmm/ewmm.conf -------------------------------------------------------------------------------- /scl/graphite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/graphite/README -------------------------------------------------------------------------------- /scl/graphite/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/graphite/plugin.conf -------------------------------------------------------------------------------- /scl/graylog2/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/graylog2/plugin.conf -------------------------------------------------------------------------------- /scl/hdfs/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/hdfs/plugin.conf -------------------------------------------------------------------------------- /scl/iptables/iptables.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/iptables/iptables.conf -------------------------------------------------------------------------------- /scl/jellyfin/jellyfin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/jellyfin/jellyfin.conf -------------------------------------------------------------------------------- /scl/junos/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/junos/plugin.conf -------------------------------------------------------------------------------- /scl/kafka/kafka.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/kafka/kafka.conf -------------------------------------------------------------------------------- /scl/loggly/loggly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/loggly/loggly.conf -------------------------------------------------------------------------------- /scl/logmatic/logmatic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/logmatic/logmatic.conf -------------------------------------------------------------------------------- /scl/logscale/logscale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/logscale/logscale.conf -------------------------------------------------------------------------------- /scl/mariadb/audit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/mariadb/audit.conf -------------------------------------------------------------------------------- /scl/mbox/mbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/mbox/mbox.conf -------------------------------------------------------------------------------- /scl/netskope/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/netskope/plugin.conf -------------------------------------------------------------------------------- /scl/nodejs/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/nodejs/plugin.conf -------------------------------------------------------------------------------- /scl/osquery/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/osquery/plugin.conf -------------------------------------------------------------------------------- /scl/pacct/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/pacct/plugin.conf -------------------------------------------------------------------------------- /scl/paloalto/panos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/paloalto/panos.conf -------------------------------------------------------------------------------- /scl/pgsql/pgsql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/pgsql/pgsql.conf -------------------------------------------------------------------------------- /scl/pihole/pihole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/pihole/pihole.conf -------------------------------------------------------------------------------- /scl/rewrite/cc-mask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/rewrite/cc-mask.conf -------------------------------------------------------------------------------- /scl/scl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/scl.conf -------------------------------------------------------------------------------- /scl/slack/slack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/slack/slack.conf -------------------------------------------------------------------------------- /scl/solaris/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/solaris/plugin.conf -------------------------------------------------------------------------------- /scl/splunk/splunk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/splunk/splunk.conf -------------------------------------------------------------------------------- /scl/sudo/sudo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/sudo/sudo.conf -------------------------------------------------------------------------------- /scl/syslog-ng.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/syslog-ng.conf -------------------------------------------------------------------------------- /scl/syslogconf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/syslogconf/README -------------------------------------------------------------------------------- /scl/syslogconf/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/syslogconf/plugin.conf -------------------------------------------------------------------------------- /scl/system/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/system/plugin.conf -------------------------------------------------------------------------------- /scl/telegram/telegram.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/telegram/telegram.conf -------------------------------------------------------------------------------- /scl/websense/plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scl/websense/plugin.conf -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/get-libjvm-path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/get-libjvm-path.sh -------------------------------------------------------------------------------- /scripts/make-and-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/make-and-check.sh -------------------------------------------------------------------------------- /scripts/style-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/style-checker.sh -------------------------------------------------------------------------------- /scripts/test-grep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/test-grep.sh -------------------------------------------------------------------------------- /scripts/update-patterndb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/update-patterndb.in -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/scripts/version.sh -------------------------------------------------------------------------------- /syslog-ng-ctl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/syslog-ng-ctl/Makefile.am -------------------------------------------------------------------------------- /syslog-ng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/syslog-ng/CMakeLists.txt -------------------------------------------------------------------------------- /syslog-ng/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/syslog-ng/Makefile.am -------------------------------------------------------------------------------- /syslog-ng/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/syslog-ng/main.c -------------------------------------------------------------------------------- /syslog-ng/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/syslog-ng/wrapper.c -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/collect-cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/collect-cov.sh -------------------------------------------------------------------------------- /tests/commits/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/commits/check.sh -------------------------------------------------------------------------------- /tests/copyright/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/copyright/check.sh -------------------------------------------------------------------------------- /tests/copyright/policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/copyright/policy -------------------------------------------------------------------------------- /tests/functional/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/functional/control.py -------------------------------------------------------------------------------- /tests/functional/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/functional/globals.py -------------------------------------------------------------------------------- /tests/functional/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/functional/log.py -------------------------------------------------------------------------------- /tests/functional/rnd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/functional/rnd.in -------------------------------------------------------------------------------- /tests/functional/ssl.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/functional/ssl.crt -------------------------------------------------------------------------------- /tests/functional/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/functional/ssl.key -------------------------------------------------------------------------------- /tests/light/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/CMakeLists.txt -------------------------------------------------------------------------------- /tests/light/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/Makefile.am -------------------------------------------------------------------------------- /tests/light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/README.md -------------------------------------------------------------------------------- /tests/light/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/poetry.lock -------------------------------------------------------------------------------- /tests/light/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/pyproject.toml -------------------------------------------------------------------------------- /tests/light/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/pytest.ini -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/common/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/driver_io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/driver_io/file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/driver_io/file/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/driver_io/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/driver_io/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/executors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/helpers/loggen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/helpers/secure_logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/helpers/snmptrapd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/message_builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/message_builder/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/destinations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/logpath/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/rewrite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_config/statements/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/syslog_ng_ctl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/src/axosyslog_light/testcase_parameters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/light/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/light/tox.ini -------------------------------------------------------------------------------- /tests/loggen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/loggen/CMakeLists.txt -------------------------------------------------------------------------------- /tests/loggen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/loggen/Makefile.am -------------------------------------------------------------------------------- /tests/loggen/file_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/loggen/file_reader.c -------------------------------------------------------------------------------- /tests/loggen/loggen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/loggen/loggen.c -------------------------------------------------------------------------------- /tests/loggen/loggen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axoflow/axosyslog/HEAD/tests/loggen/loggen.md --------------------------------------------------------------------------------