-
Notifications
You must be signed in to change notification settings - Fork 850
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
33 changed files
with
14,998 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,354 @@ | ||
# Azure Monitor Query client module for Go | ||
|
||
The Azure Monitor Query client library is used to execute read-only queries against [Azure Monitor][azure_monitor_overview]'s two data platforms: | ||
|
||
- [Logs](https://docs.microsoft.com/azure/azure-monitor/logs/data-platform-logs) - Collects and organizes log and performance data from monitored resources. Data from different sources such as platform logs from Azure services, log and performance data from virtual machines agents, and usage and performance data from apps can be consolidated into a single [Azure Log Analytics workspace](https://docs.microsoft.com/azure/azure-monitor/logs/data-platform-logs#log-analytics-and-workspaces). The various data types can be analyzed together using the [Kusto Query Language][kusto_query_language]. | ||
- [Metrics](https://docs.microsoft.com/azure/azure-monitor/essentials/data-platform-metrics) - Collects numeric data from monitored resources into a time series database. Metrics are numerical values that are collected at regular intervals and describe some aspect of a system at a particular time. Metrics are lightweight and capable of supporting near real-time scenarios, making them particularly useful for alerting and fast detection of issues. | ||
|
||
**NOTE**: This library is currently a beta. There may be breaking changes until it reaches semantic version `v1.0.0`. | ||
|
||
## Getting started | ||
|
||
### Install packages | ||
|
||
Install `azquery` and `azidentity` with `go get`: | ||
```Bash | ||
go get github.com/Azure/azure-sdk-for-go/sdk/monitor/azquery | ||
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity | ||
``` | ||
[azidentity][azure_identity] is used for Azure Active Directory authentication as demonstrated below. | ||
|
||
### Prerequisites | ||
|
||
* An [Azure subscription][azure_sub] | ||
* A supported Go version (the Azure SDK supports the two most recent Go releases) | ||
* For log queries, a Log Analytics workspace. | ||
* For metric queries, a Resource URI. | ||
|
||
### Authentication | ||
|
||
This document demonstrates using [azidentity.NewDefaultAzureCredential][default_cred_ref] to authenticate. This credential type works in both local development and production environments. We recommend using a [managed identity][managed_identity] in production. | ||
|
||
Client accepts any [azidentity][azure_identity] credential. See the [azidentity][azure_identity] documentation for more information about other credential types. | ||
|
||
#### Create a logs client | ||
|
||
```go | ||
import ( | ||
"github.com/Azure/azure-sdk-for-go/sdk/azidentity" | ||
"github.com/Azure/azure-sdk-for-go/sdk/monitor/azquery" | ||
) | ||
|
||
func main() { | ||
cred, err := azidentity.NewDefaultAzureCredential(nil) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
client := azkeys.NewLogsClient(cred, nil) | ||
} | ||
``` | ||
|
||
#### Create a metrics client | ||
|
||
```go | ||
import ( | ||
"github.com/Azure/azure-sdk-for-go/sdk/azidentity" | ||
"github.com/Azure/azure-sdk-for-go/sdk/monitor/azquery" | ||
) | ||
|
||
func main() { | ||
cred, err := azidentity.NewDefaultAzureCredential(nil) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
client := azkeys.NewMetricsClient(cred, nil) | ||
} | ||
``` | ||
|
||
### Execute the query | ||
|
||
For examples of Logs and Metrics queries, see the [Examples](#examples) section. | ||
|
||
## Key concepts | ||
|
||
### Logs query rate limits and throttling | ||
|
||
The Log Analytics service applies throttling when the request rate is too high. Limits, such as the maximum number of rows returned, are also applied on the Kusto queries. For more information, see [Query API](https://docs.microsoft.com/azure/azure-monitor/service-limits#la-query-api). | ||
|
||
If you're executing a batch logs query, a throttled request will return a `LogsQueryError` object. That object's `code` value will be `ThrottledError`. | ||
|
||
### Metrics data structure | ||
|
||
Each set of metric values is a time series with the following characteristics: | ||
|
||
- The time the value was collected | ||
- The resource associated with the value | ||
- A namespace that acts like a category for the metric | ||
- A metric name | ||
- The value itself | ||
- Some metrics may have multiple dimensions as described in multi-dimensional metrics. Custom metrics can have up to 10 dimensions. | ||
|
||
### Timespan | ||
|
||
It's best practice to always query with a timespan to prevent excessive queries of the entire logs or metrics data set. Logs uses the [ISO8601 Time Interval Standard][time_intervals] | ||
|
||
The timespan can be the following string formats: | ||
``` | ||
<start>/<end> such as "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" | ||
<start>/<duration> such as "2007-03-01T13:00:00Z/P1Y2M10DT2H30M" | ||
<duration>/<end> such as "P1Y2M10DT2H30M/2008-05-11T15:30:00Z" | ||
<duration> such as "P1Y2M10DT2H30M" // 1 year, 2 months, 10 days, 2 hours, 20 minutes | ||
``` | ||
|
||
## Examples | ||
|
||
- [Logs query](#logs-query) | ||
- [Logs query body structure](#logs-query-body-structure) | ||
- [Logs query result structure](#logs-query-result-structure) | ||
- [Batch logs query](#batch-query) | ||
- [Batch query request structure](#batch-query-request-structure) | ||
- [Batch query result structure](#batch-query-result-structure) | ||
- [Advanced logs query](#advanced-logs-query) | ||
- [Query multiple workspaces](#query-multiple-workspaces) | ||
- [Increase wait time, include statistics, include render (visualization)](#increase-wait-time-include-statistics-include-render-visualization) | ||
- [Metrics query](#metrics-query) | ||
- [Metrics result structure](#metrics-result-structure) | ||
|
||
### Logs query | ||
```go | ||
client := azquery.NewLogsClient(cred, nil) | ||
timespan := "2022-08-30/2022-08-31" | ||
|
||
res, err := client.QueryWorkspace(context.TODO(), workspaceID, azquery.Body{Query: to.Ptr(query), Timespan: to.Ptr(timespan)}, nil) | ||
if err != nil { | ||
panic(err) | ||
} | ||
_ = res | ||
``` | ||
|
||
#### Logs query body structure | ||
``` | ||
Body | ||
|---Query *string // Kusto Query | ||
|---Timespan *string // ISO8601 Standard Timespan | ||
|---Workspaces []*string //Optional- additional workspaces to query | ||
``` | ||
|
||
#### Logs query result structure | ||
``` | ||
LogsResponse | ||
|---Tables []*Table | ||
|---Columns []*Column | ||
|---Name *string | ||
|---Type *LogsColumnType | ||
|---Name *string | ||
|---Rows [][]interface{} | ||
|---Error *ErrorInfo | ||
|---Code *string | ||
|---Message *string | ||
|---AdditionalProperties interface{} | ||
|---Details []*ErrorDetail | ||
|---Code *string | ||
|---Message *string | ||
|---AdditionalProperties interface{} | ||
|---Resources []*string | ||
|---Target *string | ||
|---Value *string | ||
|---Innererror *ErrorInfo | ||
|---Render interface{} | ||
|---Statistics interface{} | ||
``` | ||
|
||
### Batch query | ||
```go | ||
client := azquery.NewLogsClient(cred, nil) | ||
timespan := "2022-08-30/2022-08-31" | ||
|
||
batchRequest := azquery.BatchRequest{[]*azquery.BatchQueryRequest{ | ||
{Body: &azquery.Body{Query: to.Ptr(kustoQuery1), Timespan: to.Ptr(timespan)}, ID: to.Ptr("1"), Workspace: to.Ptr(workspaceID)}, | ||
{Body: &azquery.Body{Query: to.Ptr(kustoQuery2), Timespan: to.Ptr(timespan)}, ID: to.Ptr("2"), Workspace: to.Ptr(workspaceID)}, | ||
{Body: &azquery.Body{Query: to.Ptr(kustoQuery3), Timespan: to.Ptr(timespan)}, ID: to.Ptr("3"), Workspace: to.Ptr(workspaceID)}, | ||
}} | ||
|
||
res, err := client.Batch(context.TODO(), batchRequest, nil) | ||
if err != nil { | ||
panic(err) | ||
} | ||
_ = res | ||
``` | ||
|
||
#### Batch query request structure | ||
|
||
``` | ||
BatchRequest | ||
|---Body *Body | ||
|---Query *string // Kusto Query | ||
|---Timespan *string // ISO8601 Standard Timespan | ||
|---Workspaces []*string // Optional- additional workspaces to query | ||
|---ID *string // unique identifier for each query in batch | ||
|---Workspace *string | ||
|---Headers map[string]*string // Optional- advanced query options in prefer header | ||
|---Method *BatchQueryRequestMethod // Optional- defaults to POST | ||
|---Path *BatchQueryRequestPath // Optional- defaults to /query | ||
``` | ||
|
||
#### Batch query result structure | ||
|
||
``` | ||
BatchResponse | ||
|---Responses []*BatchQueryResponse | ||
|---Body *BatchQueryResults | ||
|---Error *ErrorInfo | ||
|---Render interface{} | ||
|---Statistics interface{} | ||
|---Tables []*Table | ||
|---Columns []*Column | ||
|---Name *string | ||
|---Type *LogsColumnType | ||
|---Name *string | ||
|---Rows [][]interface{} | ||
|---Headers map[string]*string | ||
|---ID *string | ||
|---Status *int32 | ||
``` | ||
|
||
### Advanced logs query | ||
|
||
#### Query multiple workspaces | ||
|
||
To run the same query against multiple Log Analytics workspaces, add the additional workspace ID strings to the Workspaces array in the Body struct. | ||
|
||
When multiple workspaces are included in the query, the logs in the result table are not grouped according to the workspace from which it was retrieved. | ||
|
||
```go | ||
client := azquery.NewLogsClient(cred, nil) | ||
timespan := "2022-08-30/2022-08-31" | ||
additionalWorkspaces := []*string{&workspaceID2, &workspaceID3} | ||
|
||
res, err := client.QueryWorkspace(context.TODO(), workspaceID, azquery.Body{Query: to.Ptr(query), Timespan: to.Ptr(timespan), Workspaces: additionalWorkspaces}, nil) | ||
if err != nil { | ||
panic(err) | ||
} | ||
_ = res | ||
``` | ||
|
||
#### Increase wait time, include statistics, include render (visualization) | ||
|
||
By default, the Azure Monitor Query service will run your query for up to three minutes. To increase the default timeout, set `wait` to desired number of seconds in LogsClientQueryWorkspaceOptions Prefer string. Max wait time the service will allow is ten minutes (600 seconds). | ||
|
||
To get logs query execution statistics, such as CPU and memory consumption, set `include-statistics` to true in LogsClientQueryWorkspaceOptions Prefer string. | ||
|
||
To get visualization data for logs queries, set `include-render` to true in LogsClientQueryWorkspaceOptions Prefer string. | ||
|
||
```go | ||
client := azquery.NewLogsClient(cred, nil) | ||
timespan := "2022-08-30/2022-08-31" | ||
prefer := "wait=600,include-statistics=true,include-render=true" | ||
options := &azquery.LogsClientQueryWorkspaceOptions{Prefer: &prefer} | ||
|
||
res, err := client.QueryWorkspace(context.TODO(), workspaceID, | ||
azquery.Body{Query: to.Ptr(query), Timespan: to.Ptr(timespan)}, options) | ||
if err != nil { | ||
panic(err) | ||
} | ||
_ = res | ||
``` | ||
|
||
### Metrics query | ||
|
||
```go | ||
client := azquery.NewMetricsClient(cred, nil) | ||
res, err := client.QueryResource(context.Background(), resourceURI, | ||
&azquery.MetricsClientQueryResourceOptions{Timespan: to.Ptr("2017-04-14T02:20:00Z/2017-04-14T04:20:00Z"), | ||
Interval: to.Ptr("PT1M"), | ||
Metricnames: nil, | ||
Aggregation: to.Ptr("Average,count"), | ||
Top: to.Ptr[int32](3), | ||
Orderby: to.Ptr("Average asc"), | ||
Filter: to.Ptr("BlobType eq '*'"), | ||
ResultType: nil, | ||
Metricnamespace: to.Ptr("Microsoft.Storage/storageAccounts/blobServices"), | ||
}) | ||
if err != nil { | ||
panic(err) | ||
} | ||
_ = res | ||
``` | ||
|
||
#### Metrics result structure | ||
``` | ||
MetricsResults | ||
|---Timespan *string | ||
|---Value []*Metric | ||
|---ID *string | ||
|---Name *LocalizableString | ||
|---Timeseries []*TimeSeriesElement | ||
|---Data []*MetricValue | ||
|---TimeStamp *time.Time | ||
|---Average *float64 | ||
|---Count *float64 | ||
|---Maximum *float64 | ||
|---Minimum *float64 | ||
|---Total *float64 | ||
|---Metadatavalues []*MetadataValue | ||
|---Name *LocalizableString | ||
|---Value *string | ||
|---Type *string | ||
|---Unit *MetricUnit | ||
|---DisplayDescription *string | ||
|---ErrorCode *string | ||
|---ErrorMessage *string | ||
|---Cost *int32 | ||
|---Interval *string | ||
|---Namespace *string | ||
|---Resourceregion *string | ||
``` | ||
|
||
## Troubleshooting | ||
|
||
### Logging | ||
|
||
This module uses the logging implementation in `azcore`. To turn on logging for all Azure SDK modules, set `AZURE_SDK_GO_LOGGING` to `all`. By default the logger writes to stderr. Use the `azcore/log` package to control log output. For example, logging only HTTP request and response events, and printing them to stdout: | ||
|
||
```go | ||
import azlog "github.com/Azure/azure-sdk-for-go/sdk/azcore/log" | ||
|
||
// Print log events to stdout | ||
azlog.SetListener(func(cls azlog.Event, msg string) { | ||
fmt.Println(msg) | ||
}) | ||
|
||
// Includes only requests and responses in credential logs | ||
azlog.SetEvents(azlog.EventRequest, azlog.EventResponse) | ||
``` | ||
|
||
## Next steps | ||
|
||
To learn more about Azure Monitor, see the [Azure Monitor service documentation][azure_monitor_overview]. | ||
|
||
## Contributing | ||
|
||
This project welcomes contributions and suggestions. Most contributions require you to agree to a [Contributor License Agreement (CLA)][cla] declaring that you have the right to, and actually do, grant us the rights to use your contribution. | ||
|
||
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate | ||
the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to | ||
do this once across all repos using our CLA. | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For more information, see | ||
the [Code of Conduct FAQ][coc_faq] or contact [[email protected]][coc_contact] with any additional questions or | ||
comments. | ||
|
||
<!-- LINKS --> | ||
[managed_identity]: https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview | ||
[azure_identity]: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity | ||
[azure_sub]: https://azure.microsoft.com/free/ | ||
[azure_monitor_create_using_portal]: https://docs.microsoft.com/azure/azure-monitor/logs/quick-create-workspace | ||
[azure_monitor_overview]: https://docs.microsoft.com/azure/azure-monitor/overview | ||
[time_intervals]: https://en.wikipedia.org/wiki/ISO_8601#Time_intervals | ||
|
||
[cla]: https://cla.microsoft.com | ||
[coc]: https://opensource.microsoft.com/codeofconduct/ | ||
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/ | ||
[coc_contact]: mailto:[email protected] |
Oops, something went wrong.