…
|
||
---|---|---|
.. | ||
src | ||
README.md | ||
oneclick_instruction_box.md | ||
package.json | ||
tsconfig.json |
README.md
Quickstart App
The quickstart application is a self-contained and runnable example app that demonstrates authenticating, connecting to, administering, ingesting data into and querying Azure Data Explorer using the Azure Kusto JS SDK. You can use it as a baseline to write your own first kusto client application, altering the code as you go, or copy code sections out of it into your app.
Tip: The app includes comments with tips on recommendations, coding best practices, links to reference materials and recommended TODO changes when adapting the code to your needs.
Using the App for the first time
Prerequisites
- Set up NodeJS version 14+ and npm on your machine. For instructions, consult a setup tutorial, like this
Retrieving the app from GitHub
- Download the app files from this GitHub repository.
- Modify the
kusto_sample_config.json
file, changingkustoUri
,ingestUri
anddatabaseName
appropriately for your cluster.
Retrieving the app from OneClick
- Open a browser and type your cluster's URL (e.g. https://mycluster.westeurope.kusto.windows.net/). You will be redirected to the Azure Data Explorer Web UI.
- On the left menu, select Data.
- Click Generate Sample App Code and then follow the instructions in the wizard.
- Download the app as a ZIP file.
- Extract the app source code.
Note: The configuration parameters defined in the
kusto_sample_config.json
file are preconfigured with the appropriate values for your cluster. Verify that these are correct.
Run the app
- Open a command line window and navigate to the folder where you extracted the app.
- Either use an IDE of your choice to build and run the project, or execute the following using the command line window:
- Run
npm install
in the folder - Run
npm run quick_start
- Run
Troubleshooting
- If you are having trouble running the app from your IDE, first check if the app runs from the command line, then consult the troubleshooting references of your IDE.