Skip to content

Commit 94d5107

Browse files
authoredMar 18, 2025··
Tidy documentation (aquasecurity#4639)
* fix mkdocs links * fix macfaq link, and relative links * fix more relative links * replace relative links with file links * remove none existing documentation section * add back and fix the ordering-event link
1 parent db93266 commit 94d5107

File tree

8 files changed

+16
-15
lines changed

8 files changed

+16
-15
lines changed
 

‎docs/contributing/setup-development-machine-with-vagrant.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
all software requirements, packages, operating system configuration, and users
55
to provide the same development environment for everyone.
66

7-
The [Vagrantfile](/Vagrantfile) describes the type of machine required to build Tracee from the [Getting Started](../index.md) guides.
7+
The [Vagrantfile](https://github.com/aquasecurity/tracee/blob/main/Vagrantfile) describes the type of machine required to build Tracee from the [Getting Started](../index.md) guides.
88

99
This allows developers involved in the project to check out the code, run `vagrant up`, and be on their way.
1010

‎docs/docs/events/builtin/syscalls/renameat.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ A user wants to move a file from one directory to another, without knowing the f
3434
The `renameat` syscall is vulnerable to TOCTOU issues. This can cause unexpected behavior if the file path or file descriptor becomes invalid between the check and the use.
3535

3636
## Related Events
37-
* [openat](#openat) - open a file relative to an existing file descriptor.
38-
* [unlinkat](#unlinkat) - delete a file or directory, relative to an existing file descriptor.
37+
* [openat](openat.md) - open a file relative to an existing file descriptor.
38+
* [unlinkat](unlinkat.md) - delete a file or directory, relative to an existing file descriptor.
3939

4040
> This document was automatically generated by OpenAI and needs review. It might
4141
> not be accurate and might contain errors. The authors of Tracee recommend that

‎docs/docs/install/config/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ To use the `--config` flag, you need to provide the path to the configuration fi
99
```console
1010
tracee --config /path/to/tracee-config.yaml
1111
```
12-
__NOTE:__ you can find an example config file in [here](/examples/config/).
12+
__NOTE:__ you can find an example config file in [here](https://github.com/aquasecurity/tracee/blob/main/examples/config/global_config.yaml).

‎docs/docs/outputs/output-options.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ Available options:
5353
5454
5. **sort-events**
5555
56-
This makes it possible to sort the events as they happened. Especially in systems where Tracee tracks lots of events, it can happen that they are received unordered. More information is provided in the [deep-dive](../deep-dive/ordering-events.md) section of the documentation.
57-
56+
This makes it possible to sort the events as they happened. Especially in systems where Tracee tracks lots of events, it can happen that they are received unordered. More information is provided in the [ordering-event](../advanced/ordering-events.md) section of the documentation.
5857
```
5958
output:
6059
options:

‎docs/docs/policies/rules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Rules are part of the Tracee Policy, `rules` let you define which events to trac
66
- events: let you define which events you want to trace.
77
- filters: enable you to refine the policy's scope.
88

9-
Tracee support many kind of events to tracee you can find which events you can trace in [Events section](/docs/docs/events/index.md).
9+
Tracee support many kind of events to tracee you can find which events you can trace in [Events section](../events/index.md).
1010

1111
- **NOTE:** It is possible to define multiple events within each policy.
1212

‎docs/index.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ hide:
66

77
👋 Welcome to Tracee Documentation! To help you get around, please notice the different sections at the top global menu:
88

9-
- You are currently in the [Getting Started](./) section where you can find general information and help with first steps.
10-
- In the [Tutorials](./tutorials/overview) section you can find step-by-step guides that help you accomplish specific tasks.
11-
- In the [Docs](./docs/overview) section you can find the complete reference documentation for all of the different features and settings that Tracee has to offer.
12-
- In the [Contributing](./contributing/overview) section you can find technical developer documentation and contribution guidelines.
9+
- You are currently in the [Getting Started](index.md) section where you can find general information and help with first steps.
10+
- In the [Tutorials](tutorials/overview.md) section you can find step-by-step guides that help you accomplish specific tasks.
11+
- In the [Docs](docs/overview.md) section you can find the complete reference documentation for all of the different features and settings that Tracee has to offer.
12+
- In the [Contributing](contributing/overview.md) section you can find technical developer documentation and contribution guidelines.
1313

1414
<!-- links that differ between docs and readme -->
1515
[installation]:./docs/install/index.md
@@ -20,7 +20,7 @@ hide:
2020
<!-- everything below is copied from readme -->
2121

2222
Before moving on, please consider giving us a GitHub star ⭐️. Thank you!
23-
23+
2424
## About Tracee
2525

2626
Tracee is a runtime security and observability tool that helps you understand how your system and applications behave.
@@ -32,7 +32,7 @@ To learn more about Tracee, check out the [documentation](https://aquasecurity.g
3232
## Quickstart
3333

3434
To quickly try Tracee use one of the following snippets. For a more complete installation guide, check out the [Installation section][installation].
35-
Tracee should run on most common Linux distributions and kernels. For compatibility information see the [Prerequisites][prereqs] page. Mac users, please read [this FAQ](macfaq).
35+
Tracee should run on most common Linux distributions and kernels. For compatibility information see the [Prerequisites][prereqs] page. Mac users, please read [this FAQ][macfaq].
3636

3737
### Using Docker
3838

@@ -65,7 +65,7 @@ For a complete walkthrough please see the [Kubernetes getting started guide][kub
6565
Join the community, and talk to us about any matter in the [GitHub Discussions](https://github.com/aquasecurity/tracee/discussions) or [Slack](https://slack.aquasec.com).
6666
If you run into any trouble using Tracee or you would like to give use user feedback, please [create an issue.](https://github.com/aquasecurity/tracee/issues)
6767

68-
Find more information on [contribution documentation](./contributing/overview/).
68+
Find more information on [contribution documentation](contributing/overview.md).
6969

7070
## More about Aqua Security
7171

‎docs/tutorials/tracee-vagrant.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ docker run --name tracee -it --rm \
3939
aquasec/tracee:latest
4040
```
4141

42-
To learn how to install Tracee in a production environment, [check out the Kubernetes guide](./kubernetes-quickstart).
42+
To learn how to install Tracee in a production environment, [check out the Kubernetes guide](../contributing/kubernetes.md).

‎mkdocs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ nav:
109109
- vfs_readv: docs/events/builtin/extra/vfs_readv.md
110110
- security_path_notify: docs/events/builtin/extra/security_path_notify.md
111111
- set_fs_pwd: docs/events/builtin/extra/set_fs_pwd.md
112+
- stack_pivot: docs/events/builtin/extra/stack_pivot.md
113+
- suspicious_syscall_source: docs/events/builtin/extra/suspicious_syscall_source.md
112114
- tracee_info: docs/events/builtin/extra/tracee_info.md
113115
- chmod_common: docs/events/builtin/extra/chmod_common.md
114116
- Syscalls:

0 commit comments

Comments
 (0)
Please sign in to comment.