search for: syslog_pid

Displaying 8 results from an estimated 8 matches for "syslog_pid".

2019 Mar 08
1
syslog / logstah problem with timestamp
Hallo, I try to send my centos 7 logfiles to an logstsah server. Can anyone give me an hint how to fix this problem? Thanks Ralf > {"index"=>{"_index"=>"%{[@metadata][comline]}-%{[@metadata][version]}", > "_type"=>"doc", "_id"=>"U1XLXGkBpfl5FoHeY4J8", "status"=>400, >
2015 Aug 31
0
[PATCH v5 2/2] fish: add journal-view command (RHBZ#988100)
...uot;PRIORITY"); + ('y', "CODE_FILE"); + ('z', "CODE_LINE"); + ('0', "CODE_FUNC"); + ('1', "ERRNO"); + ('2', "SYSLOG_FACILITY"); + ('3', "SYSLOG_IDENTIFIER"); + ('4', "SYSLOG_PID"); + ('~', "timestamp") +];; + +let deopt x = match x with Options y -> y;; + +let string_list_to_string s = List.fold_left (fun a b -> a ^ b) "" s;; + +let ops_to_pod_string () = + List.fold_left (fun a b -> a ^ b) "" + (List.map (fun (a,b)...
2015 Mar 05
0
[PATCH v3] fish: add journal-view command
...uot;PRIORITY", + "y", "CODE_FILE", + "z", "CODE_LINE", + "0", "CODE_FUNC", + "1", "ERRNO", + "2", "SYSLOG_FACILITY", + "3", "SYSLOG_IDENTIFIER", + "4", "SYSLOG_PID" +/* "~" means timestamp */ +}; + +static const char * +lookup_field (char field) +{ + size_t i = 0; + for (i = 0; i < sizeof log_fields / sizeof *log_fields; i += 2) { + if (field == log_fields[i][0]) + return log_fields[i+1]; + } + return NULL; +} + +/* Fetch and pri...
2015 Mar 03
2
[PATCH v2] RFE: journal reader in guestfish
This implements new guestfish only command called journal-view. There seems to be a minor issue when user wants to run it through pager (more) and wants cancel it. User will end up with stuck guestfish until journal-view transfers all journal items. Output is now configurable, it's the same format as virt-log has, since both uses same code now. Maros Zatko (1): fish: add journal-view
2015 Mar 05
2
[PATCH v3] RFE: journal reader in guestfish
There seems to be a minor issue when user wants to run it through pager (more) and wants cancel it. User will end up with stuck guestfish until journal-view transfers all journal items. Output is now configurable, it's the same format as virt-log has, since both uses same code now. Maros Zatko (1): fish: add journal-view command cat/Makefile.am | 1 + cat/log.c | 113
2015 Mar 03
0
[PATCH v2] fish: add journal-view command
...uot;PRIORITY", + "y", "CODE_FILE", + "z", "CODE_LINE", + "0", "CODE_FUNC", + "1", "ERRNO", + "2", "SYSLOG_FACILITY", + "3", "SYSLOG_IDENTIFIER", + "4", "SYSLOG_PID" +/* "~" means timestamp */ +}; + +static const char * +lookup_field (char field) +{ + size_t i = 0; + for (i = 0; i < sizeof log_fields / sizeof *log_fields; i += 2) { + if (field == log_fields[i][0]) + return log_fields[i+1]; + } + return NULL; +} + +/* Fetch and pri...
2015 Aug 31
5
[PATCH v5 0/2] RFE: journal reader in guestfish
There seems to be a minor issue when user wants to run it through pager (more) and wants cancel it. User will end up with stuck guestfish until journal-view transfers all journal items. Output is configurable, it's the same format as virt-log has, since both uses same code. Maros Zatko (2): cat: move get_journal_field to fish/journal.c fish: add journal-view command (RHBZ#988100)
2015 Oct 16
2
[PATCH v6 0/2] RFE: journal reader in guestfish
Output is configurable, it's the same format as virt-log has, since both uses same code. First patch moves get_journal_field around and renames it to journal_view and the next one reimplements it a bit and brings it to guestfish. Maros Zatko (2): cat: move get_journal_field to fish/journal.c fish: add journal-view command (RHBZ#988100) .gnulib | 2 +-