You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,9 +128,41 @@ To install ipfixprobe with NEMEA dependency from binary RPM packages, it is poss
128
128
129
129
## Telemetry
130
130
131
-
`ipfixprobe`can expose telemetry data using the appFs library, which leverages the fuse3 library (filesystem in userspace) to allow telemetry data to be accessed and manipulated
131
+
`ipfixprobe`exports statistics and other diagnostic information through a telemetry interface based on appFs library, which leverages the fuse3 library (filesystem in userspace) to allow telemetry data to be accessed and manipulated
132
132
through standard filesystem operations.
133
133
134
+
```
135
+
/var/run/ipfixprobe/
136
+
├── output
137
+
│ └── ipxRing
138
+
│ └── stats
139
+
└── pipeline
140
+
└── queues
141
+
├── 0
142
+
│ ├── cache-stats
143
+
│ ├── fragmentation-cache-stats
144
+
│ ├── input-stats
145
+
│ └── parser-stats
146
+
├── 1
147
+
...
148
+
```
149
+
150
+
From telemetry stats you can read:
151
+
152
+
**Output Directory:**
153
+
154
+
In the output directory, you can monitor the capacity and current usage of the ipxRing. This helps determine whether the output plugin can export flows quickly enough or if there are bottlenecks caused by insufficient ring capacity.
155
+
156
+
157
+
**Pipeline Directory:**
158
+
159
+
The pipeline directory provides statistics for all worker queues. Each queue is identified by its ID (e.g., 0, 1) and includes the following files:
160
+
- cache-stats: Provides detailed metrics about flow cache usage and exported flow statistics.
161
+
- fragmentation-cache-stats: Provides metrics related to packet fragmentation.
162
+
- input-stats: Provides metrics on the data received by by the queue.
163
+
- parser-stats: Provides detailed information about the types of packets processed by the parser,
164
+
165
+
134
166
## Input / Output of the flow exporter
135
167
136
168
The availability of the input and output interfaces depends on the ipfixprobe build settings. By default, we provide RPM package with pcap and raw inputs. The default provided outpus are ipfix and text.
0 commit comments