You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
-
# Error Scraper
2
-
Error Scraper is a tool which performs automated data collection and analysis for the purposes of system debug.
1
+
# Node Scraper
2
+
Node Scraper is a tool which performs automated data collection and analysis for the purposes of system debug.
3
3
4
4
## Installation
5
5
### Install From Source
6
-
Error Scraper requires Python 3.10+ for installation. After cloning this repository, call dev-setup.sh script with 'source'. This script creates an editable install of Error Scraper in a python virtual environment and also configures the pre-commit hooks for the project.
6
+
Node Scraper requires Python 3.10+ for installation. After cloning this repository, call dev-setup.sh script with 'source'. This script creates an editable install of Node Scraper in a python virtual environment and also configures the pre-commit hooks for the project.
7
7
8
8
```sh
9
9
source dev-setup.sh
10
10
```
11
11
12
12
## CLI Usage
13
-
The Error Scraper CLI can be used to run Error Scraper plugins on a target system. The following CLI options are available:
13
+
The Node Scraper CLI can be used to run Node Scraper plugins on a target system. The following CLI options are available:
@@ -59,22 +59,22 @@ You can use the `describe` subcommand to display details about built-in configs
59
59
60
60
#### List all built-in configs:
61
61
```sh
62
-
error-scraper describe config
62
+
node-scraper describe config
63
63
```
64
64
65
65
#### Show details for a specific built-in config:
66
66
```sh
67
-
error-scraper describe config <config-name>
67
+
node-scraper describe config <config-name>
68
68
```
69
69
70
70
#### List all available plugins:
71
71
```sh
72
-
error-scraper describe plugin
72
+
node-scraper describe plugin
73
73
```
74
74
75
75
#### Show details for a specific plugin:
76
76
```sh
77
-
error-scraper describe plugin <plugin-name>
77
+
node-scraper describe plugin <plugin-name>
78
78
```
79
79
80
80
---
@@ -107,7 +107,7 @@ The 'gen-plugin-config' sub command can be used to generate a plugin config JSON
107
107
108
108
Generate a config for the DmesgPlugin:
109
109
```sh
110
-
error-scraper gen-plugin-config DmesgPlugin
110
+
node-scraper gen-plugin-config DmesgPlugin
111
111
```
112
112
113
113
This would produce the following config:
@@ -136,9 +136,9 @@ This would produce the following config:
136
136
### 'run-plugins' sub command
137
137
The plugins to run and their associated arguments can also be specified directly on the CLI using the 'run-plugins' sub-command. Using this sub-command you can specify a plugin name followed by the arguments for that particular plugin. Multiple plugins can be specified at once.
138
138
139
-
You can view the available arguments for a particular plugin by running `error-scraper run-plugins <plugin-name> -h`:
139
+
You can view the available arguments for a particular plugin by running `node-scraper run-plugins <plugin-name> -h`:
0 commit comments