gstrace

Function Description

gstrace, provided by openGauss, is used to trace the kernel code execution path, record kernel data structure, and analyze code performance. The number of trace points and data are fixed in the version and cannot be dynamically added or deleted.

WARNING:

  1. The specified memory variables dumped from the kernel are used only for diagnosis and analysis. Registers or memory addresses will not be randomly and directly specified. The read memory addresses are hard-coded in the development, and no register or memory is read or modified randomly.
  2. Trace points may involve sensitive data. Before collecting information to be traced, you need to obtain authorization and permission from the customer.
  3. openGauss does not point on sensitive information or trace user-related data.
  4. The trace is used only for diagnosis. Enabling the trace function affects the performance, and the impact depends on the load and the modules to be traced.
  5. The permission of the trace tool is 0700, which indicates that only database users can read, write, and execute the trace tool.

NOTE: If the process is stopped abnormally, the gstrace_trace_cfg_* file will exist in the /dev/shm directory. You can manually delete the file.

Syntax

gstrace [start|stop|config|dump|detailcodepath|analyze] [-p <port>][-s <BUFFER_SIZE>] [-f <DUMP_FILE>] [-o <OUTPUT_FILE>] [-t <STEP_SIZE>]

Parameter Description

Table 1 gs_trace parameters

Parameter

Description

start

Starts tracing.

stop

Stops tracing and releases the shared memory trace buffer. Note: This will cause the traced information in the trace buffer to be lost.

config

Displays configurations of the tracing tool.

dump

Writes the traced information frm the shared memory to a specified file. If the tracing is not started, an error message will be displayed.

detail

Parses the dumped binary file to a text file, so that traced threads and time information are displayed.

codepath

Extracts the function calling information from the dumped file and displays the information in the call stack mode.

analyze

Collects statistics on the number of execution times, total duration, average duration, maximum duration, and minimum duration of each function.

-p PID

Specifies the process ID of the instance for which the trace function is enabled.

-f DUMP_FILE

Specifies the trace file to be dumped.

-o OUTPUT_FILE

Specifies the file to be written.

-t STEP_SIZE

Specifies the time span for segment analysis, in seconds. This parameter is optional. A separate {OUTPUT_FILE}.step file will be generated.

-s BUFFER_SIZE

Specifies the size of the shared memory used for the trace function. The default value is 1 GB. If the specified value of BUFFER_SIZE is less than the minimum value 2048, the system automatically adjusts the value to the minimum value. If the value specified by BUFFER_SIZE is not 2^N (2 to the power of N), 2^N is aligned downwards. For example, if BUFFER_SIZE is set to 3072, the system changes the value to 2048 because 2^11 < 3072 < 2^12.

Example

  1. Start the tracing.

    gstrace start -p 207787
    
  2. Stop the tracing.

    gstrace stop -p 207787
    
  3. Check the configurations for tracing.

    gstrace config -p 207787
    
  4. dump trace

    gstrace dump -p 207787 -o /data/207787.dump
    
  5. Parses dumped details.

    gstrace detail -f /data/207787.dump -o /data/207787.detail
    
  6. Parse dumped codepath.

    gstrace codepath -f /data/207787.dump -o /data/207787.codepath
    
  7. Analyze the global performance.

    gstrace analyze -f /data/207787.dump -o /data/207787.perf
    
  8. Analyze the segment performance.

    gstrace analyze -f /data/207787.dump -o /data/207787.perf -t 1
    
Feedback
编组 3备份
    openGauss 2024-05-05 00:44:49
    cancel