File tree 1 file changed +19
-12
lines changed
1 file changed +19
-12
lines changed Original file line number Diff line number Diff line change 1
- # Anomaly detection
1
+ # AIOps 2020
2
2
3
- > This is the group project for ANM2020.
3
+ This is our group project for Advanced Network Management 2020 final project.
4
+
5
+ ## Repository Guide
6
+
7
+ > This repository is for the final project of * The Anomalies*
8
+
9
+ ### Directory
10
+
11
+ - ` Docs/ ` Documentation for this project. Includes the project specification as well as our presentation and final report.
12
+ - ` Legacy ` All of our previous prototypes and pre-trained models.
13
+ - ` Processing ` The notebooks we created for processing data of different KPI resources.
14
+ - ` Scripts ` The main and test scripts.
4
15
5
16
### Running Scripts in Tencent Cloud
17
+
6
18
- Make sure python script has the following at the beginning
7
19
``` shell
8
20
#! /usr/bin/env python3
9
21
```
10
22
- Give it permission
11
23
``` shell
12
- chmod +x consumer .py
24
+ chmod +x Consumer .py
13
25
```
14
26
- Run it using:
15
27
``` shell
16
- nohup python -u ./consumer .py > [output file name].log &
28
+ nohup python -u ./Consumer .py > [output file name].log &
17
29
```
18
30
19
31
- View the output log:
20
32
21
33
``` shell
22
34
cat [output file name].log
23
- ```
35
+ ```
24
36
25
37
- Kill the process:
26
38
27
39
``` shell
28
- ps ax | grep consumer .py
40
+ ps ax | grep Consumer .py
29
41
kill PID
30
- ` ` `
31
-
32
- # ## Scripts
33
-
34
- - consumer.py --- script to submit our answers
35
- - concat.py --- script to make a single file for all data
42
+ ```
36
43
37
44
## Problem statement
38
45
You can’t perform that action at this time.
0 commit comments