You can verify the authenticity of the downloaded APM OTEL Collector with SHA256 checksum validation. This ensures that the downloaded collector is credible and is not tampered with by any malicious code or software.
To verify the authenticity of the APM OTel Collector, follow the steps given below:
For Linux systems, execute the following command:
sha256sum <APM_OTEL_Collector_File_Name>
Open Command Prompt and execute the following command:
certutil -hashfile <APM_OTEL_Collector_File_Name> SHA256
Open Windows Powershell and execute the following command:
Get-FileHash <APM_OTEL_Collector_File_Name> -Algorithm SHA256
Sample Output:

Note: If the checksum values differ, do not unzip or open the file.
The signature will be shown here as seen in the image below:

It allows us to track crucial metrics such as response times, resource utilization, error rates, and transaction performance. The real-time monitoring alerts promptly notify us of any issues or anomalies, enabling us to take immediate action.
Reviewer Role: Research and Development