Skip to content

Commit

Permalink
Associated move changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsinnit committed Feb 9, 2025
1 parent 7835749 commit cccd175
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/01-Introduction/02-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To collect this data, Retina observes and hooks on to system events within the k

This section discusses how Retina collects its raw data. More specifically, it discusses how the eBPF programs and plugins are used.

The plugins have a very specific scope by design, and Retina is designed to be extendable, meaning it is easy to add in additional plugins if necessary. If there is a plugin missing for your use case, you can create your own! See our [Development page](../07-Contributing/02-development.md) for details on how to get started.
The plugins have a very specific scope by design, and Retina is designed to be extendable, meaning it is easy to add in additional plugins if necessary. If there is a plugin missing for your use case, you can create your own! See our [Development page](../08-Contributing/02-development.md) for details on how to get started.

The plugins are responsible for installing the eBPF programs into the host kernel during startup. These eBPF programs collect metrics from events in the kernel level, which are then passed to the user space where they are parsed and converted into a `flow` data structure. Depending on the Control Plane being used, the data will either be sent to a Retina Enricher, or written to an external channel which is consumed by a Hubble observer - more on this in the [Control Plane](#control-plane) section below. It is not required for a plugin to use eBPF, it can also use syscalls or other API calls. In either case, the plugins will implement the same [interface](https://github.com/microsoft/retina/blob/main/pkg/plugin/registry/registry.go).

Expand Down
2 changes: 1 addition & 1 deletion site/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const config = {
items: [
{
label: "Contribute",
href: "https://github.com/microsoft/retina/tree/main/docs/07-Contributing",
href: "https://github.com/microsoft/retina/tree/main/docs/08-Contributing",
},
{
label: "Github",
Expand Down

0 comments on commit cccd175

Please sign in to comment.