# azure-arm-monitor

> MonitorManagementClient Library with typescript type definitions for node

Latest version **5.4.0** (published 2019-03-14) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install azure-arm-monitor
pnpm add azure-arm-monitor
yarn add azure-arm-monitor
bun add azure-arm-monitor
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 5.4.0 |
| Published | 2019-03-14 |
| First published | 2017-06-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 1.3 MB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 1174 |
| Author | Microsoft Corporation |
| Maintainers | windowsazure |
| Keywords | node, azure |

## Links

- npm: https://www.npmjs.com/package/azure-arm-monitor
- Repository: https://github.com/azure/azure-sdk-for-node
- Homepage: https://github.com/azure/azure-sdk-for-node/tree/master/lib/services/monitorManagement
- Issues: https://github.com/azure/azure-sdk-for-node/issues
- npm.io page: https://npm.io/package/azure-arm-monitor

## Dependencies (2)

- [ms-rest](https://npm.io/package/ms-rest.md) ^2.5.0
- [ms-rest-azure](https://npm.io/package/ms-rest-azure.md) ^2.5.5

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 5.4.0 (latest) — 2019-03-14
- 5.3.0 — 2019-03-13
- 5.2.0 — 2018-11-07
- 5.1.0 — 2018-10-23
- 5.0.0 — 2018-10-04
- 4.2.0 — 2018-09-28
- 4.1.1 — 2018-09-19
- 4.1.0 — 2018-09-06
- 4.0.0 — 2018-08-29
- 3.0.0 — 2018-07-20
- 2.0.0-preview — 2018-03-27
- 1.0.1-preview — 2017-10-11
- 1.0.0-preview — 2017-09-28
- 0.16.1-preview — 2017-06-28

## README

---
uid: azure-arm-monitor
summary: *content

---
**This SDK will be deprecated next year and will be replaced by a new TypeScript-based isomorphic SDK (found at https://www.npmjs.com/package/@azure/arm-monitor) which works on Node.js and browsers.**
**See https://aka.ms/azure-sdk-for-js-migration to learn more.**
## Microsoft Azure SDK for Node.js - MonitorManagementClient

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

```bash
npm install azure-arm-monitor
```

### How to use

#### Authentication, client creation, and listByResourceGroup autoscaleSettings as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const MonitorManagementClient = require("azure-arm-monitor");
msRestAzure.interactiveLogin().then((creds) => {
  const subscriptionId = "<Subscription_Id>";
  const client = new MonitorManagementClient(creds, subscriptionId);
  const resourceGroupName = "testresourceGroupName";

  return client.autoscaleSettings.listByResourceGroup(resourceGroupName).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)

---
_Source: https://npm.io/package/azure-arm-monitor · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
