Skip to content

Commit 26acb6e

Browse files
authored
Merge pull request #63 from diana-qing/onboarding-docs
Add documentation for onboarding steps
2 parents c90622b + 7f26eca commit 26acb6e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

INSTALL.md

+6
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,9 @@ meson setup configure -Dplatform=generic
157157
export LD_LIBRARY_PATH=$DPDK_PATH/lib/aarch64-linux-gnu
158158
```
159159

160+
#### Troubleshooting: Mempool Capacity
161+
When running applications using the provided offline config file, a mempool creation error may occur:
162+
```sh
163+
Error: Mempool mempool_0 creation failed
164+
```
165+
This can be resolved by reducing the mempool capacity in the config file.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ fn main() {
6363
runtime.run();
6464
}
6565
```
66+
Writing a Retina application consists of defining subscriptions. A subscription is defined by (1) [writing a filter](https://stanford-esrg.github.io/retina/retina_filtergen/index.html) to describe what subset of network traffic you're interested in, (2) choosing [data types to subscribe to](https://stanford-esrg.github.io/retina/retina_core/subscription/index.html), and (3) defining a callback function that takes in a subscribable data type and performs operations on the filtered data.
6667

6768
Build all examples in release mode:
6869

0 commit comments

Comments
 (0)