Skip to content

Commit

Permalink
Expose Windows metrics in perfdash
Browse files Browse the repository at this point in the history
  • Loading branch information
oprinmarius committed Jun 21, 2022
1 parent 07a84bc commit b34f90c
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions perfdash/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -543,13 +543,67 @@ var (
},
},
}
windowsDescriptions = TestDescriptions{
"E2E": {
"CPUUsage": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsCPUUsagePrometheus",
Parser: parsePerfData,
},
},
"MemoryUsage": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsMemoryUsagePrometheus",
Parser: parsePerfData,
},
},
"ContainersCount": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsContainers",
Parser: parsePerfData,
},
},
"Network": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsNetwork",
Parser: parsePerfData,
},
},
"NodeStorage": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsNodeStorage",
Parser: parsePerfData,
},
},
"OpenFiles": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsOpenFiles",
Parser: parsePerfData,
},
},
"Processes": []TestDescription{
{
Name: "node-throughput",
OutputFilePrefix: "WindowsProcesses",
Parser: parsePerfData,
},
},
},
}

jobTypeToDescriptions = map[string]TestDescriptions{
"performance": performanceDescriptions,
"benchmark": benchmarkDescriptions,
"dnsBenchmark": dnsBenchmarkDescriptions,
"storage": storageDescriptions,
"throughput": throughputDescriptions,
"windows": windowsDescriptions,
}
)

Expand Down

0 comments on commit b34f90c

Please sign in to comment.