File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ cargo build --release
14
14
15
15
The resulting plugin can be found under ` ./target/release/libmemflow_reclass.so ` (or dll on windows).
16
16
17
- ** The plugin as well as the ` memflow.toml ` file have to be put in the ReClass ` /Plugins ` folders.**
18
-
19
17
## Usage
20
18
21
19
After the plugin has been copied to the ` ./Plugins ` folder in ReClass it can be selected as a plugin inside of ReClass.
@@ -26,13 +24,18 @@ More information on access rights can be found in the [memflow repository](https
26
24
27
25
## Configuration
28
26
29
- The configuration file offers the following settings:
30
- - ` connector ` - the name of the connector to use
31
- - ` args ` - the argument string passed to the connector, optional
32
- - ` parse_sections ` - will load section information of the process
27
+ The ` memflow.toml ` file is used to configure the plugin and configure the memflow connector that should be used. The file has the following format:
28
+ ``` toml
29
+ connector = " kvm" # the name of the connector to use
30
+ args = " " # the argument string passed to the connector, optional
31
+ log_level = " info" # changes the memflow logging level, optional
32
+ parse_sections = true # will load section information of the process
33
+ ```
33
34
34
35
Depending on the Connector you use it might be useful to disable section parsing as this slow down the ReClass UI.
35
36
37
+ ** The plugin as well as the ` memflow.toml ` file have to be put in the ReClass ` /Plugins ` folders.**
38
+
36
39
## Remarks
37
40
38
41
This plugin is still work in progress and some features might not yet work as expected.
You can’t perform that action at this time.
0 commit comments