Skip to content

Commit 7d11c02

Browse files
committed
new: sections
Signed-off-by: Lorenzo Fontana <[email protected]>
1 parent fa9120b commit 7d11c02

17 files changed

+162
-9
lines changed

config.toml

Lines changed: 0 additions & 5 deletions
This file was deleted.

config.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
baseURL: "http://example.org/"
2+
languageCode: "en-us"
3+
title: "BPF Workshop"
4+
theme: "workshop"
5+
publishDir: "docs"
6+
7+
menu:
8+
main:
9+
- identifier: introduction
10+
weight: 100
11+
- identifier: program-types
12+
weight: 200
13+
- identifier: bpf-vm
14+
weight: 300
15+
- identifier: bcc
16+
weight: 400
17+
- identifier: bpftrace
18+
weight: 500
19+
- identifier: gobpf
20+
weight: 600
21+
- identifier: kubernetes
22+
weight: 700
23+
- identifier: clang
24+
weight: 800
25+
- identifier: tools
26+
weight: 900
27+
- identifier: networking
28+
weight: 1000

content/33-toc.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "toc"
3+
weight: 33
4+
---
5+
6+
## TOC
7+
8+
TODO

content/bpftrace/500-bpftrace.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
---
3+
title: "bpftrace"
4+
sectionIdentifier: "bpftrace"
5+
weight: 500
6+
class: title
7+
---
8+
{{< nav >}}
9+

content/500-bpftrace.md renamed to content/bpftrace/501-bpftrace.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
---
33
title: "bpftrace"
4-
weight: 500
4+
weight: 501
55
---
66

77
# bpftrace: BPF observability front-end
@@ -13,3 +13,4 @@ On GitHub https://github.com/iovisor/bpftrace
1313
- Custom one-liners
1414
- Tools
1515

16+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
---
3+
title: "bpftrace-syntax"
4+
weight: 503
5+
---
6+
7+
# bpftrace: Syntax
8+
9+
.pic[
10+
![bpftrace-syntax](/img/bpftrace-syntax.png)
11+
]
File renamed without changes.

content/501-bpftrace-probes.md renamed to content/bpftrace/505-bpftrace-probes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
---
33
title: "bpftrace-probes"
4-
weight: 501
4+
weight: 505
55
---
66

77
# bpftrace: Probes

content/502-bpftrace-probe-types-shortcuts.md renamed to content/bpftrace/510-bpftrace-probe-types-shortcuts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "probe type shortcuts"
3-
weight: 502
3+
weight: 510
44
---
55

66
# bpftrace: Probe type shortcuts
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
---
3+
title: "bpftrace-filters"
4+
weight: 515
5+
---
6+
7+
# bpftrace: Filters
8+
9+
- /pid == 181/
10+
- /comm != “sshd”/
11+
- /@ts[tid]/
12+

0 commit comments

Comments
 (0)