Customer Cases
Pricing

How to Enhance Your Performance Testing with PerfDog Custom Data Extension

Discover how to integrate PerfDog Custom Data Extension into your project for more accurate and convenient performance testing and analysis.
 

Introduction

To address performance issues more effectively, PerfDog now supports real-time synchronization of custom performance-related data. This feature enables data display, storage, and comparison, allowing you to add labels and comments directly to your code. With PerfDog Custom Data Extension, you can synchronize detailed data, such as vertex or texture, memory usage, DrawCall, Triangle, network conditions, and more. Additionally, you can store logical data, such as scene, coordinates, orientation, number of monsters or characters, and particle effects, to facilitate scene reproduction and analysis.

 

Follow the steps below to integrate PerfDog Custom Data Extension into your project.

Integrating PerfDogExtension

1. Add PerfDog source files to your project

Download the perfdog_extension.h and perfdog_extension.cpp source files provided by PerfDog from Github and add them to your project.

2. Enable PerfDog custom data expansion

Call the int EnableSendToPerfDog() interface after your game starts to enable PerfDog custom data expansion. This interface creates a socket and listens on port 53000.

3. Send custom data

PerfDog Custom Data Extension supports sending floating-point numbers, integers, and strings, with one key corresponding to one to three values. Use the following functions to send custom data:

a. Floating-point numbers

void PostValueF(const std::string& category, const std::string& key, float a);
void PostValueF(const std::string& category, const std::string& key, float a, float b);
void PostValueF(const std::string& category, const std::string& key, float a, float b, float c);

b. Integers

void PostValueI(const std::string& category, const std::string& key, int a);
void PostValueI(const std::string& category, const std::string& key, int a, int b);
void PostValueI(const std::string& category, const std::string& key, int a, int b, int c);

 

c. Strings

void PostValueS(const std::string& category, const std::string& key, const std::string& value);

 

d. Set scene label

void setLabel(const std::string& name);

 

e. Add tag

void addNote(const std::string& name);

 

After receiving the data, the client will organize all data with the same category into a table, with the title as the category and the line name as the key. If there are multiple values, the line names will be key_a, key_b, key_c.

 

4. Disable PerfDogExtension

To disable the PerfDogExtension, comment the code in the frame in perfdog_extension.h.

 

Known Issues

● On macOS, iOS devices cannot obtain custom data in Wi-Fi mode.

Performance Testing

Test environment: Pixel 3, small core locked at 1766MHz, test program bound to small core.

Test results: When PostValueI is called 20,000 times per second, the CPU usage is 1% to 2%.

Troubleshooting

● Android: Use adb logcat to check the phone log and search for "PerfDogExtension". For example, the error log for an occupied port:

 

dres2022-07-27 17:15:29.495 8680-8682/? E/PerfDogExtension: bind:Ads already in use

 

● iOS: Use the console on macOS to view phone logs and search for "PerfDogExtension".

In Conclusion

Integrating PerfDog Custom Data Extension into your project can significantly improve your performance testing and analysis capabilities. By following the steps outlined in this guide, you can easily enable real-time synchronization of custom performance-related data, allowing for more accurate and convenient testing. With support for various data types, scene labels, and tags, PerfDog Custom Data Extension is a powerful tool for developers seeking to optimize their applications and games. Don't let performance issues hinder your project's success – harness the power of PerfDog Custom Data Extension today.

PD网络测试推广
Latest Posts
1How to Enhance Your Performance Testing with PerfDog Custom Data Extension Discover how to integrate PerfDog Custom Data Extension into your project for more accurate and convenient performance testing and analysis.
2Mobile Game Performance Testing in 2026: Complete Guide with PerfDog Insights from Tencent’s Founding Developer Master mobile game optimization with insights from PerfDog’s founding developer. Learn to analyze 200+ metrics including Jank, Smooth Index, and FPower. The definitive 2026 guide for Unity & Unreal Engine developers to achieve 120FPS and reduce battery drain.
3Hybrid Remote Device Management: UDT Automated Testing Implementation at Tencent Learn how Tencent’s UDT platform scales hybrid remote device management. This case study details a 73% increase in device utilization and WebRTC-based automated testing workflows for global teams.
4How AI Is Reshaping Software Testing Processes and Professional Ecosystems in 2026 Discover how AI is reshaping software testing processes and careers in 2026. Learn key trends, emerging roles, and essential skills to thrive in the AI-driven QA landscape.
5WeTest at GDC 2026: AI Automated Testing Ushers in a New Era of Game Quality WeTest at GDC 2026 showcases a revolutionary AI Automated Testing Solution that transforms game quality assurance. Learn how WeTest's AI Test Agent Platform enables scalable quality production through computing power, delivering controllable, reproducible, and intelligent testing capabilities.