Hi everyone,
we are new in Elastic framwork and we would like to monitor file logs from a robot control, with the following pattern. The problem is that timestamp are relative to a base time, so we would need to process the base time + line timestamp to obtain the absolute timestamp.
It is possible to do this?
Note: showed time are just example, we would need a milliseconds precission add
File log patter from Robot:
Name: Test0003
Simulation Start: 2018/04/23 12:38:40
Time Data1 Data2
0.1 28,34 82,42
0.2 28,34 82,42
0.3 28,34 82,42
[...]
What we need in elastic:
Time Data1 Data2 Simulation
2018/04/23 12:38:41 28,34 82,42 Test0003
2018/04/23 12:38:42 28,34 82,42 Test0003
2018/04/23 12:38:43 28,34 82,42 Test0003
[...]
Describing the overall solution, we need to obtain logs from the robot and from other sources, but they must share the same time base (there will be a NTP v4. service to synchronize every source).
Is it possible to achieve this?
Thanks.