File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
* It is strongly advised to perform an update of your tentacles after updating OctoBot. (start.py tentacles --install --all)*
8
8
9
+ ## [ 0.4.22] - 2022-11-23
10
+ ### Added
11
+ - System resources watcher
12
+
9
13
## [ 0.4.21] - 2022-11-23
10
14
### Added
11
15
- Order quantity in Trading modes config
Original file line number Diff line number Diff line change 1
- # OctoBot [ 0.4.21 ] ( https://octobot.click/gh-changelog )
1
+ # OctoBot [ 0.4.22 ] ( https://octobot.click/gh-changelog )
2
2
[ ![ PyPI] ( https://img.shields.io/pypi/v/OctoBot.svg )] ( https://octobot.click/gh-pypi )
3
3
[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/e07fb190156d4efb8e7d07aaa5eff2e1 )] ( https://app.codacy.com/gh/Drakkar-Software/OctoBot?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot&utm_campaign=Badge_Grade_Dashboard ) [ ![ Downloads] ( https://pepy.tech/badge/octobot/month )] ( https://pepy.tech/project/octobot )
4
4
[ ![ Dockerhub] ( https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg )] ( https://octobot.click/gh-dockerhub )
Original file line number Diff line number Diff line change 23
23
24
24
PROJECT_NAME = "OctoBot"
25
25
AUTHOR = "DrakkarSoftware"
26
- SHORT_VERSION = "0.4.21 " # major.minor.revision
26
+ SHORT_VERSION = "0.4.22 " # major.minor.revision
27
27
PATCH_VERSION = "" # patch : pX
28
28
VERSION_DEV_PHASE = "" # alpha : a / beta : b / release candidate : rc
29
29
VERSION_PHASE = "" # XX
Original file line number Diff line number Diff line change 26
26
import octobot_commons .databases as databases
27
27
import octobot_commons .tree as commons_tree
28
28
import octobot_commons .os_clock_sync as os_clock_sync
29
+ import octobot_commons .system_resources_watcher as system_resources_watcher
29
30
30
31
import octobot_services .api as service_api
31
32
import octobot_trading .api as trading_api
@@ -118,6 +119,7 @@ async def initialize(self):
118
119
await logger .init_octobot_chan_logger (self .bot_id )
119
120
await self .create_producers ()
120
121
await self .start_producers ()
122
+ await system_resources_watcher .start_system_resources_watcher ()
121
123
await self ._post_initialize ()
122
124
123
125
async def create_producers (self ):
@@ -185,6 +187,7 @@ async def stop(self):
185
187
await self .community_auth .stop ()
186
188
await self .service_feed_producer .stop ()
187
189
await os_clock_sync .stop_clock_synchronizer ()
190
+ await system_resources_watcher .stop_system_resources_watcher ()
188
191
service_api .stop_services ()
189
192
await self .interface_producer .stop ()
190
193
await databases .close_bot_storage (self .bot_id )
You can’t perform that action at this time.
0 commit comments