Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[monitoring] Documentation v2 #159

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions monitoring/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Инструкция по запуску мониторинга

## Установка необходимых пакетов:
```
npm install sqlite3
```
Comment on lines +3 to +6
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Еще нужно подумать

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А что, просто npm install уже не катит? Может, его в зависимости внести?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Там почти весь файл package-lock.json перезаписывается

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Но после этого все как часы устанавливается и работает

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Причем пропадает проблема если сначала поставить sqlite3, а потом js-crawler, то ничего не ломается

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А что, у нас package-lock в репозитории есть?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Брр.


## Только для ОС Windows:
* Необходимо удалить файл **prepareDictionary.js** из корневого каталога:
```
rm prepareDictionary.js
```
* Запустить терминал **PowerShell** от имени администратора и перейти в корневой каталог **chas-correct**.
* Создать символическую ссылку на файл **chrome/prepareDictionary.js** в корневом каталоге с помощью команды:
```
New-Item -ItemType SymbolicLink -Path "prepareDictionary.js" -Target "chrome/prepareDictionary.js"
```

## Рабочая область:
Для обновления url-листов и запуска мониторинга рабочей областью является **monitoring**:
```
cd monitoring
```

## Обновление url-листов:
* Для обновления url-листов используются скрипты из каталога
**monitoring/update-urllists**.
* Имя скрипта - это название сайта.
* Обновление url-листа сайта **siteName** выполняется посредством команды:
```
node update-urllists/siteName.js
```

## Запуск мониторинга:
* Для запуска мониторинга используются скрипты из каталога
**monitoring/scripts**.
* Имя скрипта - это название сайта.
* Перед запуском мониторинга необходиму создать подкаталог **dumps** в каталоге **monitoring**:
```
mkdir dumps
```
* Запуск мониторинга сайта **siteName** выполняется посредством команды:
```
node scripts/siteName.js
```
* Если нужный скрипт отсутствует, запуск мониторинга
осуществляется с помощью универсального скрипта через команду:
```
node scripts/universal.js siteName
```