DCA Client¶
DCA(Datakit Control App) is mainly used to manage DataKit, such as DataKit list view, configuration file management, Pipeline management and help document view. At present, it supports two usage modes, namely desktop and web page.
DCA network topology model explained:
flowchart TB;
dca_server(DCA Server);
dca_web(DCA Web);
dk_upgrader1(Upgrader);
dk_upgrader2(Upgrader);
dk_upgrader3(Upgrader);
dk1(Datakit);
dk2(Datakit);
dk3(Datakit);
k8s_dk1(Datakit);
k8s_dk2(Datakit);
k8s_dk3(Datakit);
guance(Guance);
subgraph HOST DataKit
direction TB;
subgraph host_sub1 ["host1"]
dk_upgrader1 --> dk1;
end
subgraph host_sub2 ["host2"]
dk_upgrader2 --> dk2;
end
subgraph host_sub3 ["host3"]
dk_upgrader3 --> dk3;
end
end
subgraph k8s DataKit
k8s_dk1
k8s_dk2
k8s_dk3
end
dk1 -.-> |upload data|guance;
dk2 -.-> |upload data|guance;
dk3 -.-> |upload data|guance;
k8s_dk1 -.-> |upload data|guance;
k8s_dk2 -.-> |upload data|guance;
k8s_dk3 -.-> |upload data|guance;
dca_server <--> |websocket| dk_upgrader1 & dk_upgrader2 & dk_upgrader3 & k8s_dk1 & k8s_dk2 & k8s_dk3
dca_web -- HTTP --- dca_server;
dca_server -.-> |login/auth| guance;
Start DCA Service¶
Add the following environment variables before installing the command:
DK_DCA_ENABLE
: Whether to turn on, turn on set toon
DK_DCA_WEBSOCKET_SERVER
: DCA websocket server address.( Version-1.64.0)
Example:
DK_DCA_ENABLE=on DK_DCA_WEBSOCKET_SERVER="ws://127.0.0.1:8000/ws" DK_DATAWAY=https://openway.guance.com?token=<TOKEN> bash -c "$(curl -L https://static.guance.com/datakit/install.sh)"
After successful installation, the DataKit will automatically connect to the DCA service.。
Can be turned on by setting DCA related environment variable.
Modify configuration file datakit.conf
:
Once configured, restart DataKit.
See here
DCA Web Service¶
Attention
Different versions of DataKit interfaces may differ, and it is recommended to upgrade DataKit to the latest version in order to better use DCA. In addition, the Web version of DCA and desktop version still have some missing functions, which will be added slowly later, and gradually abandon the current desktop version.
DCA Web is the Web version of DCA client, which provides the interface proxy of DataKit by deploying a back-end service and provides a front-end Web page to access DataKit.
Docker installation can be found in the document installing Docker.
- Download image
Before running the container, first download the DCA image through docker pull
.
- Run the container
The DCA container is created and started with the docker run
command, and the default exposed access port of the container is 80.
- Testing
After the container runs successfully, it can be accessed through the browser: http://localhost:8000
Download dca.yaml. Edit the configuration parameters in the file and apply dca.yaml
to your Kubernetes cluster.
Environment Variable Configuration¶
By default, DCA will adopt the default configuration of the system. If you need to customize the configuration, you can modify it by injecting environment variables. The following environment variables are currently supported:
Environment Variable Name | Type | Default Value | Description |
---|---|---|---|
DCA_CONSOLE_API_URL |
string | https://console-api.guance.com |
Guance Cloud console API address |
DCA_CONSOLE_WEB_URL |
string | https://console.guance.com |
Guance Cloud page address |
DCA_STATIC_BASE_URL |
string | https://static.guance.com |
static resource address |
DCA_CONSOLE_PROXY |
string | None | Guance Cloud API proxy, but does not proxy the DataKit API |
DCA_LOG_LEVEL |
string | Log level, the value is debug/info/warn/error. | |
DCA_LOG_PATH |
string | The log path. If you need to write the log to stdout , you can set it to stdout |
|
DCA_TLS_ENABLE |
string | enable TLS when the value is not empty | |
DCA_TLS_CERT_FILE |
string | the cert file path, such as /etc/ssl/certs/server.crt |
|
DCA_TLS_KEY_FILE |
string | the key file path, such as /etc/ssl/certs/server.key |
Example:
docker run -d --name dca -p 8000:80 -e DCA_LOG_PATH=stdout -e DCA_LOG_LEVEL=info pubrepo.guance.com/tools/dca
Log in to DCA¶
After the DCA is enabled and installed, you can access it by entering the address localhost:8000
in your browser. When you visit it for the first time, the page will redirect you to a login transition page. After clicking the "Go Now" button at the bottom of the page, you will be guided to the GuanceCloud platform. Then, follow the instructions on the page to configure the DCA address. Once the configuration is completed, you will be able to directly access the DCA platform through the Guance Cloud platform without logging in.
View Datakit list¶
After logging in to DCA, you can select the workspace in the upper left corner to manage its corresponding DataKit and collector, which supports quick filtering of host names to be viewed and managed by searching keywords.
Hosts remotely managed through DCA are divided into three states:
- running: indicating that the data report is normal, you can view the operation of DataKit and configure the collector through DCA;
- offline: It means that the DataKit is off line.
- stopped: It means that the DataKit is stopped.
- upgrading: It means that the DataKit is upgrading.
- restarting: It means that the DataKit is restarting.
By default, you can only view information of the DataKit in the current workspace. If you need to manage DataKit, such as upgrading it, creating, deleting, or modifying DataKit collector config file, pipelines, you need to grant current user DCA configuration management permission. Please refer to role management for specific settings.
View How DataKit is Running¶
After logging in to DCA, select a workspace to view the hostname and IP information of all DataKits installed in that workspace. Click on the DataKit host to connect to the DataKit remotely, and view the running status of the DataKit on the host, including version, running time, publishing data and collector running status.
View Collector Configuration¶
After connecting to the DataKit remotely, click "Collector Configuration" to view the list of collectors and Sample that have been configured (all Sample files that are currently supported by DataKit).
- Configured list: you can view all conf files under it.
- Sample list: You can view all the sample files under it.
- Help: You can view the corresponding collector help document
Note: DCA does not support configuration of collector at present, so it is necessary to log in to the host remotely for configuration operation.
View Log Pipeline¶
After connecting to the DataKit remotely, click「Pipelines」to view the Pipeline file that comes with the DataKit by default. Refer to the document text data processing for Pipeline.
View the Blacklist¶
After connecting to DataKit remotely, click "Blacklist" to view the blacklist configured in the Guance Cloud. As shown in the following figure, source = default and (status in [unknown])
is the configured blacklist condition.
Note: The blacklist files created through Guance Cloud are stored in the path: /usr/local/datakit/data/.pull
.
View DataKit log¶
After connecting to DataKit remotely, click "Log" to view the logs of DataKit and also the logs can be exported.
Changelog¶
0.1.0(2024/11/27)¶
- Refactored the DCA underlying framework to use WebSocket protocol for communication, making it easier to manage DataKit in different network environments.
- Added the functionality to manage the main configuration of DataKit.
- Added support for TLS configuration.
- Changed the "Reload" feature of DataKit to "Restart".