Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monitor Query #18981

Merged
merged 30 commits into from
Sep 8, 2022
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
961b749
first gen
gracewilcox Aug 8, 2022
308b2d5
generated without metadata endpoint
gracewilcox Aug 9, 2022
0b69f93
delete extra files
gracewilcox Aug 10, 2022
2cae7b5
changed security scope and deleted GET operation
gracewilcox Aug 10, 2022
bf5143a
new client
gracewilcox Aug 11, 2022
1e02c4b
starting tests
gracewilcox Aug 15, 2022
4ada647
tests logs execute
gracewilcox Aug 16, 2022
a195cda
rename execute to queryworkspace
gracewilcox Aug 19, 2022
0e5b261
add time helper
gracewilcox Aug 23, 2022
7fffe0c
rename client
gracewilcox Aug 24, 2022
09c0ab4
update tests
gracewilcox Aug 25, 2022
5ccbfbb
more code coverage
gracewilcox Aug 26, 2022
4e11152
delete unused error model
gracewilcox Aug 26, 2022
1da0f91
added metrics
gracewilcox Aug 29, 2022
25d6544
metrics host
gracewilcox Aug 29, 2022
264cf93
batch req optional attributes
gracewilcox Aug 30, 2022
2f4229b
Merge branch 'main' into monitor-query
gracewilcox Aug 30, 2022
27c9f4f
more tests
gracewilcox Aug 31, 2022
5854e14
start pipeline
gracewilcox Sep 2, 2022
ddee7a1
initial recording
gracewilcox Sep 6, 2022
7a89f10
recordings
gracewilcox Sep 6, 2022
d2899eb
add to readme
gracewilcox Sep 7, 2022
1fe6863
record
gracewilcox Sep 7, 2022
30d9595
fixed recordings
gracewilcox Sep 8, 2022
3aafee6
update code coverage
gracewilcox Sep 8, 2022
96922cf
fixes
gracewilcox Sep 8, 2022
2923173
format
gracewilcox Sep 8, 2022
771da7e
added last comment
gracewilcox Sep 8, 2022
67b34f9
added changelog
gracewilcox Sep 8, 2022
a437a6f
update documentation
gracewilcox Sep 8, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions eng/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
"Name": "messaging/internal",
"CoverageGoal": 0.40
},
{
"Name": "monitor/azquery",
"CoverageGoal": 0.80
gracewilcox marked this conversation as resolved.
Show resolved Hide resolved
},
{
"Name": "resourcemanager",
"CoverageGoal": 0.0
Expand Down
4 changes: 4 additions & 0 deletions sdk/monitor/azquery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Release History

## 0.1.0 (2022-09-08)
* This is the initial release of the `azquery` library
21 changes: 21 additions & 0 deletions sdk/monitor/azquery/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) Microsoft Corporation. All rights reserved.

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