Skip to content

Releases: Azure/azure-kusto-node

Managed Identity Support

19 Aug 11:35
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

  • Added support for managed identity.
const kcsb = KustoConnectionStringBuilder.withAadManagedIdentities(`https://${clusterName}.kusto.windows.net`, '(Optional)msiEndpoint', '(Optional)clientId');

FIXES:

None.

Exposing source id

21 Feb 14:35
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

  • Add the ability to set the source id of source descriptors. Useful for monitoring purposes (when reading statuses from queue, can correlate status via IngestionSourceId on status message).
const uuidv4 = require('uuid/v4');
let sourceId = uuidv4();
let fileDescriptor = new FileDescriptor("stormEvents.csv", sourceId);

ingestClient.ingestFromFile(fileDescriptor, ingestionProperties, (err) => {
//set up status queue monitoring..
});

FIXES:

None.

Exposing `ClientRequestProperties`

17 Dec 17:21
Compare
Choose a tag to compare

Fix for column ordering when serializing rows

28 Nov 11:00
ba13777
Compare
Choose a tag to compare
v0.1.4

fix row.toString not respecting column ordering + test (#5)

Docs

27 Nov 10:43
6310617
Compare
Choose a tag to compare
v0.1.3

adding download badges

Exposing Ingestion Source Descriptors

25 Oct 11:30
71d3a59
Compare
Choose a tag to compare
Merge pull request #4 from Azure/exporting_descriptors

Exporting descriptors

Docs Fix

18 Oct 11:38
a5e4b91
Compare
Choose a tag to compare

Adding more docs