Skip to content

Commit

Permalink
[Metrics Advisor] Initial merge commit (#11593)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymeng authored Oct 1, 2020
1 parent c8e67b3 commit f962338
Show file tree
Hide file tree
Showing 252 changed files with 31,633 additions and 45 deletions.
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@
# PRLabel: %Cognitive - Form Recognizer
/sdk/formrecognizer/ @jeremymeng @willmtemple

# PRLabel: %Cognitive - Metrics Advisor
/sdk/metricsadvisor/ @jeremymeng @KarishmaGhiya

# PRLabel: %Search
/sdk/search/ @xirzec @sarangan12

Expand Down
142 changes: 97 additions & 45 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dataplane.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@
"name": "logger",
"path": "sdk/core/logger"
},
{
"name": "metrics-advisor",
"path": "sdk\\metricsadvisor\\ai-metrics-advisor"
},
{
"name": "search",
"path": "sdk/search/search-documents"
Expand Down
5 changes: 5 additions & 0 deletions rush.json
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,11 @@
"projectFolder": "sdk/textanalytics/ai-text-analytics",
"versionPolicyName": "client"
},
{
"packageName": "@azure/ai-metrics-advisor",
"projectFolder": "sdk/metricsadvisor/ai-metrics-advisor",
"versionPolicyName": "client"
},
{
"packageName": "@azure/search-documents",
"projectFolder": "sdk/search/search-documents",
Expand Down
4 changes: 4 additions & 0 deletions sdk/metricsadvisor/ai-metrics-advisor/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugins": ["@azure/azure-sdk"],
"extends": ["plugin:@azure/azure-sdk/azure-sdk-base"]
}
18 changes: 18 additions & 0 deletions sdk/metricsadvisor/ai-metrics-advisor/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"include": [
"dist-esm/src/**/*.js"
],
"exclude": [
"**/*.d.ts",
"dist-esm/src/generated/src/**/*.js"
],
"reporter": [
"text-summary",
"html",
"cobertura"
],
"exclude-after-remap":false,
"sourceMap": true,
"instrument": true,
"all": true
}
17 changes: 17 additions & 0 deletions sdk/metricsadvisor/ai-metrics-advisor/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Current JS file",
"skipFiles": ["<node_internals>/**"],
"program": "${file}",
"cwd": "${fileDirname}",
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
}
]
}
7 changes: 7 additions & 0 deletions sdk/metricsadvisor/ai-metrics-advisor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 1.0.0-beta.1 (Unreleased)

- This release is a preview of our efforts to create a client library that is user friendly and
idiomatic to the JavaScript ecosystem. The reasons for most of the changes in this update can be found in the
[Azure SDK Design Guidelines for TypeScript](https://azure.github.io/azure-sdk/typescript_introduction.html).
21 changes: 21 additions & 0 deletions sdk/metricsadvisor/ai-metrics-advisor/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2020 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit f962338

Please sign in to comment.