-
Notifications
You must be signed in to change notification settings - Fork 39
/
example.js
49 lines (41 loc) · 2.11 KB
/
example.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
const KustoClient = require("azure-kusto-data").Client;
const KustoConnectionStringBuilder = require("azure-kusto-data").KustoConnectionStringBuilder;
const ClientRequestProperties = require("azure-kusto-data").ClientRequestProperties;
const { v4: uuidv4 } = require("uuid");
const clusterConectionString = "https://<cluster>.<region>.kusto.windows.net";
const database = "<databaseName>";
const table = "<tableName>";
const kcs = KustoConnectionStringBuilder.withAadDeviceAuthentication(clusterConectionString);
const kustoClient = new KustoClient(kcs); // After using the client, you should use `close()` to free up resources
start();
async function start() {
try {
const results = await kustoClient.execute(database, `['${table}'] | limit 1`);
console.log(JSON.stringify(results));
console.log(results.primaryResults[0].toString());
} catch (error) {
console.log(error);
}
// providing ClientRequestProperties
// for a complete list of ClientRequestProperties
// go to https://docs.microsoft.com/en-us/azure/kusto/api/netfx/request-properties#list-of-clientrequestproperties
let clientRequestProps = new ClientRequestProperties();
const oneMinute = 1000 * 60;
clientRequestProps.setTimeout(oneMinute);
// having client code provide its own clientRequestId is
// highly recommended. It not only allows the caller to
// cancel the query, but also makes it possible for the Kusto
// team to investigate query failures end-to-end:
clientRequestProps.clientRequestId = `MyApp.MyActivity;${uuidv4()}`;
try {
// `execute()` infers the type of command from the query, although you can also specify the type explicitly using the methods `excuteQuery()`,`executeQueryV1()` or `executeMgmt()`
const results = await kustoClient.execute(database, `['${table}'] | limit 1`, clientRequestProps);
console.log(JSON.stringify(results));
console.log(results.primaryResults[0].toString());
} catch (error) {
console.log(error);
}
kustoClient.close();
}