This repository was archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathgetQueryLog.js
212 lines (181 loc) · 6.39 KB
/
getQueryLog.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
Download query log to file
Usage:
// full cycle of request download, wait for download, save file to disk
node getQueryLog.js --appid 123 --authkey 123
// full cycle with named file and region
node getQueryLog.js --file 123.csv --appid 123 --authkey 456 --region westus
// begin download process on server with region
node getQueryLog.js --appid 123 --authkey 456 --region westus --step begin
// request status with region
node getQueryLog.js --appid 123 --authkey 456 --region westus --step status
// request download file with region
node getQueryLog.js --appid 123 --authkey 456 --region westus --step final
*/
const co = require('co');
const fs = require('fs');
const https = require('https');
const request = require("requestretry");
// time delay between requests
const delayMS = 5000;
// retry recount
const retry = 20;
const argv = require('yargs').usage(
`Usage: $0
--file [filename]
--appid [LUIS app ID]
--authkey [authoring key]
--region [authoring region]
--step [begin, status, final]
`).demandOption(["appid","authkey"]).argv;
if(argv.appid.length!=36) {
console.log("error: appid is not 36 char in length");
process.exit();
}
if(argv.authkey.length!=32){
console.log("error: authkey is not 32 char in length");
process.exit();
}
const filenameWithPath = argv.file || "./" + "_querylog_" + new Date().toISOString().replace(/:/g,"-") + ".csv";
const LUIS_region = argv.region || "westus";
// authoring key, available in luis.ai under Account Settings
const LUIS_authoringKey = argv.authkey;
// ID of your LUIS app to which you want to add an utterance
const LUIS_appId = argv.appid;
// retry reqeust if error or 429 received
var retryStrategy = function (err, response, body) {
let shouldRetry = err || (response.statusCode === 429);
if (shouldRetry) console.log("retry ");
return shouldRetry;
}
// retry reqeust if error or 429 received OR if file is ready
var retryStrategyIsFileReady = function (err, response, body) {
let shouldRetry = err || (response.statusCode === 429);
if (shouldRetry) console.log("file isn't ready - retry");
return shouldRetry;
}
var httpAgent = new https.Agent()
httpAgent.maxSockets = 1;
var options = {
uri: `https://${LUIS_region}.api.cognitive.microsoft.com/luis/api/v2.0/apps/${LUIS_appId}/querylogsasync`,
headers: {
'Ocp-Apim-Subscription-Key': LUIS_authoringKey,
'Connection': 'keep-alive'
},
maxAttempts: retry,
retryDelay: delayMS,
retryStrategy: retryStrategy,
resolveWithFullResponse: true,
timeout: 60000,
pool: httpAgent
};
var requestStartDownload = async () => {
try {
console.log("beginning");
return await request.post(options);
} catch (error) {
console.log("beginning error " + error);
throw(error);
}
}
var waitUntilFileIsReady = async () =>{
try {
console.log("waitUntilFileIsReady");
options.retryStrategy = retryStrategyIsFileReady;
return await request.get(options);
} catch (error) {
console.log("waitUntilFileIsReady error " + error);
throw(error);
}
}
// 400:There's no previous request to prepare query logs. Please send a POST request first.
var checkStatus = async() =>{
try {
let checkStatusoptions = {
uri: `https://${LUIS_region}.api.cognitive.microsoft.com/luis/api/v2.0/apps/${LUIS_appId}/querylogsasync`,
headers: {
'Ocp-Apim-Subscription-Key': LUIS_authoringKey
},
maxAttempts:1
};
return await request.get(checkStatusoptions);
} catch (error) {
throw(error);
}
}
var requestDownloadFile = async () => {
return new Promise(function(resolve, reject) {
try {
var stream = fs.createWriteStream(filenameWithPath);
stream.on('pipe', () =>{
console.log("writing\n\r");
}).on('error', (error) => {
console.log("write stream error " + error);
}).on('finish', function() {
console.log("file finished: " + filenameWithPath);
return resolve(true);
});
return request(options).pipe(stream);
} catch (error) {
console.log("requestDownloadFile error " + error);
return reject(error);
}
});
}
var all = () => {
console.log("\n\rbegin");
requestStartDownload().then(responseStartDownload=>{
console.log("\n\rstatus");
return waitUntilFileIsReady();
}).then(requestDownloadStatus => {
console.log("\n\rdownload file");
return co(function*() {
var value = (yield requestDownloadFile());
return value;
});
}).then(finalResponse=>{
console.log("\n\rdone");
}).catch(err=>{
console.log("\n\rdone with error: " + err);
});
}
switch (argv.step){
case "begin" :
requestStartDownload().then(status => {
if (status.statusCode > 299){
console.log("Begin Status: error = " + JSON.parse(status.body).error.message);
} else if (status.statusCode > 199 ) {
console.log("Begin Status: success = " + status.body);
} else {
console.log(status);
}
return;
}).catch(err => {
console.log(err);
})
break;
case "status" :
return checkStatus().then(status => {
if (status.statusCode > 299){
console.log("Check Status: error" + JSON.parse(status.body).error.message);
} else if (status.statusCode > 199) {
console.log("Begin Status: success = " + status.body);
} else {
console.log(status);
}
return;
}).catch(err => {
console.log(err);
})
break;
case "final" :
return requestDownloadFile().then(status => {
console.log(status);
return;
}).catch(err => {
console.log(err);
});
break;
default: all();
break;
}