insights

package
v21.4.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 20, 2019 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

Package implements the Azure ARM service API version v1.

Composite Swagger for Application Insights Data Client

Index

Constants

View Source
const (
	// DefaultBaseURI is the default URI used for the service
	DefaultBaseURI = "https://api.applicationinsights.io/v1"
)

Variables

This section is empty.

Functions

func UserAgent

func UserAgent() string

Copyright (c) Microsoft and contributors. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and limitations under the License.

Code generated by Microsoft (R) AutoRest Code Generator. Changes may cause incorrect behavior and will be lost if the code is regenerated. Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. UserAgent returns the UserAgent string to use when sending http.Requests.

func Version deprecated

func Version() string

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. Version returns the semantic version (see http://semver.org) of the client.

Types

type BaseClient deprecated

type BaseClient struct {
	autorest.Client
	BaseURI string
	AppID   string
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. BaseClient is the base client for .

func New deprecated

func New(appID string) BaseClient

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. New creates an instance of the BaseClient client.

func NewWithBaseURI deprecated

func NewWithBaseURI(baseURI string, appID string) BaseClient

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. NewWithBaseURI creates an instance of the BaseClient client.

func (BaseClient) GetEventMethod deprecated

func (client BaseClient) GetEventMethod(ctx context.Context, eventType EventTypeEnum, eventID string, timespan *string) (result EventsResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventMethod gets the data for a single event

eventType is the type of events to query; either a standard event type (`traces`, `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, `availabilityResults`) or `$all` to query across all event types. eventID is ID of event. timespan is optional. The timespan over which to retrieve events. This is an ISO8601 time period value. This timespan is applied in addition to any that are specified in the Odata expression.

func (BaseClient) GetEventMethodPreparer deprecated

func (client BaseClient) GetEventMethodPreparer(ctx context.Context, eventType EventTypeEnum, eventID string, timespan *string) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventMethodPreparer prepares the GetEventMethod request.

func (BaseClient) GetEventMethodResponder deprecated

func (client BaseClient) GetEventMethodResponder(resp *http.Response) (result EventsResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventMethodResponder handles the response to the GetEventMethod request. The method always closes the http.Response Body.

func (BaseClient) GetEventMethodSender deprecated

func (client BaseClient) GetEventMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventMethodSender sends the GetEventMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetEventsMetadataODataMethod deprecated

func (client BaseClient) GetEventsMetadataODataMethod(ctx context.Context) (result SetObjectType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMetadataODataMethod gets OData EDMX metadata describing the event data model

func (BaseClient) GetEventsMetadataODataMethodPreparer deprecated

func (client BaseClient) GetEventsMetadataODataMethodPreparer(ctx context.Context) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMetadataODataMethodPreparer prepares the GetEventsMetadataODataMethod request.

func (BaseClient) GetEventsMetadataODataMethodResponder deprecated

func (client BaseClient) GetEventsMetadataODataMethodResponder(resp *http.Response) (result SetObjectType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMetadataODataMethodResponder handles the response to the GetEventsMetadataODataMethod request. The method always closes the http.Response Body.

func (BaseClient) GetEventsMetadataODataMethodSender deprecated

func (client BaseClient) GetEventsMetadataODataMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMetadataODataMethodSender sends the GetEventsMetadataODataMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetEventsMethod deprecated

func (client BaseClient) GetEventsMethod(ctx context.Context, eventType EventTypeEnum, timespan *string, filter string, search string, orderby string, selectParameter string, skip *int32, top *int32, formatParameter string, count *bool, apply string) (result EventsResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMethod executes an OData query for events

eventType is the type of events to query; either a standard event type (`traces`, `customEvents`, `pageViews`, `requests`, `dependencies`, `exceptions`, `availabilityResults`) or `$all` to query across all event types. timespan is optional. The timespan over which to retrieve events. This is an ISO8601 time period value. This timespan is applied in addition to any that are specified in the Odata expression. filter is an expression used to filter the returned events search is a free-text search expression to match for whether a particular event should be returned orderby is a comma-separated list of properties with \"asc\" (the default) or \"desc\" to control the order of returned events selectParameter is limits the properties to just those requested on each returned event skip is the number of items to skip over before returning events top is the number of events to return formatParameter is format for the returned events count is request a count of matching items included with the returned events apply is an expression used for aggregation over returned events

func (BaseClient) GetEventsMethodPreparer deprecated

func (client BaseClient) GetEventsMethodPreparer(ctx context.Context, eventType EventTypeEnum, timespan *string, filter string, search string, orderby string, selectParameter string, skip *int32, top *int32, formatParameter string, count *bool, apply string) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMethodPreparer prepares the GetEventsMethod request.

func (BaseClient) GetEventsMethodResponder deprecated

func (client BaseClient) GetEventsMethodResponder(resp *http.Response) (result EventsResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMethodResponder handles the response to the GetEventsMethod request. The method always closes the http.Response Body.

func (BaseClient) GetEventsMethodSender deprecated

func (client BaseClient) GetEventsMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetEventsMethodSender sends the GetEventsMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetMetricMethod deprecated

func (client BaseClient) GetMetricMethod(ctx context.Context, metricID string, timespan *string, interval *string, aggregation []string, segment []string, top *int32, orderby string, filter string) (result MetricsResultType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricMethod gets data for a single metric.

metricID is ID of the metric. This is either a standard AI metric, or an application-specific custom metric. timespan is the timespan over which to retrieve metric values. This is an ISO8601 time period value. If timespan is omitted, a default time range of `PT12H` ("last 12 hours") is used. The actual timespan that is queried may be adjusted by the server based. In all cases, the actual time span used for the query is included in the response. interval is the time interval to use when retrieving metric values. This is an ISO8601 duration. If interval is omitted, the metric value is aggregated across the entire timespan. If interval is supplied, the server may adjust the interval to a more appropriate size based on the timespan used for the query. In all cases, the actual interval used for the query is included in the response. aggregation is the aggregation to use when computing the metric values. To retrieve more than one aggregation at a time, separate them with a comma. If no aggregation is specified, then the default aggregation for the metric is used. segment is the name of the dimension to segment the metric values by. This dimension must be applicable to the metric you are retrieving. To segment by more than one dimension at a time, separate them with a comma (,). In this case, the metric data will be segmented in the order the dimensions are listed in the parameter. top is the number of segments to return. This value is only valid when segment is specified. orderby is the aggregation function and direction to sort the segments by. This value is only valid when segment is specified. filter is an expression used to filter the results. This value should be a valid OData filter expression where the keys of each clause should be applicable dimensions for the metric you are retrieving.

func (BaseClient) GetMetricMethodPreparer deprecated

func (client BaseClient) GetMetricMethodPreparer(ctx context.Context, metricID string, timespan *string, interval *string, aggregation []string, segment []string, top *int32, orderby string, filter string) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricMethodPreparer prepares the GetMetricMethod request.

func (BaseClient) GetMetricMethodResponder deprecated

func (client BaseClient) GetMetricMethodResponder(resp *http.Response) (result MetricsResultType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricMethodResponder handles the response to the GetMetricMethod request. The method always closes the http.Response Body.

func (BaseClient) GetMetricMethodSender deprecated

func (client BaseClient) GetMetricMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricMethodSender sends the GetMetricMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetMetricsMetadataMethod deprecated

func (client BaseClient) GetMetricsMetadataMethod(ctx context.Context) (result SetObjectType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMetadataMethod gets metadata describing the available metrics

func (BaseClient) GetMetricsMetadataMethodPreparer deprecated

func (client BaseClient) GetMetricsMetadataMethodPreparer(ctx context.Context) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMetadataMethodPreparer prepares the GetMetricsMetadataMethod request.

func (BaseClient) GetMetricsMetadataMethodResponder deprecated

func (client BaseClient) GetMetricsMetadataMethodResponder(resp *http.Response) (result SetObjectType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMetadataMethodResponder handles the response to the GetMetricsMetadataMethod request. The method always closes the http.Response Body.

func (BaseClient) GetMetricsMetadataMethodSender deprecated

func (client BaseClient) GetMetricsMetadataMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMetadataMethodSender sends the GetMetricsMetadataMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetMetricsMethod deprecated

func (client BaseClient) GetMetricsMethod(ctx context.Context, body []MetricsPostBodySchemaType) (result ListMetricsResultsItemType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMethod gets metric values for multiple metrics

body is the batched metrics query.

func (BaseClient) GetMetricsMethodPreparer deprecated

func (client BaseClient) GetMetricsMethodPreparer(ctx context.Context, body []MetricsPostBodySchemaType) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMethodPreparer prepares the GetMetricsMethod request.

func (BaseClient) GetMetricsMethodResponder deprecated

func (client BaseClient) GetMetricsMethodResponder(resp *http.Response) (result ListMetricsResultsItemType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMethodResponder handles the response to the GetMetricsMethod request. The method always closes the http.Response Body.

func (BaseClient) GetMetricsMethodSender deprecated

func (client BaseClient) GetMetricsMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetMetricsMethodSender sends the GetMetricsMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetQueryMethod deprecated

func (client BaseClient) GetQueryMethod(ctx context.Context, query string, timespan *string) (result QueryResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQueryMethod executes an Analytics query for data

query is the Analytics query. Learn more about the [Analytics query syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/) timespan is optional. The timespan over which to query data. This is an ISO8601 time period value. This timespan is applied in addition to any that are specified in the query expression.

func (BaseClient) GetQueryMethodPreparer deprecated

func (client BaseClient) GetQueryMethodPreparer(ctx context.Context, query string, timespan *string) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQueryMethodPreparer prepares the GetQueryMethod request.

func (BaseClient) GetQueryMethodResponder deprecated

func (client BaseClient) GetQueryMethodResponder(resp *http.Response) (result QueryResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQueryMethodResponder handles the response to the GetQueryMethod request. The method always closes the http.Response Body.

func (BaseClient) GetQueryMethodSender deprecated

func (client BaseClient) GetQueryMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQueryMethodSender sends the GetQueryMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) GetQuerySchemaMethod deprecated

func (client BaseClient) GetQuerySchemaMethod(ctx context.Context) (result QueryResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQuerySchemaMethod gets Analytics query schema describing the data model

func (BaseClient) GetQuerySchemaMethodPreparer deprecated

func (client BaseClient) GetQuerySchemaMethodPreparer(ctx context.Context) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQuerySchemaMethodPreparer prepares the GetQuerySchemaMethod request.

func (BaseClient) GetQuerySchemaMethodResponder deprecated

func (client BaseClient) GetQuerySchemaMethodResponder(resp *http.Response) (result QueryResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQuerySchemaMethodResponder handles the response to the GetQuerySchemaMethod request. The method always closes the http.Response Body.

func (BaseClient) GetQuerySchemaMethodSender deprecated

func (client BaseClient) GetQuerySchemaMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. GetQuerySchemaMethodSender sends the GetQuerySchemaMethod request. The method will close the http.Response Body if it receives an error.

func (BaseClient) QueryMethod deprecated

func (client BaseClient) QueryMethod(ctx context.Context, body QueryBodyType, timespan *string) (result QueryResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. QueryMethod executes an Analytics query for data. [Here](/documentation/2-Using-the-API/Query) is an example for using POST with an Analytics query.

body is the Analytics query. Learn more about the [Analytics query syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/) timespan is optional. The timespan over which to query data. This is an ISO8601 time period value. This timespan is applied in addition to any that are specified in the query expression.

func (BaseClient) QueryMethodPreparer deprecated

func (client BaseClient) QueryMethodPreparer(ctx context.Context, body QueryBodyType, timespan *string) (*http.Request, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. QueryMethodPreparer prepares the QueryMethod request.

func (BaseClient) QueryMethodResponder deprecated

func (client BaseClient) QueryMethodResponder(resp *http.Response) (result QueryResultsType, err error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. QueryMethodResponder handles the response to the QueryMethod request. The method always closes the http.Response Body.

func (BaseClient) QueryMethodSender deprecated

func (client BaseClient) QueryMethodSender(req *http.Request) (*http.Response, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. QueryMethodSender sends the QueryMethod request. The method will close the http.Response Body if it receives an error.

type BasicEventsResultDataType deprecated

type BasicEventsResultDataType interface {
	AsEventsTraceResultType() (*EventsTraceResultType, bool)
	AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)
	AsEventsPageViewResultType() (*EventsPageViewResultType, bool)
	AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)
	AsEventsRequestResultType() (*EventsRequestResultType, bool)
	AsEventsDependencyResultType() (*EventsDependencyResultType, bool)
	AsEventsExceptionResultType() (*EventsExceptionResultType, bool)
	AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)
	AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)
	AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)
	AsEventsResultDataType() (*EventsResultDataType, bool)
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. BasicEventsResultDataType events query result data.

type ColumnType deprecated

type ColumnType struct {
	// Name - The name of this column.
	Name *string `json:"name,omitempty"`
	// Type - The data type of this column.
	Type *string `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. ColumnType a column in a table.

type ErrorDetailType deprecated

type ErrorDetailType struct {
	// Code - The error's code.
	Code *string `json:"code,omitempty"`
	// Message - A human readable error message.
	Message *string `json:"message,omitempty"`
	// Target - Indicates which property in the request is responsible for the error.
	Target *string `json:"target,omitempty"`
	// Value - Indicates which value in 'target' is responsible for the error.
	Value *string `json:"value,omitempty"`
	// Resources - Indicates resources which were responsible for the error.
	Resources            *[]string   `json:"resources,omitempty"`
	AdditionalProperties interface{} `json:"additionalProperties,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. ErrorDetailType ...

type ErrorInfoType deprecated

type ErrorInfoType struct {
	// Code - A machine readable error code.
	Code *string `json:"code,omitempty"`
	// Message - A human readable error message.
	Message *string `json:"message,omitempty"`
	// Details - error details.
	Details *[]ErrorDetailType `json:"details,omitempty"`
	// Innererror - Inner error details if they exist.
	Innererror           *ErrorInfoType `json:"innererror,omitempty"`
	AdditionalProperties interface{}    `json:"additionalProperties,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. ErrorInfoType ...

type ErrorResponseType deprecated

type ErrorResponseType struct {
	// Error - The error details.
	Error *ErrorInfoType `json:"error,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. ErrorResponseType contains details when the response code indicates an error.

type EventTypeEnum deprecated

type EventTypeEnum string

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventTypeEnum enumerates the values for event type enum.

const (
	// All ...
	All EventTypeEnum = "$all"
	// AvailabilityResults ...
	AvailabilityResults EventTypeEnum = "availabilityResults"
	// BrowserTimings ...
	BrowserTimings EventTypeEnum = "browserTimings"
	// CustomEvents ...
	CustomEvents EventTypeEnum = "customEvents"
	// CustomMetrics ...
	CustomMetrics EventTypeEnum = "customMetrics"
	// Dependencies ...
	Dependencies EventTypeEnum = "dependencies"
	// Exceptions ...
	Exceptions EventTypeEnum = "exceptions"
	// PageViews ...
	PageViews EventTypeEnum = "pageViews"
	// PerformanceCounters ...
	PerformanceCounters EventTypeEnum = "performanceCounters"
	// Requests ...
	Requests EventTypeEnum = "requests"
	// Traces ...
	Traces EventTypeEnum = "traces"
)

type EventsAiInfoType deprecated

type EventsAiInfoType struct {
	// IKey - iKey of the app
	IKey *string `json:"iKey,omitempty"`
	// AppName - Name of the application
	AppName *string `json:"appName,omitempty"`
	// AppID - ID of the application
	AppID *string `json:"appId,omitempty"`
	// SdkVersion - SDK version of the application
	SdkVersion *string `json:"sdkVersion,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsAiInfoType AI related application info for an event result

type EventsApplicationInfoType deprecated

type EventsApplicationInfoType struct {
	// Version - Version of the application
	Version *string `json:"version,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsApplicationInfoType application info for an event result

type EventsAvailabilityResultInfoType deprecated

type EventsAvailabilityResultInfoType struct {
	// Name - The name of the availability result
	Name *string `json:"name,omitempty"`
	// Success - Indicates if the availability result was successful
	Success *string `json:"success,omitempty"`
	// Duration - The duration of the availability result
	Duration *int64 `json:"duration,omitempty"`
	// PerformanceBucket - The performance bucket of the availability result
	PerformanceBucket *string `json:"performanceBucket,omitempty"`
	// Message - The message of the availability result
	Message *string `json:"message,omitempty"`
	// Location - The location of the availability result
	Location *string `json:"location,omitempty"`
	// ID - The ID of the availability result
	ID *string `json:"id,omitempty"`
	// Size - The size of the availability result
	Size *string `json:"size,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsAvailabilityResultInfoType the availability result info

type EventsAvailabilityResultResultType deprecated

type EventsAvailabilityResultResultType struct {
	AvailabilityResult *EventsAvailabilityResultInfoType `json:"availabilityResult,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsAvailabilityResultResultType an availability result result

func (EventsAvailabilityResultResultType) AsBasicEventsResultDataType deprecated

func (earrt EventsAvailabilityResultResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsAvailabilityResultResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsBrowserTimingResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsCustomEventResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsCustomMetricResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsDependencyResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsExceptionResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsPageViewResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsPerformanceCounterResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsRequestResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsResultDataType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) AsEventsTraceResultType deprecated

func (earrt EventsAvailabilityResultResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsAvailabilityResultResultType.

func (EventsAvailabilityResultResultType) MarshalJSON deprecated

func (earrt EventsAvailabilityResultResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsAvailabilityResultResultType.

type EventsBrowserTimingInfoType deprecated

type EventsBrowserTimingInfoType struct {
	// URLPath - The path of the URL
	URLPath *string `json:"urlPath,omitempty"`
	// URLHost - The host of the URL
	URLHost *string `json:"urlHost,omitempty"`
	// Name - The name of the page
	Name *string `json:"name,omitempty"`
	// URL - The url of the page
	URL *string `json:"url,omitempty"`
	// TotalDuration - The total duration of the load
	TotalDuration *int64 `json:"totalDuration,omitempty"`
	// PerformanceBucket - The performance bucket of the load
	PerformanceBucket *string `json:"performanceBucket,omitempty"`
	// NetworkDuration - The network duration of the load
	NetworkDuration *int64 `json:"networkDuration,omitempty"`
	// SendDuration - The send duration of the load
	SendDuration *int64 `json:"sendDuration,omitempty"`
	// ReceiveDuration - The receive duration of the load
	ReceiveDuration *int64 `json:"receiveDuration,omitempty"`
	// ProcessingDuration - The processing duration of the load
	ProcessingDuration *int64 `json:"processingDuration,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsBrowserTimingInfoType the browser timing information

type EventsBrowserTimingResultType deprecated

type EventsBrowserTimingResultType struct {
	BrowserTiming     *EventsBrowserTimingInfoType     `json:"browserTiming,omitempty"`
	ClientPerformance *EventsClientPerformanceInfoType `json:"clientPerformance,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsBrowserTimingResultType a browser timing result

func (EventsBrowserTimingResultType) AsBasicEventsResultDataType deprecated

func (ebtrt EventsBrowserTimingResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsAvailabilityResultResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsBrowserTimingResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsCustomEventResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsCustomMetricResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsDependencyResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsExceptionResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsPageViewResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsPerformanceCounterResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsRequestResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsResultDataType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) AsEventsTraceResultType deprecated

func (ebtrt EventsBrowserTimingResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsBrowserTimingResultType.

func (EventsBrowserTimingResultType) MarshalJSON deprecated

func (ebtrt EventsBrowserTimingResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsBrowserTimingResultType.

type EventsClientInfoType deprecated

type EventsClientInfoType struct {
	// Model - Model of the client
	Model *string `json:"model,omitempty"`
	// Os - Operating system of the client
	Os *string `json:"os,omitempty"`
	// Type - Type of the client
	Type *string `json:"type,omitempty"`
	// Browser - Browser of the client
	Browser *string `json:"browser,omitempty"`
	// IP - IP address of the client
	IP *string `json:"ip,omitempty"`
	// City - City of the client
	City *string `json:"city,omitempty"`
	// StateOrProvince - State or province of the client
	StateOrProvince *string `json:"stateOrProvince,omitempty"`
	// CountryOrRegion - Country or region of the client
	CountryOrRegion *string `json:"countryOrRegion,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsClientInfoType client info for an event result

type EventsClientPerformanceInfoType deprecated

type EventsClientPerformanceInfoType struct {
	// Name - The name of the client performance
	Name *string `json:"name,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsClientPerformanceInfoType client performance information

type EventsCloudInfoType deprecated

type EventsCloudInfoType struct {
	// RoleName - Role name of the cloud
	RoleName *string `json:"roleName,omitempty"`
	// RoleInstance - Role instance of the cloud
	RoleInstance *string `json:"roleInstance,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsCloudInfoType cloud info for an event result

type EventsCustomEventInfoType deprecated

type EventsCustomEventInfoType struct {
	// Name - The name of the custom event
	Name *string `json:"name,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsCustomEventInfoType the custom event information

type EventsCustomEventResultType deprecated

type EventsCustomEventResultType struct {
	CustomEvent *EventsCustomEventInfoType `json:"customEvent,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsCustomEventResultType a custom event result

func (EventsCustomEventResultType) AsBasicEventsResultDataType deprecated

func (ecert EventsCustomEventResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsAvailabilityResultResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsBrowserTimingResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsCustomEventResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsCustomMetricResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsDependencyResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsExceptionResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsPageViewResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsPerformanceCounterResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsRequestResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsResultDataType deprecated

func (ecert EventsCustomEventResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) AsEventsTraceResultType deprecated

func (ecert EventsCustomEventResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsCustomEventResultType.

func (EventsCustomEventResultType) MarshalJSON deprecated

func (ecert EventsCustomEventResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsCustomEventResultType.

type EventsCustomMetricInfoType deprecated

type EventsCustomMetricInfoType struct {
	// Name - The name of the custom metric
	Name *string `json:"name,omitempty"`
	// Value - The value of the custom metric
	Value *float64 `json:"value,omitempty"`
	// ValueSum - The sum of the custom metric
	ValueSum *float64 `json:"valueSum,omitempty"`
	// ValueCount - The count of the custom metric
	ValueCount *float64 `json:"valueCount,omitempty"`
	// ValueMin - The minimum value of the custom metric
	ValueMin *float64 `json:"valueMin,omitempty"`
	// ValueMax - The maximum value of the custom metric
	ValueMax *float64 `json:"valueMax,omitempty"`
	// ValueStdDev - The standard deviation of the custom metric
	ValueStdDev *float64 `json:"valueStdDev,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsCustomMetricInfoType the custom metric info

type EventsCustomMetricResultType deprecated

type EventsCustomMetricResultType struct {
	CustomMetric *EventsCustomMetricInfoType `json:"customMetric,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsCustomMetricResultType a custom metric result

func (EventsCustomMetricResultType) AsBasicEventsResultDataType deprecated

func (ecmrt EventsCustomMetricResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsAvailabilityResultResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsBrowserTimingResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsCustomEventResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsCustomMetricResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsDependencyResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsExceptionResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsPageViewResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsPerformanceCounterResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsRequestResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsResultDataType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) AsEventsTraceResultType deprecated

func (ecmrt EventsCustomMetricResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsCustomMetricResultType.

func (EventsCustomMetricResultType) MarshalJSON deprecated

func (ecmrt EventsCustomMetricResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsCustomMetricResultType.

type EventsDependencyInfoType deprecated

type EventsDependencyInfoType struct {
	// Target - The target of the dependency
	Target *string `json:"target,omitempty"`
	// Data - The data of the dependency
	Data *string `json:"data,omitempty"`
	// Success - Indicates if the dependency was successful
	Success *string `json:"success,omitempty"`
	// Duration - The duration of the dependency
	Duration *int64 `json:"duration,omitempty"`
	// PerformanceBucket - The performance bucket of the dependency
	PerformanceBucket *string `json:"performanceBucket,omitempty"`
	// ResultCode - The result code of the dependency
	ResultCode *string `json:"resultCode,omitempty"`
	// Type - The type of the dependency
	Type *string `json:"type,omitempty"`
	// Name - The name of the dependency
	Name *string `json:"name,omitempty"`
	// ID - The ID of the dependency
	ID *string `json:"id,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsDependencyInfoType the dependency info

type EventsDependencyResultType deprecated

type EventsDependencyResultType struct {
	Dependency *EventsDependencyInfoType `json:"dependency,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsDependencyResultType a dependency result

func (EventsDependencyResultType) AsBasicEventsResultDataType deprecated

func (edrt EventsDependencyResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsAvailabilityResultResultType deprecated

func (edrt EventsDependencyResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsBrowserTimingResultType deprecated

func (edrt EventsDependencyResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsCustomEventResultType deprecated

func (edrt EventsDependencyResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsCustomMetricResultType deprecated

func (edrt EventsDependencyResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsDependencyResultType deprecated

func (edrt EventsDependencyResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsExceptionResultType deprecated

func (edrt EventsDependencyResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsPageViewResultType deprecated

func (edrt EventsDependencyResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsPerformanceCounterResultType deprecated

func (edrt EventsDependencyResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsRequestResultType deprecated

func (edrt EventsDependencyResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsResultDataType deprecated

func (edrt EventsDependencyResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) AsEventsTraceResultType deprecated

func (edrt EventsDependencyResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsDependencyResultType.

func (EventsDependencyResultType) MarshalJSON deprecated

func (edrt EventsDependencyResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsDependencyResultType.

type EventsExceptionDetailType deprecated

type EventsExceptionDetailType struct {
	// SeverityLevel - The severity level of the exception detail
	SeverityLevel *string `json:"severityLevel,omitempty"`
	// OuterID - The outer ID of the exception detail
	OuterID *string `json:"outerId,omitempty"`
	// Message - The message of the exception detail
	Message *string `json:"message,omitempty"`
	// Type - The type of the exception detail
	Type *string `json:"type,omitempty"`
	// ID - The ID of the exception detail
	ID *string `json:"id,omitempty"`
	// ParsedStack - The parsed stack
	ParsedStack *[]EventsExceptionDetailsParsedStackType `json:"parsedStack,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsExceptionDetailType exception details

type EventsExceptionDetailsParsedStackType deprecated

type EventsExceptionDetailsParsedStackType struct {
	// Assembly - The assembly of the stack entry
	Assembly *string `json:"assembly,omitempty"`
	// Method - The method of the stack entry
	Method *string `json:"method,omitempty"`
	// Level - The level of the stack entry
	Level *int64 `json:"level,omitempty"`
	// Line - The line of the stack entry
	Line *int64 `json:"line,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsExceptionDetailsParsedStackType a parsed stack entry

type EventsExceptionInfoType deprecated

type EventsExceptionInfoType struct {
	// SeverityLevel - The severity level of the exception
	SeverityLevel *int32 `json:"severityLevel,omitempty"`
	// ProblemID - The problem ID of the exception
	ProblemID *string `json:"problemId,omitempty"`
	// HandledAt - Indicates where the exception was handled at
	HandledAt *string `json:"handledAt,omitempty"`
	// Assembly - The assembly which threw the exception
	Assembly *string `json:"assembly,omitempty"`
	// Method - The method that threw the exception
	Method *string `json:"method,omitempty"`
	// Message - The message of the exception
	Message *string `json:"message,omitempty"`
	// Type - The type of the exception
	Type *string `json:"type,omitempty"`
	// OuterType - The outer type of the exception
	OuterType *string `json:"outerType,omitempty"`
	// OuterMethod - The outer method of the exception
	OuterMethod *string `json:"outerMethod,omitempty"`
	// OuterAssembly - The outer assmebly of the exception
	OuterAssembly *string `json:"outerAssembly,omitempty"`
	// OuterMessage - The outer message of the exception
	OuterMessage *string `json:"outerMessage,omitempty"`
	// InnermostType - The inner most type of the exception
	InnermostType *string `json:"innermostType,omitempty"`
	// InnermostMessage - The inner most message of the exception
	InnermostMessage *string `json:"innermostMessage,omitempty"`
	// InnermostMethod - The inner most method of the exception
	InnermostMethod *string `json:"innermostMethod,omitempty"`
	// InnermostAssembly - The inner most assembly of the exception
	InnermostAssembly *string `json:"innermostAssembly,omitempty"`
	// Details - The details of the exception
	Details *[]EventsExceptionDetailType `json:"details,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsExceptionInfoType the exception info

type EventsExceptionResultType deprecated

type EventsExceptionResultType struct {
	Exception *EventsExceptionInfoType `json:"exception,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsExceptionResultType an exception result

func (EventsExceptionResultType) AsBasicEventsResultDataType deprecated

func (eert EventsExceptionResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsAvailabilityResultResultType deprecated

func (eert EventsExceptionResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsBrowserTimingResultType deprecated

func (eert EventsExceptionResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsCustomEventResultType deprecated

func (eert EventsExceptionResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsCustomMetricResultType deprecated

func (eert EventsExceptionResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsDependencyResultType deprecated

func (eert EventsExceptionResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsExceptionResultType deprecated

func (eert EventsExceptionResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsPageViewResultType deprecated

func (eert EventsExceptionResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsPerformanceCounterResultType deprecated

func (eert EventsExceptionResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsRequestResultType deprecated

func (eert EventsExceptionResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsResultDataType deprecated

func (eert EventsExceptionResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) AsEventsTraceResultType deprecated

func (eert EventsExceptionResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsExceptionResultType.

func (EventsExceptionResultType) MarshalJSON deprecated

func (eert EventsExceptionResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsExceptionResultType.

type EventsOperationInfoType deprecated

type EventsOperationInfoType struct {
	// Name - Name of the operation
	Name *string `json:"name,omitempty"`
	// ID - ID of the operation
	ID *string `json:"id,omitempty"`
	// ParentID - Parent ID of the operation
	ParentID *string `json:"parentId,omitempty"`
	// SyntheticSource - Synthetic source of the operation
	SyntheticSource *string `json:"syntheticSource,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsOperationInfoType operation info for an event result

type EventsPageViewInfoType deprecated

type EventsPageViewInfoType struct {
	// Name - The name of the page
	Name *string `json:"name,omitempty"`
	// URL - The URL of the page
	URL *string `json:"url,omitempty"`
	// Duration - The duration of the page view
	Duration *string `json:"duration,omitempty"`
	// PerformanceBucket - The performance bucket of the page view
	PerformanceBucket *string `json:"performanceBucket,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsPageViewInfoType the page view information

type EventsPageViewResultType deprecated

type EventsPageViewResultType struct {
	PageView *EventsPageViewInfoType `json:"pageView,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsPageViewResultType a page view result

func (EventsPageViewResultType) AsBasicEventsResultDataType deprecated

func (epvrt EventsPageViewResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsAvailabilityResultResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsBrowserTimingResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsCustomEventResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsCustomMetricResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsDependencyResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsExceptionResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsPageViewResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsPerformanceCounterResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsRequestResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsResultDataType deprecated

func (epvrt EventsPageViewResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) AsEventsTraceResultType deprecated

func (epvrt EventsPageViewResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsPageViewResultType.

func (EventsPageViewResultType) MarshalJSON deprecated

func (epvrt EventsPageViewResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsPageViewResultType.

type EventsPerformanceCounterInfoType deprecated

type EventsPerformanceCounterInfoType struct {
	// Value - The value of the performance counter
	Value *int64 `json:"value,omitempty"`
	// Name - The name of the performance counter
	Name *string `json:"name,omitempty"`
	// Category - The category of the performance counter
	Category *string `json:"category,omitempty"`
	// Counter - The counter of the performance counter
	Counter *string `json:"counter,omitempty"`
	// InstanceName - The instance name of the performance counter
	InstanceName *string `json:"instanceName,omitempty"`
	// Instance - The instance of the performance counter
	Instance *string `json:"instance,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsPerformanceCounterInfoType the performance counter info

type EventsPerformanceCounterResultType deprecated

type EventsPerformanceCounterResultType struct {
	PerformanceCounter *EventsPerformanceCounterInfoType `json:"performanceCounter,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsPerformanceCounterResultType a performance counter result

func (EventsPerformanceCounterResultType) AsBasicEventsResultDataType deprecated

func (epcrt EventsPerformanceCounterResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsAvailabilityResultResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsBrowserTimingResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsCustomEventResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsCustomMetricResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsDependencyResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsExceptionResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsPageViewResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsPerformanceCounterResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsRequestResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsResultDataType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) AsEventsTraceResultType deprecated

func (epcrt EventsPerformanceCounterResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsPerformanceCounterResultType.

func (EventsPerformanceCounterResultType) MarshalJSON deprecated

func (epcrt EventsPerformanceCounterResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsPerformanceCounterResultType.

type EventsRequestInfoType deprecated

type EventsRequestInfoType struct {
	// Name - The name of the request
	Name *string `json:"name,omitempty"`
	// URL - The URL of the request
	URL *string `json:"url,omitempty"`
	// Success - Indicates if the request was successful
	Success *string `json:"success,omitempty"`
	// Duration - The duration of the request
	Duration *float64 `json:"duration,omitempty"`
	// PerformanceBucket - The performance bucket of the request
	PerformanceBucket *string `json:"performanceBucket,omitempty"`
	// ResultCode - The result code of the request
	ResultCode *string `json:"resultCode,omitempty"`
	// Source - The source of the request
	Source *string `json:"source,omitempty"`
	// ID - The ID of the request
	ID *string `json:"id,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsRequestInfoType the request info

type EventsRequestResultType deprecated

type EventsRequestResultType struct {
	Request *EventsRequestInfoType `json:"request,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsRequestResultType a request result

func (EventsRequestResultType) AsBasicEventsResultDataType deprecated

func (errt EventsRequestResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsAvailabilityResultResultType deprecated

func (errt EventsRequestResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsBrowserTimingResultType deprecated

func (errt EventsRequestResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsCustomEventResultType deprecated

func (errt EventsRequestResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsCustomMetricResultType deprecated

func (errt EventsRequestResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsDependencyResultType deprecated

func (errt EventsRequestResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsExceptionResultType deprecated

func (errt EventsRequestResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsPageViewResultType deprecated

func (errt EventsRequestResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsPerformanceCounterResultType deprecated

func (errt EventsRequestResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsRequestResultType deprecated

func (errt EventsRequestResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsResultDataType deprecated

func (errt EventsRequestResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) AsEventsTraceResultType deprecated

func (errt EventsRequestResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsRequestResultType.

func (EventsRequestResultType) MarshalJSON deprecated

func (errt EventsRequestResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsRequestResultType.

type EventsResultDataCustomDimensionsType deprecated

type EventsResultDataCustomDimensionsType struct {
	AdditionalProperties interface{} `json:"additionalProperties,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsResultDataCustomDimensionsType custom dimensions of the event

type EventsResultDataCustomMeasurementsType deprecated

type EventsResultDataCustomMeasurementsType struct {
	AdditionalProperties interface{} `json:"additionalProperties,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsResultDataCustomMeasurementsType custom measurements of the event

type EventsResultDataType deprecated

type EventsResultDataType struct {
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsResultDataType events query result data.

func (EventsResultDataType) AsBasicEventsResultDataType deprecated

func (erdt EventsResultDataType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsAvailabilityResultResultType deprecated

func (erdt EventsResultDataType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsBrowserTimingResultType deprecated

func (erdt EventsResultDataType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsCustomEventResultType deprecated

func (erdt EventsResultDataType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsCustomMetricResultType deprecated

func (erdt EventsResultDataType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsDependencyResultType deprecated

func (erdt EventsResultDataType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsExceptionResultType deprecated

func (erdt EventsResultDataType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsPageViewResultType deprecated

func (erdt EventsResultDataType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsPerformanceCounterResultType deprecated

func (erdt EventsResultDataType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsRequestResultType deprecated

func (erdt EventsResultDataType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsResultDataType deprecated

func (erdt EventsResultDataType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) AsEventsTraceResultType deprecated

func (erdt EventsResultDataType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsResultDataType.

func (EventsResultDataType) MarshalJSON deprecated

func (erdt EventsResultDataType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsResultDataType.

type EventsResultType deprecated

type EventsResultType struct {
	// AiMessages - OData messages for this response.
	AiMessages *[]ErrorInfoType          `json:"@ai.messages,omitempty"`
	Value      BasicEventsResultDataType `json:"value,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsResultType an event query result.

func (*EventsResultType) UnmarshalJSON deprecated

func (ert *EventsResultType) UnmarshalJSON(body []byte) error

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. UnmarshalJSON is the custom unmarshaler for EventsResultType struct.

type EventsResultsType deprecated

type EventsResultsType struct {
	autorest.Response `json:"-"`
	// OdataContext - OData context metadata endpoint for this response
	OdataContext *string `json:"@odata.context,omitempty"`
	// AiMessages - OData messages for this response.
	AiMessages *[]ErrorInfoType `json:"@ai.messages,omitempty"`
	// Value - Contents of the events query result.
	Value *[]BasicEventsResultDataType `json:"value,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsResultsType an events query result.

func (*EventsResultsType) UnmarshalJSON deprecated

func (ert *EventsResultsType) UnmarshalJSON(body []byte) error

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. UnmarshalJSON is the custom unmarshaler for EventsResultsType struct.

type EventsSessionInfoType deprecated

type EventsSessionInfoType struct {
	// ID - ID of the session
	ID *string `json:"id,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsSessionInfoType session info for an event result

type EventsTraceInfoType deprecated

type EventsTraceInfoType struct {
	// Message - The trace message
	Message *string `json:"message,omitempty"`
	// SeverityLevel - The trace severity level
	SeverityLevel *int32 `json:"severityLevel,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsTraceInfoType the trace information

type EventsTraceResultType deprecated

type EventsTraceResultType struct {
	Trace *EventsTraceInfoType `json:"trace,omitempty"`
	// ID - The unique ID for this event.
	ID *string `json:"id,omitempty"`
	// Count - Count of the event
	Count *int64 `json:"count,omitempty"`
	// Timestamp - Timestamp of the event
	Timestamp *date.Time `json:"timestamp,omitempty"`
	// CustomDimensions - Custom dimensions of the event
	CustomDimensions *EventsResultDataCustomDimensionsType `json:"customDimensions,omitempty"`
	// CustomMeasurements - Custom measurements of the event
	CustomMeasurements *EventsResultDataCustomMeasurementsType `json:"customMeasurements,omitempty"`
	// Operation - Operation info of the event
	Operation *EventsOperationInfoType `json:"operation,omitempty"`
	// Session - Session info of the event
	Session *EventsSessionInfoType `json:"session,omitempty"`
	// User - User info of the event
	User *EventsUserInfoType `json:"user,omitempty"`
	// Cloud - Cloud info of the event
	Cloud *EventsCloudInfoType `json:"cloud,omitempty"`
	// Ai - AI info of the event
	Ai *EventsAiInfoType `json:"ai,omitempty"`
	// Application - Application info of the event
	Application *EventsApplicationInfoType `json:"application,omitempty"`
	// Client - Client info of the event
	Client *EventsClientInfoType `json:"client,omitempty"`
	// Type - Possible values include: 'TypeEventsResultData', 'TypeTrace', 'TypeCustomEvent', 'TypePageView', 'TypeBrowserTiming', 'TypeRequest', 'TypeDependency', 'TypeException', 'TypeAvailabilityResult', 'TypePerformanceCounter', 'TypeCustomMetric'
	Type TypeEnum `json:"type,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsTraceResultType a trace result

func (EventsTraceResultType) AsBasicEventsResultDataType deprecated

func (etrt EventsTraceResultType) AsBasicEventsResultDataType() (BasicEventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsBasicEventsResultDataType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsAvailabilityResultResultType deprecated

func (etrt EventsTraceResultType) AsEventsAvailabilityResultResultType() (*EventsAvailabilityResultResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsAvailabilityResultResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsBrowserTimingResultType deprecated

func (etrt EventsTraceResultType) AsEventsBrowserTimingResultType() (*EventsBrowserTimingResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsBrowserTimingResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsCustomEventResultType deprecated

func (etrt EventsTraceResultType) AsEventsCustomEventResultType() (*EventsCustomEventResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomEventResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsCustomMetricResultType deprecated

func (etrt EventsTraceResultType) AsEventsCustomMetricResultType() (*EventsCustomMetricResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsCustomMetricResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsDependencyResultType deprecated

func (etrt EventsTraceResultType) AsEventsDependencyResultType() (*EventsDependencyResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsDependencyResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsExceptionResultType deprecated

func (etrt EventsTraceResultType) AsEventsExceptionResultType() (*EventsExceptionResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsExceptionResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsPageViewResultType deprecated

func (etrt EventsTraceResultType) AsEventsPageViewResultType() (*EventsPageViewResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPageViewResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsPerformanceCounterResultType deprecated

func (etrt EventsTraceResultType) AsEventsPerformanceCounterResultType() (*EventsPerformanceCounterResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsPerformanceCounterResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsRequestResultType deprecated

func (etrt EventsTraceResultType) AsEventsRequestResultType() (*EventsRequestResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsRequestResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsResultDataType deprecated

func (etrt EventsTraceResultType) AsEventsResultDataType() (*EventsResultDataType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsResultDataType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) AsEventsTraceResultType deprecated

func (etrt EventsTraceResultType) AsEventsTraceResultType() (*EventsTraceResultType, bool)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. AsEventsTraceResultType is the BasicEventsResultDataType implementation for EventsTraceResultType.

func (EventsTraceResultType) MarshalJSON deprecated

func (etrt EventsTraceResultType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for EventsTraceResultType.

type EventsUserInfoType deprecated

type EventsUserInfoType struct {
	// ID - ID of the user
	ID *string `json:"id,omitempty"`
	// AccountID - Account ID of the user
	AccountID *string `json:"accountId,omitempty"`
	// AuthenticatedID - Authenticated ID of the user
	AuthenticatedID *string `json:"authenticatedId,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. EventsUserInfoType user info for an event result

type ListMetricsResultsItemType deprecated

type ListMetricsResultsItemType struct {
	autorest.Response `json:"-"`
	Value             *[]MetricsResultsItemType `json:"value,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. ListMetricsResultsItemType ...

type MetricIDEnum deprecated

type MetricIDEnum string

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricIDEnum enumerates the values for metric id enum.

const (
	// AvailabilityResultsavailabilityPercentage ...
	AvailabilityResultsavailabilityPercentage MetricIDEnum = "availabilityResults/availabilityPercentage"
	// AvailabilityResultsduration ...
	AvailabilityResultsduration MetricIDEnum = "availabilityResults/duration"
	// BillingtelemetryCount ...
	BillingtelemetryCount MetricIDEnum = "billing/telemetryCount"
	// ClientnetworkDuration ...
	ClientnetworkDuration MetricIDEnum = "client/networkDuration"
	// ClientprocessingDuration ...
	ClientprocessingDuration MetricIDEnum = "client/processingDuration"
	// ClientreceiveDuration ...
	ClientreceiveDuration MetricIDEnum = "client/receiveDuration"
	// ClientsendDuration ...
	ClientsendDuration MetricIDEnum = "client/sendDuration"
	// ClienttotalDuration ...
	ClienttotalDuration MetricIDEnum = "client/totalDuration"
	// CustomEventscount ...
	CustomEventscount MetricIDEnum = "customEvents/count"
	// Dependenciescount ...
	Dependenciescount MetricIDEnum = "dependencies/count"
	// Dependenciesduration ...
	Dependenciesduration MetricIDEnum = "dependencies/duration"
	// Dependenciesfailed ...
	Dependenciesfailed MetricIDEnum = "dependencies/failed"
	// Exceptionsbrowser ...
	Exceptionsbrowser MetricIDEnum = "exceptions/browser"
	// Exceptionscount ...
	Exceptionscount MetricIDEnum = "exceptions/count"
	// Exceptionsserver ...
	Exceptionsserver MetricIDEnum = "exceptions/server"
	// PageViewscount ...
	PageViewscount MetricIDEnum = "pageViews/count"
	// PageViewsduration ...
	PageViewsduration MetricIDEnum = "pageViews/duration"
	// PerformanceCountersexceptionsPerSecond ...
	PerformanceCountersexceptionsPerSecond MetricIDEnum = "performanceCounters/exceptionsPerSecond"
	// PerformanceCountersmemoryAvailableBytes ...
	PerformanceCountersmemoryAvailableBytes MetricIDEnum = "performanceCounters/memoryAvailableBytes"
	// PerformanceCountersprocessCPUPercentage ...
	PerformanceCountersprocessCPUPercentage MetricIDEnum = "performanceCounters/processCpuPercentage"
	// PerformanceCountersprocessIOBytesPerSecond ...
	PerformanceCountersprocessIOBytesPerSecond MetricIDEnum = "performanceCounters/processIOBytesPerSecond"
	// PerformanceCountersprocessorCPUPercentage ...
	PerformanceCountersprocessorCPUPercentage MetricIDEnum = "performanceCounters/processorCpuPercentage"
	// PerformanceCountersprocessPrivateBytes ...
	PerformanceCountersprocessPrivateBytes MetricIDEnum = "performanceCounters/processPrivateBytes"
	// PerformanceCountersrequestExecutionTime ...
	PerformanceCountersrequestExecutionTime MetricIDEnum = "performanceCounters/requestExecutionTime"
	// PerformanceCountersrequestsInQueue ...
	PerformanceCountersrequestsInQueue MetricIDEnum = "performanceCounters/requestsInQueue"
	// PerformanceCountersrequestsPerSecond ...
	PerformanceCountersrequestsPerSecond MetricIDEnum = "performanceCounters/requestsPerSecond"
	// Requestscount ...
	Requestscount MetricIDEnum = "requests/count"
	// Requestsduration ...
	Requestsduration MetricIDEnum = "requests/duration"
	// Requestsfailed ...
	Requestsfailed MetricIDEnum = "requests/failed"
	// Sessionscount ...
	Sessionscount MetricIDEnum = "sessions/count"
	// Usersauthenticated ...
	Usersauthenticated MetricIDEnum = "users/authenticated"
	// Userscount ...
	Userscount MetricIDEnum = "users/count"
)

type MetricsPostBodySchemaParametersType deprecated

type MetricsPostBodySchemaParametersType struct {
	// MetricID - Possible values include: 'Requestscount', 'Requestsduration', 'Requestsfailed', 'Userscount', 'Usersauthenticated', 'PageViewscount', 'PageViewsduration', 'ClientprocessingDuration', 'ClientreceiveDuration', 'ClientnetworkDuration', 'ClientsendDuration', 'ClienttotalDuration', 'Dependenciescount', 'Dependenciesfailed', 'Dependenciesduration', 'Exceptionscount', 'Exceptionsbrowser', 'Exceptionsserver', 'Sessionscount', 'PerformanceCountersrequestExecutionTime', 'PerformanceCountersrequestsPerSecond', 'PerformanceCountersrequestsInQueue', 'PerformanceCountersmemoryAvailableBytes', 'PerformanceCountersexceptionsPerSecond', 'PerformanceCountersprocessCPUPercentage', 'PerformanceCountersprocessIOBytesPerSecond', 'PerformanceCountersprocessPrivateBytes', 'PerformanceCountersprocessorCPUPercentage', 'AvailabilityResultsavailabilityPercentage', 'AvailabilityResultsduration', 'BillingtelemetryCount', 'CustomEventscount'
	MetricID    MetricIDEnum `json:"metricId,omitempty"`
	Timespan    *string      `json:"timespan,omitempty"`
	Aggregation *[]string    `json:"aggregation,omitempty"`
	Interval    *string      `json:"interval,omitempty"`
	Segment     *[]string    `json:"segment,omitempty"`
	Top         *int32       `json:"top,omitempty"`
	Orderby     *string      `json:"orderby,omitempty"`
	Filter      *string      `json:"filter,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricsPostBodySchemaParametersType the parameters for a single metrics query

type MetricsPostBodySchemaType deprecated

type MetricsPostBodySchemaType struct {
	// ID - An identifier for this query.  Must be unique within the post body of the request.  This identifier will be the 'id' property of the response object representing this query.
	ID *string `json:"id,omitempty"`
	// Parameters - The parameters for a single metrics query
	Parameters *MetricsPostBodySchemaParametersType `json:"parameters,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricsPostBodySchemaType a metric request

type MetricsResultInfoType deprecated

type MetricsResultInfoType struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Start - Start time of the metric.
	Start *date.Time `json:"start,omitempty"`
	// End - Start time of the metric.
	End *date.Time `json:"end,omitempty"`
	// Interval - The interval used to segment the metric data.
	Interval *string `json:"interval,omitempty"`
	// Segments - Segmented metric data (if segmented).
	Segments *[]MetricsSegmentInfoType `json:"segments,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricsResultInfoType a metric result data.

func (MetricsResultInfoType) MarshalJSON deprecated

func (mrit MetricsResultInfoType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for MetricsResultInfoType.

type MetricsResultType deprecated

type MetricsResultType struct {
	autorest.Response `json:"-"`
	Value             *MetricsResultInfoType `json:"value,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricsResultType a metric result.

type MetricsResultsItemType deprecated

type MetricsResultsItemType struct {
	// ID - The specified ID for this metric.
	ID *string `json:"id,omitempty"`
	// Status - The HTTP status code of this metric query.
	Status *int32 `json:"status,omitempty"`
	// Body - The results of this metric query.
	Body *MetricsResultType `json:"body,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricsResultsItemType ...

type MetricsSegmentInfoType deprecated

type MetricsSegmentInfoType struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Start - Start time of the metric segment (only when an interval was specified).
	Start *date.Time `json:"start,omitempty"`
	// End - Start time of the metric segment (only when an interval was specified).
	End *date.Time `json:"end,omitempty"`
	// Segments - Segmented metric data (if further segmented).
	Segments *[]MetricsSegmentInfoType `json:"segments,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MetricsSegmentInfoType a metric segment

func (MetricsSegmentInfoType) MarshalJSON deprecated

func (msit MetricsSegmentInfoType) MarshalJSON() ([]byte, error)

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. MarshalJSON is the custom marshaler for MetricsSegmentInfoType.

type QueryBodyType deprecated

type QueryBodyType struct {
	// Query - The query to execute.
	Query *string `json:"query,omitempty"`
	// Timespan - Optional. The timespan over which to query data. This is an ISO8601 time period value.  This timespan is applied in addition to any that are specified in the query expression.
	Timespan *string `json:"timespan,omitempty"`
	// Applications - A list of applications that are included in the query.
	Applications *[]string `json:"applications,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. QueryBodyType query request body

type QueryResultsType deprecated

type QueryResultsType struct {
	autorest.Response `json:"-"`
	// Tables - The list of tables, columns and rows.
	Tables *[]TableType `json:"tables,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. QueryResultsType contains the tables, columns & rows resulting from a query.

type SetObjectType deprecated

type SetObjectType struct {
	autorest.Response `json:"-"`
	Value             interface{} `json:"value,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. SetObjectType ...

type TableType deprecated

type TableType struct {
	// Name - The name of the table.
	Name *string `json:"name,omitempty"`
	// Columns - The list of columns in this table.
	Columns *[]ColumnType `json:"columns,omitempty"`
	// Rows - The resulting rows from this query.
	Rows *[][]interface{} `json:"rows,omitempty"`
	// PrimaryTimeStampColumn - name of column in database containing primary
	PrimaryTimeStampColumn interface{} `json:"primaryTimeStampColumn,omitempty"`
}

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. TableType contains the columns and rows for one table in a query response.

type TypeEnum deprecated

type TypeEnum string

Deprecated: Please use github.com/Azure/azure-sdk-for-go/services/appinsights/v1/insights instead. TypeEnum enumerates the values for type enum.

const (
	// TypeAvailabilityResult ...
	TypeAvailabilityResult TypeEnum = "availabilityResult"
	// TypeBrowserTiming ...
	TypeBrowserTiming TypeEnum = "browserTiming"
	// TypeCustomEvent ...
	TypeCustomEvent TypeEnum = "customEvent"
	// TypeCustomMetric ...
	TypeCustomMetric TypeEnum = "customMetric"
	// TypeDependency ...
	TypeDependency TypeEnum = "dependency"
	// TypeEventsResultData ...
	TypeEventsResultData TypeEnum = "eventsResultData"
	// TypeException ...
	TypeException TypeEnum = "exception"
	// TypePageView ...
	TypePageView TypeEnum = "pageView"
	// TypePerformanceCounter ...
	TypePerformanceCounter TypeEnum = "performanceCounter"
	// TypeRequest ...
	TypeRequest TypeEnum = "request"
	// TypeTrace ...
	TypeTrace TypeEnum = "trace"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL