azure-sdk-for-node/lib/services/applicationinsights
scbedd a17967df1d adding impression pixel 2019-03-04 15:13:55 -08:00
..
lib Remove extra LICENSE and package.json files 2019-02-12 15:11:40 -08:00
LICENSE.txt Generated from 2f05917ef35eba564962791328931780145a0cab 2018-06-13 21:09:35 +00:00
README.md adding impression pixel 2019-03-04 15:13:55 -08:00
package.json Update all generated package versions 2018-11-07 09:30:17 -08:00

README.md

uid: azure-arm-appinsights summary: *content

Microsoft Azure SDK for Node.js - ApplicationInsightsManagementClient

This project provides a Node.js package for accessing Azure. Right now it supports:

  • Node.js version 6.x.x or higher

Features

How to Install

npm install azure-arm-appinsights

How to use

Authentication, client creation and list operations as an example.

const msRestAzure = require("ms-rest-azure");
const ApplicationInsightsManagementClient = require("azure-arm-appinsights");
msRestAzure.interactiveLogin().then((creds) => {
    const subscriptionId = "<Subscription_Id>";
    const client = new ApplicationInsightsManagementClient(creds, subscriptionId);
    return client.operations.list().then((result) => {
      console.log("The result is:");
      console.log(result);
    });
}).catch((err) => {
  console.log('An error occurred:');
  console.dir(err, {depth: null, colors: true});
});

## Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-node%2Flib%2Fservices%2Fapplicationinsights%2FREADME.png)