azure-sdk-for-js/sdk/synapse/synapse-monitoring
Jeremy Meng 83e13d88f9 [engsys] upgrade `eslint` dev dependency version to ^8.0.0 for rest packages
***NO_CI***
2022-05-20 13:21:30 -07:00
..
recordings/node/access_control_smoke
review
src [EngSys] prepare for upgrading TypeScript to v4.6 2022-04-19 12:11:57 -07:00
swagger
test/public
CHANGELOG.md
README.md
api-extractor.json
karma.conf.js
package.json [engsys] upgrade `eslint` dev dependency version to ^8.0.0 for rest packages 2022-05-20 13:21:30 -07:00
rollup.config.js [engsys] upgrade rollup dev dependencies version (#21647) 2022-04-28 09:59:30 -07:00
tsconfig.json

README.md

Azure Synapse Monitoring client library for JavaScript

This package contains an isomorphic SDK for Monitoring.

Getting started

Install the package

npm install @azure/synapse-monitoring

Currently supported environments

See our support policy for more details.

Key concepts

Examples

import { MonitoringClient } from "@azure/synapse-monitoring";
import { DefaultAzureCredential } from "@azure/identity";

export async function main(): Promise<void> {
  const credential = new DefaultAzureCredential();

  let client = new MonitoringClient(credential, "https://mysynapse.dev.azuresynapse.net");
  let output = await client.monitoring.getSparkJobList();
  console.log("output:", output);
}

Impressions

Troubleshooting

Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the AZURE_LOG_LEVEL environment variable to info. Alternatively, logging can be enabled at runtime by calling setLogLevel in the @azure/logger:

import { setLogLevel } from "@azure/logger";

setLogLevel("info");

Next steps

In the future, you'll find additional code samples here.

Contributing

If you'd like to contribute to this library, please read the contributing guide to learn more about how to build and test the code.

Impressions