[Time Conductor] Roll back changes to example telemetry

In particular, remove the timeService implementation; this is made
obsolete by a switch to a simpler format-based approach.
This commit is contained in:
Victor Woeltjen
2015-10-26 10:05:46 -07:00
parent aa23d358cc
commit ed9a5b0890
4 changed files with 0 additions and 137 deletions

View File

@ -49,11 +49,6 @@ define(
Math.max(Math.floor(request.start / 1000), firstTime),
offset = requestStart - firstTime;
if (request.domain === 'index') {
offset = Math.floor(request.start || 0);
count = Math.ceil(request.end || endTime);
}
if (request.size !== undefined) {
offset = Math.max(offset, count - request.size);
}
@ -63,9 +58,6 @@ define(
};
generatorData.getDomainValue = function (i, domain) {
if (domain === 'index') {
return i + offset;
}
return (i + offset) * 1000 + firstTime * 1000 -
(domain === 'yesterday' ? ONE_DAY : 0);
};