|
|
|
import { SegmentsSet } from './segment_set';
|
|
|
|
import { SegmentArray } from './segment_array';
|
|
|
|
import { Segment, SegmentKey } from './segment';
|
|
|
|
import { Metric } from './metric';
|
|
|
|
|
|
|
|
import _ from 'lodash';
|
|
|
|
|
|
|
|
export type AnalyticSegmentPair = { anomalyType: AnalyticUnit, segment: AnalyticSegment };
|
|
|
|
export type AnalyticSegmentsSearcher = (point: number, rangeDist: number) => AnalyticSegmentPair[];
|
|
|
|
|
|
|
|
export type AnalyticUnitId = string;
|
|
|
|
|
|
|
|
export class AnalyticSegment extends Segment {
|
|
|
|
constructor(public labeled: boolean, key: SegmentKey, from: number, to: number) {
|
|
|
|
super(key, from, to);
|
|
|
|
if(!_.isBoolean(labeled)) {
|
|
|
|
throw new Error('labeled value is not boolean');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class AnalyticUnit {
|
|
|
|
|
|
|
|
private _selected: boolean = false;
|
|
|
|
private _deleteMode: boolean = false;
|
|
|
|
private _saving: boolean = false;
|
|
|
|
private _segmentSet = new SegmentArray<AnalyticSegment>();
|
|
|
|
private _status: string;
|
|
|
|
private _error: string;
|
|
|
|
private _metric: Metric;
|
|
|
|
|
|
|
|
private _alertEnabled?: boolean;
|
|
|
|
|
|
|
|
constructor(private _panelObject?: any) {
|
|
|
|
if(_panelObject === undefined) {
|
|
|
|
this._panelObject = {};
|
|
|
|
}
|
|
|
|
_.defaults(this._panelObject, {
|
|
|
|
name: 'anomaly_name', confidence: 0.2, color: 'red', pattern: 'General'
|
|
|
|
});
|
|
|
|
|
|
|
|
//this._metric = new Metric(_panelObject.metric);
|
|
|
|
}
|
|
|
|
|
|
|
|
get key(): AnalyticUnitId { return this.name; }
|
|
|
|
|
|
|
|
set name(value: string) { this._panelObject.name = value; }
|
|
|
|
get name(): string { return this._panelObject.name; }
|
|
|
|
|
|
|
|
set pattern(value: string) { this._panelObject.pattern = value; }
|
|
|
|
get pattern(): string { return this._panelObject.pattern.split(' ')[0]; }
|
|
|
|
|
|
|
|
set confidence(value: number) { this._panelObject.confidence = value; }
|
|
|
|
get confidence(): number { return this._panelObject.confidence; }
|
|
|
|
|
|
|
|
set color(value: string) { this._panelObject.color = value; }
|
|
|
|
get color(): string { return this._panelObject.color; }
|
|
|
|
|
|
|
|
get selected(): boolean { return this._selected; }
|
|
|
|
set selected(value: boolean) { this._selected = value; }
|
|
|
|
|
|
|
|
get deleteMode(): boolean { return this._deleteMode; }
|
|
|
|
set deleteMode(value: boolean) { this._deleteMode = value; }
|
|
|
|
|
|
|
|
get saving(): boolean { return this._saving; }
|
|
|
|
set saving(value: boolean) { this._saving = value; }
|
|
|
|
|
|
|
|
get visible(): boolean {
|
|
|
|
return (this._panelObject.visible === undefined) ? true : this._panelObject.visible
|
|
|
|
}
|
|
|
|
set visible(value: boolean) {
|
|
|
|
this._panelObject.visible = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
get metric() { return this._metric; }
|
|
|
|
|
|
|
|
addLabeledSegment(segment: Segment): AnalyticSegment {
|
|
|
|
var asegment = new AnalyticSegment(true, segment.key, segment.from, segment.to);
|
|
|
|
this._segmentSet.addSegment(asegment);
|
|
|
|
return asegment;
|
|
|
|
}
|
|
|
|
|
|
|
|
removeSegmentsInRange(from: number, to: number): AnalyticSegment[] {
|
|
|
|
return this._segmentSet.removeInRange(from, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
get segments(): SegmentsSet<AnalyticSegment> { return this._segmentSet; }
|
|
|
|
set segments(value: SegmentsSet<AnalyticSegment>) {
|
|
|
|
this._segmentSet.setSegments(value.getSegments());
|
|
|
|
}
|
|
|
|
|
|
|
|
get status() { return this._status; }
|
|
|
|
set status(value) {
|
|
|
|
if(
|
|
|
|
value !== 'ready' &&
|
|
|
|
value !== 'learning' &&
|
|
|
|
value !== 'pending' &&
|
|
|
|
value !== 'failed'
|
|
|
|
) {
|
|
|
|
throw new Error('Unsupported status value: ' + value);
|
|
|
|
}
|
|
|
|
this._status = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
get error() { return this._error; }
|
|
|
|
set error(value) { this._error = value; }
|
|
|
|
|
|
|
|
get isActiveStatus() {
|
|
|
|
return this.status !== 'ready' && this.status !== 'failed';
|
|
|
|
}
|
|
|
|
|
|
|
|
get panelObject() { return this._panelObject; }
|
|
|
|
|
|
|
|
get alertEnabled(): boolean { return this._alertEnabled; }
|
|
|
|
set alertEnabled(value) { this._alertEnabled = value;}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export class AnalyticUnitsSet {
|
|
|
|
|
|
|
|
private _mapKeyIndex: Map<AnalyticUnitId, number>;
|
|
|
|
private _items: AnalyticUnit[];
|
|
|
|
|
|
|
|
constructor(private _panelObject: any[]) {
|
|
|
|
if(_panelObject === undefined) {
|
|
|
|
throw new Error('panel object can`t be undefined');
|
|
|
|
}
|
|
|
|
this._mapKeyIndex = new Map<AnalyticUnitId, number>();
|
|
|
|
this._items = _panelObject.map(p => new AnalyticUnit(p));
|
|
|
|
this._rebuildIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
get items() { return this._items; }
|
|
|
|
|
|
|
|
addAnomalyType(anomalyType: AnalyticUnit) {
|
|
|
|
this._panelObject.push(anomalyType.panelObject);
|
|
|
|
this._mapKeyIndex[anomalyType.name] = this._items.length;
|
|
|
|
this._items.push(anomalyType);
|
|
|
|
}
|
|
|
|
|
|
|
|
removeAnomalyType(key: AnalyticUnitId) {
|
|
|
|
var index = this._mapKeyIndex[key];
|
|
|
|
this._panelObject.splice(index, 1);
|
|
|
|
this._items.splice(index, 1);
|
|
|
|
this._rebuildIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
_rebuildIndex() {
|
|
|
|
this._items.forEach((a, i) => {
|
|
|
|
this._mapKeyIndex[a.key] = i;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
byKey(key: AnalyticUnitId): AnalyticUnit {
|
|
|
|
return this._items[this._mapKeyIndex[key]];
|
|
|
|
}
|
|
|
|
|
|
|
|
byIndex(index: number): AnalyticUnit {
|
|
|
|
return this._items[index];
|
|
|
|
}
|
|
|
|
}
|