I'm collecting data from an API using a DOS port of wget to generate data for a log file (which will be analysed at a later date). The API provides all the information I need except a current time (it provides a time at the start of the stream of data but not again after that).
The API provides, typically 10 lines of data initially and then a line every 20-30 seconds.
I'm trying to timestamp this output and copy it to a log file - I don't mind if the timestamp is on the same line as the rest of the output or the line before.
I first started with this batchfile:
addtimes.bat:
@echo off >nul
:start
set /p input="":
echo %time%
echo %input%
goto:start
(called as "wget..... | addtimes.bat > log.log")
However this dropped data comping in - the beginning of many lines of data were lost.
I've looked on here and realised I should use a for loop.
addtimes2.bat:
@echo off
cls
setlocal EnableDelayedExpansion
for /F "tokens=*" %%a in ('more') do (
echo !time! %%a )
)
I've tried with and without Enabling Delayed Expansion.
I don't seem to be able to pass information one line at a time with a different timestamp - all my lines get identical timestamps once I close the datastream.
Typical input data is of the form:
[1,"219","265",14528,1359031137000,1359031137000]
[1,"6594","358",18188,1359031019000,1359031019000]
[1,"690","94",15920,1359031534000,1359031534000]
[1,"25164","102",2129,1359031457000,1359031457000]
[1,"3488","329",2109,1359030868000,1359030868000]
[1,"37247","6",11506,1359031223000,1359031223000]
You may notice there are UTC times in the data but they are not the current time.