1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
package benchmarks
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"strings"
"testing"
"time"
)
// ProfileConfig represents profiling configuration
type ProfileConfig struct {
// Enable CPU profiling
EnableCPU bool
// Enable memory profiling
EnableMem bool
// Profile directory
ProfileDir string
// Number of iterations
Iterations int
}
// ProfileResult represents the result of a profiling run
type ProfileResult struct {
Tool string
Operation string
Duration time.Duration
CPUProfile string
MemProfile string
AllocProfile string
ExitCode int
Error error
}
// DefaultProfileConfig returns default profiling configuration
func DefaultProfileConfig() ProfileConfig {
return ProfileConfig{
EnableCPU: true,
EnableMem: true,
ProfileDir: "profiles",
Iterations: 1,
}
}
// RunProfiledCommand runs a command with profiling enabled
func RunProfiledCommand(b *testing.B, config ProfileConfig, tool string, args ...string) (*ProfileResult, error) {
// Ensure profile directory exists
if err := os.MkdirAll(config.ProfileDir, 0755); err != nil {
return nil, fmt.Errorf("creating profile dir: %w", err)
}
// Build command path
cmdPath := filepath.Join("..", tool)
// Add profiling flags
profileArgs := []string{}
if config.EnableCPU || config.EnableMem {
profileArgs = append(profileArgs, "-profile")
profileArgs = append(profileArgs, "-profiledir", config.ProfileDir)
}
// Combine all arguments
allArgs := append(profileArgs, args...)
// Create command
cmd := exec.Command(cmdPath, allArgs...)
// Set up output capture
outputFile := filepath.Join(config.ProfileDir, fmt.Sprintf("%s_output_%s.log",
tool, time.Now().Format("20060102_150405")))
output, err := os.Create(outputFile)
if err != nil {
return nil, fmt.Errorf("creating output file: %w", err)
}
defer output.Close()
cmd.Stdout = output
cmd.Stderr = output
// Record start time
start := time.Now()
// Run command
err = cmd.Run()
// Record duration
duration := time.Since(start)
result := &ProfileResult{
Tool: tool,
Operation: strings.Join(args, "_"),
Duration: duration,
ExitCode: cmd.ProcessState.ExitCode(),
Error: err,
}
// Find generated profile files
timestamp := time.Now().Format("20060102_1504")
profiles, _ := filepath.Glob(filepath.Join(config.ProfileDir,
fmt.Sprintf("%s_*_%s*.prof", tool, timestamp)))
for _, profile := range profiles {
if strings.Contains(profile, "_cpu_") {
result.CPUProfile = profile
} else if strings.Contains(profile, "_mem_") {
result.MemProfile = profile
} else if strings.Contains(profile, "_alloc_") {
result.AllocProfile = profile
}
}
return result, nil
}
// ProfileBenchmark runs a benchmark with profiling enabled
func ProfileBenchmark(b *testing.B, name string, tool string, args ...string) {
config := DefaultProfileConfig()
b.Run(name+"_profiled", func(b *testing.B) {
// Generate test data if needed
testFile := ""
if tool == "dcat" || tool == "dgrep" {
testConfig := TestDataConfig{
Size: Medium,
Format: SimpleLogFormat,
Compression: NoCompression,
LineVariation: 50,
}
testFile = GenerateTestFile(b, testConfig)
defer os.Remove(testFile)
// Replace placeholder in args
for i, arg := range args {
if arg == "__TESTFILE__" {
args[i] = testFile
}
}
}
// Run profiled command
result, err := RunProfiledCommand(b, config, tool, args...)
if err != nil && result.ExitCode != 0 {
b.Fatalf("Command failed: %v", err)
}
// Report results
b.Logf("Profile run completed in %v", result.Duration)
if result.CPUProfile != "" {
b.Logf("CPU profile: %s", result.CPUProfile)
}
if result.MemProfile != "" {
b.Logf("Memory profile: %s", result.MemProfile)
}
if result.AllocProfile != "" {
b.Logf("Allocation profile: %s", result.AllocProfile)
}
// Analyze profiles using dtail-tools
dtailToolsPath := filepath.Join("..", "dtail-tools")
if _, err := os.Stat(dtailToolsPath); err == nil {
if result.CPUProfile != "" {
analyzeProfileWithTools(b, dtailToolsPath, result.CPUProfile, "CPU")
}
if result.MemProfile != "" {
analyzeProfileWithTools(b, dtailToolsPath, result.MemProfile, "Memory")
}
}
})
}
// analyzeProfileWithTools runs dtail-tools profile analyze on a profile file
func analyzeProfileWithTools(b *testing.B, dtailToolsPath, profilePath, profileType string) {
b.Logf("\n%s Profile Analysis:", profileType)
cmd := exec.Command(dtailToolsPath, "profile", "-mode", "analyze", profilePath)
output, err := cmd.CombinedOutput()
if err != nil {
b.Logf("Failed to analyze profile: %v", err)
return
}
// Print analysis output
lines := strings.Split(string(output), "\n")
// Print first 10 lines of analysis
for i, line := range lines {
if i < 10 && line != "" {
b.Log(line)
}
}
}
// BenchmarkDCatWithProfiling runs dcat with profiling enabled.
func BenchmarkDCatWithProfiling(b *testing.B) {
ProfileBenchmark(b, "Simple", "dcat", "--plain", "--cfg", "none", "__TESTFILE__")
}
// BenchmarkDGrepWithProfiling runs dgrep with profiling enabled.
func BenchmarkDGrepWithProfiling(b *testing.B) {
ProfileBenchmark(b, "Regex", "dgrep", "--plain", "--cfg", "none",
"-regex", "error|warning", "__TESTFILE__")
}
// BenchmarkDMapWithProfiling runs dmap with profiling enabled.
func BenchmarkDMapWithProfiling(b *testing.B) {
// First generate a CSV file for dmap
csvFile := filepath.Join(os.TempDir(), "dmap_test.csv")
generateCSVTestData(b, csvFile, 10000)
defer os.Remove(csvFile)
ProfileBenchmark(b, "Count", "dmap", "--plain", "--cfg", "none",
"-query", fmt.Sprintf("select count(*) from %s", csvFile))
}
// generateCSVTestData generates CSV test data for dmap
func generateCSVTestData(b *testing.B, filename string, rows int) {
f, err := os.Create(filename)
if err != nil {
b.Fatalf("Failed to create CSV file: %v", err)
}
defer f.Close()
// Write header
fmt.Fprintln(f, "timestamp,user,action,duration")
// Write data
for i := 0; i < rows; i++ {
timestamp := time.Now().Add(time.Duration(i) * time.Second).Format("2006-01-02 15:04:05")
user := fmt.Sprintf("user%d", i%100)
action := []string{"login", "query", "logout"}[i%3]
duration := 100 + i%500
fmt.Fprintf(f, "%s,%s,%s,%d\n", timestamp, user, action, duration)
}
}
|