msahil
msahil

Reputation: 25

write apache httpd access log entries to oracle database

is there a way to send apache access log entries to oracle database at runtime...analyzing those entries from database instead of parsing access.log file is far better...i found some modules for logging this to myssql database but has somebody done that for oracle?

Upvotes: 2

Views: 778

Answers (1)

Jubal
Jubal

Reputation: 8727

Personally I would etl my logs into oracle from the existing logs on the filesystem perodically. If the database has issues, it affects your webserver, not to mention that write times to the database will typically be slower (making a socket connection, updating indexes during the insert, etc).

Upvotes: 2

Related Questions