Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ApplicationInsights

import { ApplicationInsights } from "https://aws-api.deno.dev/v0.4/services/applicationinsights.ts?docs=full";
class ApplicationInsights {
constructor(apiFactory: client.ApiFactory);
async createApplication(params?: CreateApplicationRequest, opts?: client.RequestOptions): Promise<CreateApplicationResponse>;
async createComponent(params: CreateComponentRequest, opts?: client.RequestOptions): Promise<void>;
async createLogPattern(params: CreateLogPatternRequest, opts?: client.RequestOptions): Promise<CreateLogPatternResponse>;
async deleteApplication(params: DeleteApplicationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteComponent(params: DeleteComponentRequest, opts?: client.RequestOptions): Promise<void>;
async deleteLogPattern(params: DeleteLogPatternRequest, opts?: client.RequestOptions): Promise<void>;
async describeApplication(params: DescribeApplicationRequest, opts?: client.RequestOptions): Promise<DescribeApplicationResponse>;
async describeComponent(params: DescribeComponentRequest, opts?: client.RequestOptions): Promise<DescribeComponentResponse>;
async describeComponentConfiguration(params: DescribeComponentConfigurationRequest, opts?: client.RequestOptions): Promise<DescribeComponentConfigurationResponse>;
async describeLogPattern(params: DescribeLogPatternRequest, opts?: client.RequestOptions): Promise<DescribeLogPatternResponse>;
async describeObservation(params: DescribeObservationRequest, opts?: client.RequestOptions): Promise<DescribeObservationResponse>;
async describeProblem(params: DescribeProblemRequest, opts?: client.RequestOptions): Promise<DescribeProblemResponse>;
async describeProblemObservations(params: DescribeProblemObservationsRequest, opts?: client.RequestOptions): Promise<DescribeProblemObservationsResponse>;
async listApplications(params?: ListApplicationsRequest, opts?: client.RequestOptions): Promise<ListApplicationsResponse>;
async listComponents(params: ListComponentsRequest, opts?: client.RequestOptions): Promise<ListComponentsResponse>;
async listConfigurationHistory(params?: ListConfigurationHistoryRequest, opts?: client.RequestOptions): Promise<ListConfigurationHistoryResponse>;
async listLogPatterns(params: ListLogPatternsRequest, opts?: client.RequestOptions): Promise<ListLogPatternsResponse>;
async listLogPatternSets(params: ListLogPatternSetsRequest, opts?: client.RequestOptions): Promise<ListLogPatternSetsResponse>;
async listProblems(params?: ListProblemsRequest, opts?: client.RequestOptions): Promise<ListProblemsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async updateApplication(params: UpdateApplicationRequest, opts?: client.RequestOptions): Promise<UpdateApplicationResponse>;
async updateComponent(params: UpdateComponentRequest, opts?: client.RequestOptions): Promise<void>;
async updateComponentConfiguration(params: UpdateComponentConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async updateLogPattern(params: UpdateLogPatternRequest, opts?: client.RequestOptions): Promise<UpdateLogPatternResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new ApplicationInsights(apiFactory: client.ApiFactory)
[src]

§Methods

§

Adds an application that is created from a resource group.

§
createComponent(params: CreateComponentRequest, opts?: client.RequestOptions): Promise<void>
[src]

Creates a custom component by grouping similar standalone instances to monitor.

§

Adds an log pattern to a LogPatternSet.

§
deleteApplication(params: DeleteApplicationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes the specified application from monitoring. Does not delete the application.

§
deleteComponent(params: DeleteComponentRequest, opts?: client.RequestOptions): Promise<void>
[src]

Ungroups a custom component. When you ungroup custom components, all applicable monitors that are set up for the component are removed and the instances revert to their standalone status.

§
deleteLogPattern(params: DeleteLogPatternRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes the specified log pattern from a LogPatternSet.

§

Describes the application.

§

Describes a component and lists the resources that are grouped together in a component.

§

Describes the monitoring configuration of the component.

§

Describes the recommended monitoring configuration of the component.

§

Describe a specific log pattern from a LogPatternSet.

§

Describes an anomaly or error with the application.

§

Describes an application problem.

§

Describes the anomalies or errors associated with the problem.

§

Lists the IDs of the applications that you are monitoring.

§

Lists the auto-grouped, standalone, and custom components of the application.

§

Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are:

  • INFO: creating a new alarm or updating an alarm threshold.
  • WARN: alarm not created due to insufficient data points used to predict thresholds.
  • ERROR: alarm not created due to permission errors or exceeding quotas.
§

Lists the log patterns in the specific log LogPatternSet.

§

Lists the log pattern sets in the specific application.

§

Lists the problems with your application.

§

Retrieve a list of the tags (keys and values) that are associated with a specified application. A tag is a label that you optionally define and associate with an application. Each tag consists of a required tag key and an optional associated tag value. A tag key is a general label that acts as a category for more specific tag values. A tag value acts as a descriptor within a tag key.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Add one or more tags (keys and values) to a specified application. A tag is a label that you optionally define and associate with an application. Tags can help you categorize and manage application in different ways, such as by purpose, owner, environment, or other criteria.

Each tag consists of a required tag key and an associated tag value, both of which you define. A tag key is a general label that acts as a category for more specific tag values. A tag value acts as a descriptor within a tag key.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Remove one or more tags (keys and values) from a specified application.

§

Updates the application.

§
updateComponent(params: UpdateComponentRequest, opts?: client.RequestOptions): Promise<void>
[src]

Updates the custom component name and/or the list of resources that make up the component.

§
updateComponentConfiguration(params: UpdateComponentConfigurationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Updates the monitoring configurations for the component. The configuration input parameter is an escaped JSON of the configuration and should match the schema of what is returned by DescribeComponentConfigurationRecommendation.

§

Adds a log pattern to a LogPatternSet.

§Static Properties