Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
olsajiri committed Oct 25, 2023
1 parent 33a8706 commit 087a467
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions docs/content/en/docs/concepts/tracing-policy/options.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
title: "Options"
icon: "overview"
weight: 3
description: "Pass options to hook"
---

It's possible to pass options through spec file as an array of name and value pairs:

```yaml
spec:
options:
- name: "option-1"
value: "True"
- name: "option-2"
value: "10"
```
Options array is passed and processed by each hook configuration that supports
options.
At the moment it's availabe for kprobe hooks.
- [`kprobeOptions`](#kprobe-options): options for kprobe hooks.

## Kprobe options

- [`kprobeOptionDisableKprobeMulti`](#kprobe-option-disable-kprobe-multi): disable kprobe multi link

### Option disable-kprobe-multi

This option disables kprobe multi link interface for all the kprobes defined in
the spec file. All the defined kprobes will be atached through standard kprobe
interface. It stays enabled for another spec file without this option.

It takes boolean as value.

Example:

```yaml
options:
- name: "disable-kprobe-multi"
value: "1"
```

0 comments on commit 087a467

Please sign in to comment.