Browse Source

Fix error when alert_anomalies.json doesn't exist

pull/1/head
rozetko 6 years ago
parent
commit
8dcd86bc29
  1. 7
      server/src/services/alerts.ts

7
server/src/services/alerts.ts

@ -1,5 +1,6 @@
import { getJsonDataSync, writeJsonDataSync } from './json';
import * as path from 'path';
import * as fs from 'fs';
import { AnomalyId } from './anomalyType';
import { ANOMALIES_PATH } from '../config';
import { runPredict } from './analytics';
@ -7,6 +8,10 @@ import { sendNotification } from './notification';
import { getLabeledSegments } from './segments';
function getAlertsAnomalies() : AnomalyId[] {
let filename = path.join(ANOMALIES_PATH, `alerts_anomalies.json`);
if(!fs.existsSync(filename)) {
saveAlertsAnomalies([]);
}
return getJsonDataSync(path.join(ANOMALIES_PATH, `alerts_anomalies.json`));
}
@ -52,7 +57,7 @@ async function alertsTick() {
const alertTimeout = 60000; // ms
const activeAlerts = new Set<string>();
// setTimeout(alertsTick, 5000);
setTimeout(alertsTick, 5000);
export { getAlertsAnomalies, saveAlertsAnomalies }

Loading…
Cancel
Save