Browse Source

Detection status waiter #264 (#265)

master
rozetko 6 years ago committed by GitHub
parent
commit
2bbaf18040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 103
      src/panel/graph_panel/controllers/analytic_controller.ts
  2. 37
      src/panel/graph_panel/graph_ctrl.ts
  3. 58
      src/panel/graph_panel/services/analytic_service.ts

103
src/panel/graph_panel/controllers/analytic_controller.ts

@ -14,7 +14,7 @@ import { SegmentsSet } from '../models/segment_set';
import { SegmentArray } from '../models/segment_array'; import { SegmentArray } from '../models/segment_array';
import { HasticServerInfo, HasticServerInfoUnknown } from '../models/hastic_server_info'; import { HasticServerInfo, HasticServerInfoUnknown } from '../models/hastic_server_info';
import { Threshold, Condition } from '../models/threshold'; import { Threshold, Condition } from '../models/threshold';
import { DetectionStatus, DETECTION_STATUS_TEXT } from '../models/detection'; import { DetectionStatus, DETECTION_STATUS_TEXT, DetectionSpan } from '../models/detection';
import text from '../partials/help_section.html'; import text from '../partials/help_section.html';
import { import {
@ -45,6 +45,7 @@ export class AnalyticController {
private _tempIdCounted: number = -1; private _tempIdCounted: number = -1;
private _graphLocked: boolean = false; private _graphLocked: boolean = false;
private _statusRunners: Set<AnalyticUnitId> = new Set<AnalyticUnitId>(); private _statusRunners: Set<AnalyticUnitId> = new Set<AnalyticUnitId>();
private _detectionRunners: Set<AnalyticUnitId> = new Set<AnalyticUnitId>();
private _serverInfo: HasticServerInfo; private _serverInfo: HasticServerInfo;
private _currentMetric: MetricExpanded; private _currentMetric: MetricExpanded;
private _currentDatasource: DatasourceRequest; private _currentDatasource: DatasourceRequest;
@ -225,6 +226,21 @@ export class AnalyticController {
this.analyticUnits.forEach(a => this._runStatusWaiter(a)); this.analyticUnits.forEach(a => this._runStatusWaiter(a));
} }
fetchAnalyticUnitsDetections(from: number | null, to: number | null) {
if(from === null || to === null) {
return;
}
this.analyticUnits.forEach(analyticUnit => {
if(analyticUnit.status === 'READY') {
this._runDetectionsWaiter(analyticUnit, from, to);
}
});
}
stopAnalyticUnitsDetectionsFetching() {
this.analyticUnits.forEach(analyticUnit => this._detectionRunners.delete(analyticUnit.id));
}
async fetchAnalyticUnitsDetectionSpans(from: number, to: number): Promise<void[]> { async fetchAnalyticUnitsDetectionSpans(from: number, to: number): Promise<void[]> {
if(!_.isNumber(+from)) { if(!_.isNumber(+from)) {
throw new Error('from isn`t number'); throw new Error('from isn`t number');
@ -395,8 +411,10 @@ export class AnalyticController {
this.analyticUnits this.analyticUnits
.filter(analyticUnit => analyticUnit.inspect) .filter(analyticUnit => analyticUnit.inspect)
.forEach(analyticUnit => { .forEach(analyticUnit => {
if(analyticUnit.detectionSpans !== undefined) {
const statuses = analyticUnit.detectionSpans.map(span => span.status); const statuses = analyticUnit.detectionSpans.map(span => span.status);
detectionStatuses = _.concat(detectionStatuses, statuses); detectionStatuses = _.concat(detectionStatuses, statuses);
}
}); });
detectionStatuses = _.uniq(detectionStatuses); detectionStatuses = _.uniq(detectionStatuses);
@ -441,6 +459,8 @@ export class AnalyticController {
if(!silent) { if(!silent) {
await this._analyticService.removeAnalyticUnit(id); await this._analyticService.removeAnalyticUnit(id);
} }
this._statusRunners.delete(id);
this._detectionRunners.delete(id);
this._analyticUnitsSet.removeItem(id); this._analyticUnitsSet.removeItem(id);
} }
@ -513,6 +533,62 @@ export class AnalyticController {
} }
private async _runStatusWaiter(analyticUnit: AnalyticUnit) { private async _runStatusWaiter(analyticUnit: AnalyticUnit) {
const statusGenerator = this._analyticService.getStatusGenerator(
analyticUnit.id, 1000
);
return this._runWaiter<{ status: string, errorMessage?: string }>(
analyticUnit,
this._statusRunners,
statusGenerator,
(data) => {
const status = data.status;
const error = data.errorMessage;
if(analyticUnit.status !== status) {
analyticUnit.status = status;
if(error !== undefined) {
analyticUnit.error = error;
}
this._emitter.emit('analytic-unit-status-change', analyticUnit);
}
if(!analyticUnit.isActiveStatus) {
return true;
}
return false;
}
);
}
// TODO: range type with "from" and "to" fields
private async _runDetectionsWaiter(analyticUnit: AnalyticUnit, from: number, to: number) {
const detectionsGenerator = this._analyticService.getDetectionsGenerator(analyticUnit.id, from, to, 1000);
return this._runWaiter<DetectionSpan[]>(
analyticUnit,
this._detectionRunners,
detectionsGenerator,
(data) => {
if(!_.isEqual(data, analyticUnit.detectionSpans)) {
this._emitter.emit('analytic-unit-status-change', analyticUnit);
}
analyticUnit.detectionSpans = data;
let isFinished = true;
for (let detection of data) {
if(detection.status === DetectionStatus.RUNNING) {
isFinished = false;
}
}
return isFinished;
}
);
}
private async _runWaiter<T>(
analyticUnit: AnalyticUnit,
runners: Set<AnalyticUnitId>,
generator: AsyncIterableIterator<T>,
iteration: (data: T) => boolean
) {
if(this._analyticService === undefined) { if(this._analyticService === undefined) {
return; return;
} }
@ -524,35 +600,26 @@ export class AnalyticController {
throw new Error('analyticUnit.id is undefined'); throw new Error('analyticUnit.id is undefined');
} }
if(this._statusRunners.has(analyticUnit.id)) { if(runners.has(analyticUnit.id)) {
return; return;
} }
this._statusRunners.add(analyticUnit.id); runners.add(analyticUnit.id);
var statusGenerator = this._analyticService.getStatusGenerator( for await (const data of generator) {
analyticUnit.id, 1000
);
for await (const data of statusGenerator) {
if(data === undefined) { if(data === undefined) {
break; break;
} }
let status = data.status; if(!runners.has(analyticUnit.id)) {
let error = data.errorMessage; break;
if(analyticUnit.status !== status) {
analyticUnit.status = status;
if(error !== undefined) {
analyticUnit.error = error;
}
this._emitter.emit('analytic-unit-status-change', analyticUnit);
} }
if(!analyticUnit.isActiveStatus) { const shouldBreak = iteration(data);
if(shouldBreak) {
break; break;
} }
} }
this._statusRunners.delete(analyticUnit.id); runners.delete(analyticUnit.id);
} }
public getNewTempSegmentId(): SegmentId { public getNewTempSegmentId(): SegmentId {

37
src/panel/graph_panel/graph_ctrl.ts

@ -58,6 +58,11 @@ class GraphCtrl extends MetricsPanelCtrl {
private _grafanaUrl: string; private _grafanaUrl: string;
private _panelId: string; private _panelId: string;
private _dataTimerange: {
from: number,
to: number
};
panelDefaults = { panelDefaults = {
// datasource name, null = default datasource // datasource name, null = default datasource
datasource: null, datasource: null,
@ -392,19 +397,22 @@ class GraphCtrl extends MetricsPanelCtrl {
} }
if(this.analyticsController !== undefined) { if(this.analyticsController !== undefined) {
this.analyticsController.stopAnalyticUnitsDetectionsFetching();
const from = +this.range.from; const from = +this.range.from;
const to = +this.range.to; const to = +this.range.to;
const loadTasks = [ const loadTasks = [
// this.annotationsPromise, // this.annotationsPromise,
this.analyticsController.fetchAnalyticUnitsSegments(from, to), this.analyticsController.fetchAnalyticUnitsSegments(from, to)
// TODO: run detection status waiter if detection state !== 'READY'
this.analyticsController.fetchAnalyticUnitsDetectionSpans(from, to)
]; ];
await Promise.all(loadTasks); await Promise.all(loadTasks);
this.loading = false; this.loading = false;
// this.annotations = results[0].annotations; // this.annotations = results[0].annotations;
this.render(this.seriesList); this.render(this.seriesList);
this.analyticsController.fetchAnalyticUnitsDetections(
this._dataTimerange.from,
this._dataTimerange.to
);
} }
} }
@ -415,23 +423,14 @@ class GraphCtrl extends MetricsPanelCtrl {
} }
for(let series of this.seriesList) { for(let series of this.seriesList) {
if (series.prediction) { const from = _.find(series.datapoints, datapoint => datapoint[0] !== null);
var overrideItem = _.find( const to = _.findLast(series.datapoints, datapoint => datapoint[0] !== null);
this.panel.seriesOverrides,
el => el.alias === series.alias if(from !== undefined && to !== undefined) {
) this._dataTimerange = { from: from[1], to: to[1] };
if (overrideItem !== undefined) { } else {
this.addSeriesOverride({ this._dataTimerange = { from: null, to: null }
alias: series.alias,
linewidth: 0,
legend: false,
// if pointradius === 0 -> point still shows, that's why pointradius === -1
pointradius: -1,
fill: 3
});
}
} }
series.applySeriesOverrides(this.panel.seriesOverrides);
if (series.unit) { if (series.unit) {
this.panel.yaxes[series.yaxis - 1].format = series.unit; this.panel.yaxes[series.yaxis - 1].format = series.unit;

58
src/panel/graph_panel/services/analytic_service.ts

@ -167,15 +167,16 @@ export class AnalyticService {
return segments.map(s => new AnalyticSegment(s.labeled, s.id, s.from, s.to, s.deleted)); return segments.map(s => new AnalyticSegment(s.labeled, s.id, s.from, s.to, s.deleted));
} }
async * getStatusGenerator(id: AnalyticUnitId, duration: number): getStatusGenerator(
AsyncIterableIterator<{ status: string, errorMessage?: string }> { id: AnalyticUnitId,
duration: number
if(id === undefined) { ): AsyncIterableIterator<{ status: string, errorMessage?: string }> {
throw new Error('id is undefined'); return getGenerator<{ status: string, errorMessage?: string }>(
} id,
let statusCheck = async () => { duration,
async (id) => {
try { try {
return await this.get('/analyticUnits/status', { id }); return this.get('/analyticUnits/status', { id });
} catch(error) { } catch(error) {
if(error.status === 404) { if(error.status === 404) {
return { status: '404' }; return { status: '404' };
@ -183,15 +184,22 @@ export class AnalyticService {
throw error; throw error;
} }
} }
let timeout = async () => new Promise(
resolve => setTimeout(resolve, duration)
); );
while(true) {
yield await statusCheck();
await timeout();
} }
getDetectionsGenerator(
id: AnalyticUnitId,
from: number,
to: number,
duration: number
): AsyncIterableIterator<DetectionSpan[]> {
return getGenerator<DetectionSpan[]>(
id,
duration,
this.getDetectionSpans.bind(this),
from,
to
);
} }
async getServerInfo(): Promise<HasticServerInfo> { async getServerInfo(): Promise<HasticServerInfo> {
@ -322,3 +330,23 @@ export class AnalyticService {
return this._isUp; return this._isUp;
} }
} }
async function *getGenerator<T>(
id: AnalyticUnitId,
duration: number,
func: (...args: any[]) => Promise<T>,
...args
): AsyncIterableIterator<T> {
if(id === undefined) {
throw new Error('id is undefined');
}
let timeout = async () => new Promise(
resolve => setTimeout(resolve, duration)
);
while(true) {
yield await func(id, ...args);
await timeout();
}
}

Loading…
Cancel
Save