mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 09:35:37 -05:00
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:
12
src/sql/sqlops.d.ts
vendored
12
src/sql/sqlops.d.ts
vendored
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user