Agent Improvements/Fixes (#1284)

* fixed UI bugs and increased jobs history page perf

* cached full error message

* load histories for jobs with errors first

* cr comments
This commit is contained in:
Aditya Bist
2018-05-01 17:42:11 -07:00
committed by GitHub
parent 46fb68214f
commit 6f10f7a21a
4 changed files with 66 additions and 40 deletions

12
src/sql/sqlops.d.ts vendored
View File

@@ -1061,7 +1061,7 @@ declare module 'sqlops' {
}
export interface AgentJobStep {
stepId: number;
stepId: string;
stepName: string;
message: string;
runDate: string;
@@ -1070,20 +1070,20 @@ declare module 'sqlops' {
export interface AgentJobHistoryInfo {
instanceId: number;
sqlMessageId: number;
sqlMessageId: string;
message: string;
stepId: number;
stepId: string;
stepName: string;
sqlSeverity: number;
sqlSeverity: string;
jobId: string;
jobName: string;
runStatus: number;
runDate: string;
runDuration: number;
runDuration: string;
operatorEmailed: string;
operatorNetsent: string;
operatorPaged: string;
retriesAttempted: number;
retriesAttempted: string;
server: string;
steps: AgentJobStep[];
}