GithubHelp home page GithubHelp logo

isabella232 / monitor-dotnet-multidimensional-metrics-api Goto Github PK

View Code? Open in Web Editor NEW

This project forked from azure-samples/monitor-dotnet-multidimensional-metrics-api

0.0 0.0 0.0 17 KB

Code samples for the Azure Monitor's multidimensional metrics API

License: MIT License

C# 100.00%

monitor-dotnet-multidimensional-metrics-api's Introduction

page_type languages products description urlFragment
sample
csharp
azure
his sample explains how to retrieve Monitor multi-dimensional metrics and multi-dimensional metric definitions using the Azure .NET SDK release_0.18.0-preview or higher.
monitor-dotnet-multidimensional-metrics-api

Retrieve Azure Monitor multi-dimensional metrics with .NET

This sample explains how to retrieve Monitor multi-dimensional metrics and multi-dimensional metric definitions using the Azure .NET SDK release_0.18.0-preview or higher.

NOTE: calls to this API can retrieve single dimensional metrics/metric definitions too.

NOTE: please refer to the Microsoft Open Source Code of Conduct.

NOTE: for contributions refer to the CONTRIBUTING.md file.

On this page

Run this sample

  1. If you don't have it, install the .NET Core SDK.

  2. Clone the repository.

    git clone https://github.com/Azure-Samples/monitor-multidimensional-metrics-dotnet.git
    
  3. Install the dependencies.

    dotnet restore
    
  4. Create an Azure service principal either through Azure CLI, PowerShell or the portal.

  5. Export these environment variables using your subscription id and the tenant id, client id and client secret from the service principal that you created.

    export AZURE_TENANT_ID={your tenant id}
    export AZURE_CLIENT_ID={your client id}
    export AZURE_CLIENT_SECRET={your client secret}
    export AZURE_SUBSCRIPTION_ID={your subscription id}
    
  6. Run the sample.

    dotnet run program
    

What is program.cs doing?

The sample retrieves multi dimensional metric definitions and multi dimensional metrics for a given resource. It starts by setting up a MonitorClient object using your subscription and credentials.

// Build the service credentials and Monitor client
var serviceCreds = await ApplicationTokenProvider.LoginSilentAsync(tenantId, clientId, secret);
var monitorClient = new MonitorClient(serviceCreds);
monitorClient.SubscriptionId = subscriptionId;

List multi dimensional metric definitions for a resource

List the multi dimensional metric definitions for the given resource, which is defined in the current subscription.

IEnumerable<MetricDefinition> metricDefinitions = await readOnlyClient.MetricDefinitions.ListAsync(resourceUri: resourceUri, cancellationToken: new CancellationToken());

NOTE: call to the multi-dim metrics API do not support filters for the metric definitions.

List multi dimensional metrics for a resource

Response metrics = await readOnlyClient.Metrics.ListAsync(resourceUri: resourceUri, cancellationToken: CancellationToken.None);

or with arguments

// The timespan is the concatenation of the start and end date/times separated by "/"
string startDate = DateTime.Now.AddHours(-3).ToString("o");
string endDate = DateTime.Now.ToString("o");
string timeSpan = startDate + "/" + endDate;

Write("Call with more parameters, but no filter");
metrics = await readOnlyClient.Metrics.ListAsync(
  resourceUri: resourceUri, 
  timespan: timeSpan,
  interval: TimeSpan.FromMinutes(1),
  metric: "Transactions",

  resultType: ResultType.Data,
  cancellationToken: CancellationToken.None);

Write("Call to retrieve time series with timespan parameter");
metrics = await readOnlyClient.Metrics.ListAsync(
                resourceUri: resourceUri,
                timespan: timeSpan,
                resultType: ResultType.Data,
                cancellationToken: CancellationToken.None);
EnumerateMetrics(metrics);

// interval is equivalent to timeGrain in the single dimension API
Write("Call to retrieve time series with timespan and interval parameters");
metrics = await readOnlyClient.Metrics.ListAsync(
                resourceUri: resourceUri,
                timespan: timeSpan,
                interval: System.TimeSpan.FromMinutes(5),
                resultType: ResultType.Data,
                cancellationToken: CancellationToken.None);
EnumerateMetrics(metrics);

Write("Call to retrieve time series with timespan, interval, and metric parameters");
metrics = await readOnlyClient.Metrics.ListAsync(
                resourceUri: resourceUri,
                timespan: timeSpan,
                interval: System.TimeSpan.FromMinutes(5),
                metric: "CpuPercentage",
                resultType: ResultType.Data,
                cancellationToken: CancellationToken.None);
EnumerateMetrics(metrics);

Write("Call to retrieve time series with timespan, interval, metric, and aggregation parameters");
metrics = await readOnlyClient.Metrics.ListAsync(
                resourceUri: resourceUri,
                timespan: timeSpan,
                interval: System.TimeSpan.FromMinutes(5),
                metric: "CpuPercentage",
                aggregation: "Count",
                resultType: ResultType.Data,
                cancellationToken: CancellationToken.None);
EnumerateMetrics(metrics);

Write("Call to retrieve time series with timespan, interval, metric, and $filter parameters. NOTE: $filter is reserved for metadata only.");
// Filter (just an example). The user must know which metadata are available.
// More conditions can be added with the 'or' and 'and' operators
ODataQuery<MetadataValue> odataFilterMetrics = new ODataQuery<MetadataValue>(
    string.Format(
        "Metadata1 eq '{0}' and Metadata2 eq '{1}' or Metadata3 eq '*'",
        "m1",
        "m2"));
        
metrics = readOnlyClient.Metrics.List(
                resourceUri: resourceUri,
                timespan: timeSpan,
                interval: System.TimeSpan.FromMinutes(5),
                metric: "CpuPercentage",
                odataQuery: odataFilterMetrics,
                aggregation: "Count",
                resultType: ResultType.Data);
EnumerateMetrics(metrics);

Write("Call to retrieve metadata with timespan");
// For this query (for metadata) requires at least one metadata eq '*'
odataFilterMetrics = new ODataQuery<MetadataValue>("Metadata3 eq '*'");
var metadata = await readOnlyClient.Metrics.ListAsync(
                resourceUri: resourceUri,
                odataQuery: odataFilterMetrics,
                timespan: timeSpan,
                metric: "CpuPercentage",
                resultType: ResultType.Metadata,
                cancellationToken: CancellationToken.None);
EnumerateMetrics(metrics);

NOTE: there are other parameters not illustrated here like aggregation, $top, $orderby. Please refer to the SDK documentation for details.

monitor-dotnet-multidimensional-metrics-api's People

Contributors

gucalder avatar microsoftopensource avatar msftgits avatar v-rajagt-zz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.