Initial Commit
This commit is contained in:
9
http/search.http
Normal file
9
http/search.http
Normal file
@@ -0,0 +1,9 @@
|
||||
GET http://localhost:8080/api/search?text=intel&cpu=13700
|
||||
|
||||
###
|
||||
|
||||
GET http://localhost:8080/api/search?text=anonymous
|
||||
|
||||
###
|
||||
|
||||
GET http://localhost:8080/?page=1&text=lab&cpu=ryzen
|
||||
45
http/submit-json.http
Normal file
45
http/submit-json.http
Normal file
@@ -0,0 +1,45 @@
|
||||
POST http://localhost:8080/api/submit
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"submitter": "Workstation-Lab-A",
|
||||
"benchmark": {
|
||||
"config": {
|
||||
"durationSecs": 20,
|
||||
"intensity": 10,
|
||||
"coreFilter": 0,
|
||||
"multiCore": true
|
||||
},
|
||||
"cpuInfo": {
|
||||
"brandString": "AMD Ryzen 7 5800X 8-Core Processor",
|
||||
"vendorID": "AuthenticAMD",
|
||||
"physicalCores": 8,
|
||||
"logicalCores": 16,
|
||||
"baseClockMHz": 3801,
|
||||
"boostClockMHz": 0,
|
||||
"l1DataKB": 32,
|
||||
"l2KB": 512,
|
||||
"l3MB": 32,
|
||||
"supportedFeatures": ["SSE4.2", "AVX", "AVX2", "FMA3"]
|
||||
},
|
||||
"startedAt": "2026-04-15T18:18:08.0218738+03:00",
|
||||
"duration": 20008134300,
|
||||
"totalOps": 61379641344,
|
||||
"mOpsPerSec": 3067.734373614236,
|
||||
"score": 306773,
|
||||
"coreResults": [
|
||||
{
|
||||
"logicalID": 0,
|
||||
"coreType": "Standard",
|
||||
"mOpsPerSec": 345.52091146249455,
|
||||
"totalOps": 6913228800
|
||||
},
|
||||
{
|
||||
"logicalID": 1,
|
||||
"coreType": "Standard",
|
||||
"mOpsPerSec": 491.21699547968353,
|
||||
"totalOps": 9828335616
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
50
http/submit-multipart.http
Normal file
50
http/submit-multipart.http
Normal file
@@ -0,0 +1,50 @@
|
||||
POST http://localhost:8080/api/submit
|
||||
Content-Type: multipart/form-data; boundary=BenchBoundary
|
||||
|
||||
--BenchBoundary
|
||||
Content-Disposition: form-data; name="submitter"
|
||||
|
||||
Intel-Test-Rig
|
||||
--BenchBoundary
|
||||
Content-Disposition: form-data; name="benchmark"; filename="cpu-bench-result.json"
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"config": {
|
||||
"durationSecs": 10,
|
||||
"intensity": 10,
|
||||
"coreFilter": 0,
|
||||
"multiCore": true
|
||||
},
|
||||
"cpuInfo": {
|
||||
"brandString": "Intel(R) Core(TM) i9-10850K CPU @ 3.60GHz",
|
||||
"vendorID": "GenuineIntel",
|
||||
"physicalCores": 10,
|
||||
"logicalCores": 20,
|
||||
"baseClockMHz": 3600,
|
||||
"boostClockMHz": 0,
|
||||
"l1DataKB": 32,
|
||||
"l2KB": 256,
|
||||
"l3MB": 20
|
||||
},
|
||||
"startedAt": "2026-04-15T17:59:51.4840579+03:00",
|
||||
"duration": 10056935100,
|
||||
"totalOps": 49828626432,
|
||||
"mOpsPerSec": 4954.6532752309395,
|
||||
"score": 495465,
|
||||
"coreResults": [
|
||||
{
|
||||
"logicalID": 0,
|
||||
"coreType": "Standard",
|
||||
"mOpsPerSec": 234.3495683888822,
|
||||
"totalOps": 2356838400
|
||||
},
|
||||
{
|
||||
"logicalID": 1,
|
||||
"coreType": "Standard",
|
||||
"mOpsPerSec": 250.5658742890764,
|
||||
"totalOps": 2519924736
|
||||
}
|
||||
]
|
||||
}
|
||||
--BenchBoundary--
|
||||
Reference in New Issue
Block a user