View Monitor for Datakit¶
Datakit provides relatively complete output of basic observable information. By looking at the monitor output of Datakit, we can clearly know the current operation of Datakit.
View Monitor¶
Execute the following command to get the running status of the native Datakit.
Tip
You can see more monitor options through the datakit help monitor
.
The Datakit Basic Monitor page information is shown in the following figure:
The elements in this diagram can be manipulated by mouse or keyboard. Blocks selected by the mouse are highlighted in bilateral boxes (as shown in the Basic Info
block in the upper left corner of the above figure), and can also be browsed through the mouse wheel or the up and down arrow keys of the keyboard (or J/K of vim).
The information of each UI block in the above figure is:
-
Basic Info
is used to display basic information about Datakit, such as the version number, hostname, and runtime duration. From here, we can get a basic understanding of the current status of Datakit. Here are a few fields highlighted for individual explanation:Uptime
: The startup time of Datakit.Version
: The current version number of Datakit.Build
: The release date of Datakit.Branch
: The current code branch of Datakit, which is usuallymaster
.Build Tag
: The compilation options for Datakit; for the Lite version, this islite
.OS/Arch
: The current hardware and software platform of Datakit.Hostname
: The current hostname.Resource Limit
: Displays the current resource limit configurations for Datakit, wheremem
refers to the maximum memory limit, andcpu
refers to the usage limit range (if displayed as-
, it means the current cgroup is not set).Elected
: Shows the election status, see here for details.From
: The current Datakit address being monitored, such ashttp://localhost:9529/metrics
.Proxy
: The current proxy server being used.
-
Runtime Info
is used to display the basic runtime consumption of Datakit (mainly memory, CPU and Golang runtime), including:Goroutines
: The number of Goroutine currently running.Total/Heap
: The memory occupied by the Golang virtual memory(sys-alloc
) and the memory currently in use(heap-alloc
) 1.RSS/VMS
: The RSS memory usage and VMS.GC Paused
: The time and number of times the GC (garbage collection) has consumed since Datakit started.OpenFiles
: The number of files currently open (on some platforms, it may display as-1
, indicating that the feature is not supported).
-
Enabled Inputs
displays a list of open collectors:Input
: Refer to the collector(input) name, which is fixed and cannot be modifiedCount
: Refer to the number of the collector turned onCrashed
: Refer to the number of crashes of the collector
-
Inputs Info
: It is used to show the running status of each collector. There is more information here:Input
: Refer to the collector name. In some cases, this name is collector-specific (such as Log Collector/Prom Collector)Cat
: Refer to the type of data collected by the collector (M (metrics)/L (logs)/O (objects...)Feeds
: Total updates(collects) since Datakit startedP90Lat
: Feed latency(blocked on queue) time(p90). The longer the duration, the slower the upload workers Version-1.36.0P90Pts
: Points(P90) collected of the collector Version-1.36.0Last Feed
: Time of last update(collect), relative to current timeAvg Cost
: Average cost of each collectErrors
: Collect error count(if no error, empty here)
-
The prompt text at the bottom tells you how to exit the current Monitor program and displays the current Monitor refresh rate.
If the verbose option (-V
) is specified when Monitor is run, additional information is output, as shown in the following figure:
Goroutine Groups
shows the existing Goroutine Groups in the Datakit (the number of Goroutines in the group < = the number ofGoroutines
in the panel above).HTTP APIs
: HTTP API request infoFilter
: Pull of blacklist filtering rulesFilter Rules
: Filtering of each type of blacklistPipeline Info
: Pipeline running info-
WAL Info
WAL Queue Usage Version-1.62.0The WAL queue consists of two parts: a small in-memory queue and a default 2GB disk queue. Here,
mem
refers to the number of points processed by the in-memory queue,disk
refers to the number of points processed by the disk queue, anddrop
refers to the number of points discarded by the disk queue (for example, when the disk queue is full). Total refers to the total number of points. -
Point Upload Info
Displays the operation of the data upload channel 2. DataWay APIs
Displays the invocation situation of Dataway APIs.
FAQ¶
How to show only the operation of the specified module?¶
You can specify a list of module names (multiple modules are separated by English commas): Version-1.5.7
datakit monitor -M inputs,filter
# or
datakit monitor --module inputs,filter
# use thd module abbreviation
datakit monitor -M in,f
How to show only the operation of the specified collector?¶
You can specify a list of collector names (multiple collectors are separated by English commas):
How to display too long text?¶
When some collectors report errors, their error information will be very long and incomplete in the table.
Complete information can be displayed by setting the column width of the display:
How to change the Monitor refresh rate?¶
It can be changed by setting the refresh frequency:
Attention
Note that the units here must be the following: s (seconds)/m (minutes)/h (hours). If the time range is less than 1s, refresh according to 1s.
How to Monitor other DataKits?¶
Sometimes, the Datakit installed does not use the default 9529 port, and this time, an error like the following will occur:
We can view its monitor data by specifying the Datakit address:
datakit monitor --to localhost:19528
# We can also view the monitor of another remote Datakit
datakit monitor --to <remote-ip>:9528
-
Note that the memory usage displayed here is specific to the Golang virtual machine and does not include the memory used by external collectors that may be running. ↩
-
Version-1.62.0 There have been updates here, and previous versions may show slightly different information. ↩