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
|`txt`|`t`|`Path to file`|**Disabled**| If no file provided, processes all DNSSD TXT records. If a file is provided, only processes TXT records listed in the file. Whitelist format is `service.domain,txt_key1,txt_key2,...`|
|`NTP_LEAP`|`uint8_t`| Leap from Network Time header. |
16
+
|`NTP_MODE`|`uint8_t`| Mode from Network Time header. |
17
+
|`NTP_VERSION`|`uint8_t`| Version from Network Time header. |
18
+
|`NTP_STRATUM`|`uint8_t`| Stratum used to identify the distance from the reference clock. |
19
+
|`NTP_POLL`|`int8_t`| The poll interval in seconds (as a power of 2) indicating how often the client queries the server. |
20
+
|`NTP_PRECISION`|`int8_t`| The precision of the local clock, i.e., the smallest distinguishable time interval, usually expressed as a negative power of 2 in seconds. |
21
+
|`NTP_DELAY`|`uint32_t`| The round-trip network delay between the client and the NTP server, measured in milliseconds or seconds. |
22
+
|`NTP_DISPERSION`|`uint32_t`| The estimated error or uncertainty of the server's time relative to the true time, increases over time since last update. |
23
+
|`NTP_REF_ID`|`string`| Identifier of the reference clock or server the NTP server is synchronized to as a string. |
24
+
|`NTP_REF`|`string`| Timestamp of the last time the server clock was set or corrected as a string. |
25
+
|`NTP_ORIG`|`string`| Timestamp sent by the client in the request packet as a string. |
26
+
|`NTP_RECV`|`string`| Timestamp when the request was received by the server as a string. |
27
+
|`NTP_SENT`|`string`| Timestamp when the response was sent by the server as a string. |
31
28
32
29
## Usage
33
30
@@ -37,13 +34,11 @@ Add the plugin to your ipfixprobe YAML configuration:
37
34
38
35
```yaml
39
36
process_plugins:
40
-
- nettisa
37
+
- ntp
41
38
```
42
39
43
40
### CLI Usage
44
41
45
42
You can also enable the plugin directly from the command line:
0 commit comments