Ich analysiere IIS-Protokolle.
Dieser Fehler wird in meinem Nxlog-Ereignisprotokoll angezeigt:
2013-12-24 18:40:20 ERROR if-else failed at line 50, character 351 in C:\Program Files (x86)\nxlog\conf\nxlog.conf. statement execution has been aborted; procedure 'parse_csv' failed at line 50, character 225 in C:\Program Files (x86)\nxlog\conf\nxlog.conf. statement execution has been aborted; Invalid CSV input: '2012-06-20 14:31:37 10.1.0.16 GET /App_Themes/Authenticated/Styles/index.jsp - 80 - 192.168.0.93 "|dir 302 0 0 62'
Dies ist eine bessere Ansicht der Zeile(n) in der Protokolldatei
2012-06-20 14:31:37 10.1.0.16 GET /App_Themes/Authenticated/Styles/index.jsp - 80 - 192.168.0.93 |dir 302 0 0 62
Dies ist meine nxlog.conf-Datei. Ich habe sie in Zeile 51 abgeschnitten, weil der Rest nur Routing ist.
define ROOT C:\Program Files (x86)\nxlog
Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
SpoolDir %ROOT%\data
LogFile %ROOT%\data\nxlog.log
SuppressRepeatingLogs TRUE
LogLevel INFO
#<Extension fileop>
# Module xm_fileop
# <Schedule>
# Every 1 hour
# Exec file_cycle('%ROOT%\data\nxlog.log', 5);
# </Schedule>
#</Extension>
<Extension syslog>
Module xm_syslog
</Extension>
<Extension json>
Module xm_json
</Extension>
<Extension w3c>
Module xm_csv
Fields $date, $time, $s-ip, $cs-method, $cs-uri-stem, $cs-uri-query, $s-port, $cs-username, $c-ip, $cs-User-Agent, $sc-status, $sc-substatus, $sc-win32-status, $time-taken
FieldTypes string, string, string, string, string, string, string, string, string, string, string, string, string, string
Delimiter ' '
QuoteChar '"'
EscapeControl FALSE
UndefValue -
</Extension>
<Input iis_in>
Module im_file
File "f:\\iislogs\\u_*.log"
ReadFromLast FALSE
Exec if $raw_event =~ /^#/ drop(); \
else \
{ \
w3c->parse_csv(); \
$EventTime = parsedate($date + " " + $time); \
to_json(); \
}
</Input>
- Ist das etwas, worüber ich mir Sorgen machen sollte?
- Ist das ein Aussetzer wegen des "-Charakters?
- Wie kann ich das vermeiden?
EDIT: Weitere Untersuchungen zeigen, dass dies wahrscheinlich an falsch codierten Zeichen im Feld „cs(User-Agent)“ liegt. Ich bin mir nicht sicher, was ich dagegen tun soll.
#Fields: date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status time-taken
2012-02-04 22:09:37 10.1.0.16 GET /login.aspx - 80 - 192.168.0.93 +xa7 403 4 5 218
2012-02-04 22:09:37 10.1.0.16 GET /signup/ - 80 - 192.168.0.93 +xa7 302 0 0 15
2012-02-04 22:09:37 10.1.0.16 GET /signup/ - 80 - 192.168.0.93 " 302 0 0 15
2012-02-04 22:09:37 10.1.0.16 GET /signup/ - 80 - 192.168.0.93 ߧߢ 302 0 0 0
2012-02-04 22:09:37 10.1.0.16 GET /signup/ - 80 - 192.168.0.93
Antwort1
Es ist ein wenig unklar, ob es eine"Zeichen in Ihrer Eingabe oder nicht. Versuchen Sie, QuoteChar auf etwas anderes als das Anführungszeichen zu setzen.