mirror of
https://github.com/nasa/openmct.git
synced 2025-06-14 13:18:15 +00:00
works per swimlane now
This commit is contained in:
@ -33,7 +33,8 @@ class EventTelemetryProvider {
|
||||
|
||||
generateData(firstObservedTime, count, startTime, duration, name) {
|
||||
const millisecondsSinceStart = startTime - firstObservedTime;
|
||||
const utc = startTime + count * duration;
|
||||
const randomFewSeconds = Math.floor(Math.random() * 10000);
|
||||
const utc = startTime + count + randomFewSeconds * duration;
|
||||
const ind = count % messages.length;
|
||||
const message = messages[ind] + ' - [' + millisecondsSinceStart + ']';
|
||||
|
||||
|
Reference in New Issue
Block a user