Home > Software engineering >  Log IIS http requests into database
Log IIS http requests into database

Time:09-27

I have IIS server used to integrate with external entities, and I need to log the request body into db. I don’t want to use IIS out of the box logging as it it will log in file and i need to save it in db in specific schema.

CodePudding user response:

you can use Serilog and use your particular database sink

 app.UseSerilogRequestLogging();

CodePudding user response:

ODBC logging format is a record of a fixed set of data properties in a database that complies with Open Database Connectivity (ODBC), such as Microsoft Access or Microsoft SQL Server?. Some of the items logged include the user's IP address, user name, request date and time (recorded as local time), HTTP status code, bytes received, bytes sent, action carried out (for example, a download carried out by a GET command), and the target (for example, the file that was downloaded). With ODBC logging, you must both specify the database to be logged to, and set up the database to receive the data. Maybe this blog will help you.

  • Related