stvhwrd / Stock-Trading-System-HTTP-Server

📈💱 [Containerized Go server] HTTP Server for Stock Trading System project
1 stars 0 forks source link

Get DUMPLOGs from Logging Server to Client #5

Open stvhwrd opened 5 years ago

stvhwrd commented 5 years ago

Produce Log Files

In addition to the client activities, DayTrading requires full auditing capabilities; hence, complete transaction logs must be able to be produced on demand that detail of all client activities in the system (including timestamps of all transactions), a record of each individual transaction, each transaction’s processing time information, and all account state changes within the system. This log must be dumped from the system as an ASCII text file when it receives the DUMPLOG command.

Constraints

(:point_up: Log files not of this exact schema will not be accepted)

Validation

Log files can be validated using xmllint against the provided XSD file

xmllint --schema logfile.xsd --noout OURLOGFILE.xml

Example

https://www.ece.uvic.ca/~seng468/ProjectWebSite/ExampleLog.html

stvhwrd commented 5 years ago

The team determined that log files will be generated by Logging Server.

stvhwrd commented 5 years ago