Interface: ODataTraceReport
Defined in: src/reporters/odata-trace-reporter.ts:126
The complete OData trace report written to odata-trace.json.
Example
const report: ODataTraceReport = {
timestamp: new Date().toISOString(),
totalRequests: 42,
totalDuration: 6300,
entityStats: [{ entitySet: 'A_Product', totalCalls: 42, avgDuration: 150, maxDuration: 450, errorCount: 0, byMethod: { GET: 42 } }],
traces: [],
};
Properties
entityStats
readonlyentityStats: readonlyODataEntityStats[]
Defined in: src/reporters/odata-trace-reporter.ts:130
timestamp
readonlytimestamp:string
Defined in: src/reporters/odata-trace-reporter.ts:127
totalDuration
readonlytotalDuration:number
Defined in: src/reporters/odata-trace-reporter.ts:129
totalRequests
readonlytotalRequests:number
Defined in: src/reporters/odata-trace-reporter.ts:128
traces
readonlytraces: readonlyODataTraceEntry[]
Defined in: src/reporters/odata-trace-reporter.ts:131