Skip to content

Integrate feature telemetry #66

@OlzhabaevSh

Description

@OlzhabaevSh

Is your feature request related to a problem? Please describe.
Integrate telemetry data to see what kind of features are most used by users.
Having this information can help us more carefully plan what we need to improve or what we need to reconsider.

Describe the solution you'd like
VS SDK supports telemetry collection features.

  1. Integrate it
  2. Log each event instance: a http/aspnet/ef request happen
// example
class TelemetryFeatureItem 
{
   public DateTime CreatedAt { get; set; }
   public TelemetryDataFeatureCategoryEnum  Category { get; set; }
}

enum TelemetryDataFeatureCategoryEnum : byte
{
   Http = 0,
   AspNet = 1,
   EF = 2
}

Describe alternatives you've considered
Just keep things as is.

Additional context
With this feature we can integrate other features in the future

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions