@aws-sdk/client-application-insights 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/ApplicationInsights.js +31 -378
- package/dist-cjs/protocols/Aws_json1_1.js +213 -730
- package/dist-es/ApplicationInsights.js +31 -378
- package/dist-es/protocols/Aws_json1_1.js +214 -731
- package/dist-types/ApplicationInsights.d.ts +45 -102
- package/dist-types/ts3.4/ApplicationInsights.d.ts +4 -1
- package/package.json +6 -6
|
@@ -27,241 +27,184 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
|
|
|
27
27
|
import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./commands/UpdateComponentCommand";
|
|
28
28
|
import { UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput } from "./commands/UpdateComponentConfigurationCommand";
|
|
29
29
|
import { UpdateLogPatternCommandInput, UpdateLogPatternCommandOutput } from "./commands/UpdateLogPatternCommand";
|
|
30
|
-
|
|
31
|
-
* @public
|
|
32
|
-
* <fullname>Amazon CloudWatch Application Insights</fullname>
|
|
33
|
-
* <p> Amazon CloudWatch Application Insights is a service that helps you detect common
|
|
34
|
-
* problems with your applications. It enables you to pinpoint the source of issues in your
|
|
35
|
-
* applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL
|
|
36
|
-
* Server), by providing key insights into detected problems.</p>
|
|
37
|
-
* <p>After you onboard your application, CloudWatch Application Insights identifies,
|
|
38
|
-
* recommends, and sets up metrics and logs. It continuously analyzes and correlates your
|
|
39
|
-
* metrics and logs for unusual behavior to surface actionable problems with your application.
|
|
40
|
-
* For example, if your application is slow and unresponsive and leading to HTTP 500 errors in
|
|
41
|
-
* your Application Load Balancer (ALB), Application Insights informs you that a memory
|
|
42
|
-
* pressure problem with your SQL Server database is occurring. It bases this analysis on
|
|
43
|
-
* impactful metrics and log errors. </p>
|
|
44
|
-
*/
|
|
45
|
-
export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
30
|
+
export interface ApplicationInsights {
|
|
46
31
|
/**
|
|
47
|
-
* @
|
|
48
|
-
* <p>Adds an application that is created from a resource group.</p>
|
|
32
|
+
* @see {@link CreateApplicationCommand}
|
|
49
33
|
*/
|
|
50
34
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
51
35
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
52
36
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
53
37
|
/**
|
|
54
|
-
* @
|
|
55
|
-
* <p>Creates a custom component by grouping similar standalone instances to monitor.</p>
|
|
38
|
+
* @see {@link CreateComponentCommand}
|
|
56
39
|
*/
|
|
57
40
|
createComponent(args: CreateComponentCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentCommandOutput>;
|
|
58
41
|
createComponent(args: CreateComponentCommandInput, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
|
|
59
42
|
createComponent(args: CreateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
|
|
60
43
|
/**
|
|
61
|
-
* @
|
|
62
|
-
* <p>Adds an log pattern to a <code>LogPatternSet</code>.</p>
|
|
44
|
+
* @see {@link CreateLogPatternCommand}
|
|
63
45
|
*/
|
|
64
46
|
createLogPattern(args: CreateLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<CreateLogPatternCommandOutput>;
|
|
65
47
|
createLogPattern(args: CreateLogPatternCommandInput, cb: (err: any, data?: CreateLogPatternCommandOutput) => void): void;
|
|
66
48
|
createLogPattern(args: CreateLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLogPatternCommandOutput) => void): void;
|
|
67
49
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* <p>Removes the specified application from monitoring. Does not delete the
|
|
70
|
-
* application.</p>
|
|
50
|
+
* @see {@link DeleteApplicationCommand}
|
|
71
51
|
*/
|
|
72
52
|
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
73
53
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
74
54
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
75
55
|
/**
|
|
76
|
-
* @
|
|
77
|
-
* <p>Ungroups a custom component. When you ungroup custom components, all applicable monitors
|
|
78
|
-
* that are set up for the component are removed and the instances revert to their standalone
|
|
79
|
-
* status.</p>
|
|
56
|
+
* @see {@link DeleteComponentCommand}
|
|
80
57
|
*/
|
|
81
58
|
deleteComponent(args: DeleteComponentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteComponentCommandOutput>;
|
|
82
59
|
deleteComponent(args: DeleteComponentCommandInput, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
|
|
83
60
|
deleteComponent(args: DeleteComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
|
|
84
61
|
/**
|
|
85
|
-
* @
|
|
86
|
-
* <p>Removes the specified log pattern from a <code>LogPatternSet</code>.</p>
|
|
62
|
+
* @see {@link DeleteLogPatternCommand}
|
|
87
63
|
*/
|
|
88
64
|
deleteLogPattern(args: DeleteLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLogPatternCommandOutput>;
|
|
89
65
|
deleteLogPattern(args: DeleteLogPatternCommandInput, cb: (err: any, data?: DeleteLogPatternCommandOutput) => void): void;
|
|
90
66
|
deleteLogPattern(args: DeleteLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLogPatternCommandOutput) => void): void;
|
|
91
67
|
/**
|
|
92
|
-
* @
|
|
93
|
-
* <p>Describes the application.</p>
|
|
68
|
+
* @see {@link DescribeApplicationCommand}
|
|
94
69
|
*/
|
|
95
70
|
describeApplication(args: DescribeApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicationCommandOutput>;
|
|
96
71
|
describeApplication(args: DescribeApplicationCommandInput, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
97
72
|
describeApplication(args: DescribeApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicationCommandOutput) => void): void;
|
|
98
73
|
/**
|
|
99
|
-
* @
|
|
100
|
-
* <p>Describes a component and lists the resources that are grouped together in a
|
|
101
|
-
* component.</p>
|
|
74
|
+
* @see {@link DescribeComponentCommand}
|
|
102
75
|
*/
|
|
103
76
|
describeComponent(args: DescribeComponentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComponentCommandOutput>;
|
|
104
77
|
describeComponent(args: DescribeComponentCommandInput, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
|
|
105
78
|
describeComponent(args: DescribeComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
|
|
106
79
|
/**
|
|
107
|
-
* @
|
|
108
|
-
* <p>Describes the monitoring configuration of the component.</p>
|
|
80
|
+
* @see {@link DescribeComponentConfigurationCommand}
|
|
109
81
|
*/
|
|
110
82
|
describeComponentConfiguration(args: DescribeComponentConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComponentConfigurationCommandOutput>;
|
|
111
83
|
describeComponentConfiguration(args: DescribeComponentConfigurationCommandInput, cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void): void;
|
|
112
84
|
describeComponentConfiguration(args: DescribeComponentConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void): void;
|
|
113
85
|
/**
|
|
114
|
-
* @
|
|
115
|
-
* <p>Describes the recommended monitoring configuration of the component.</p>
|
|
86
|
+
* @see {@link DescribeComponentConfigurationRecommendationCommand}
|
|
116
87
|
*/
|
|
117
88
|
describeComponentConfigurationRecommendation(args: DescribeComponentConfigurationRecommendationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComponentConfigurationRecommendationCommandOutput>;
|
|
118
89
|
describeComponentConfigurationRecommendation(args: DescribeComponentConfigurationRecommendationCommandInput, cb: (err: any, data?: DescribeComponentConfigurationRecommendationCommandOutput) => void): void;
|
|
119
90
|
describeComponentConfigurationRecommendation(args: DescribeComponentConfigurationRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentConfigurationRecommendationCommandOutput) => void): void;
|
|
120
91
|
/**
|
|
121
|
-
* @
|
|
122
|
-
* <p>Describe a specific log pattern from a <code>LogPatternSet</code>.</p>
|
|
92
|
+
* @see {@link DescribeLogPatternCommand}
|
|
123
93
|
*/
|
|
124
94
|
describeLogPattern(args: DescribeLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLogPatternCommandOutput>;
|
|
125
95
|
describeLogPattern(args: DescribeLogPatternCommandInput, cb: (err: any, data?: DescribeLogPatternCommandOutput) => void): void;
|
|
126
96
|
describeLogPattern(args: DescribeLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLogPatternCommandOutput) => void): void;
|
|
127
97
|
/**
|
|
128
|
-
* @
|
|
129
|
-
* <p>Describes an anomaly or error with the application.</p>
|
|
98
|
+
* @see {@link DescribeObservationCommand}
|
|
130
99
|
*/
|
|
131
100
|
describeObservation(args: DescribeObservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObservationCommandOutput>;
|
|
132
101
|
describeObservation(args: DescribeObservationCommandInput, cb: (err: any, data?: DescribeObservationCommandOutput) => void): void;
|
|
133
102
|
describeObservation(args: DescribeObservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObservationCommandOutput) => void): void;
|
|
134
103
|
/**
|
|
135
|
-
* @
|
|
136
|
-
* <p>Describes an application problem.</p>
|
|
104
|
+
* @see {@link DescribeProblemCommand}
|
|
137
105
|
*/
|
|
138
106
|
describeProblem(args: DescribeProblemCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProblemCommandOutput>;
|
|
139
107
|
describeProblem(args: DescribeProblemCommandInput, cb: (err: any, data?: DescribeProblemCommandOutput) => void): void;
|
|
140
108
|
describeProblem(args: DescribeProblemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProblemCommandOutput) => void): void;
|
|
141
109
|
/**
|
|
142
|
-
* @
|
|
143
|
-
* <p>Describes the anomalies or errors associated with the problem.</p>
|
|
110
|
+
* @see {@link DescribeProblemObservationsCommand}
|
|
144
111
|
*/
|
|
145
112
|
describeProblemObservations(args: DescribeProblemObservationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProblemObservationsCommandOutput>;
|
|
146
113
|
describeProblemObservations(args: DescribeProblemObservationsCommandInput, cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void): void;
|
|
147
114
|
describeProblemObservations(args: DescribeProblemObservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void): void;
|
|
148
115
|
/**
|
|
149
|
-
* @
|
|
150
|
-
* <p>Lists the IDs of the applications that you are monitoring. </p>
|
|
116
|
+
* @see {@link ListApplicationsCommand}
|
|
151
117
|
*/
|
|
152
118
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
153
119
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
154
120
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
155
121
|
/**
|
|
156
|
-
* @
|
|
157
|
-
* <p>Lists the auto-grouped, standalone, and custom components of the application.</p>
|
|
122
|
+
* @see {@link ListComponentsCommand}
|
|
158
123
|
*/
|
|
159
124
|
listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
|
|
160
125
|
listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
161
126
|
listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
162
127
|
/**
|
|
163
|
-
* @
|
|
164
|
-
* <p> Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by
|
|
165
|
-
* Application Insights. Examples of events represented are: </p>
|
|
166
|
-
* <ul>
|
|
167
|
-
* <li>
|
|
168
|
-
* <p>INFO: creating a new alarm or updating an alarm threshold.</p>
|
|
169
|
-
* </li>
|
|
170
|
-
* <li>
|
|
171
|
-
* <p>WARN: alarm not created due to insufficient data points used to predict
|
|
172
|
-
* thresholds.</p>
|
|
173
|
-
* </li>
|
|
174
|
-
* <li>
|
|
175
|
-
* <p>ERROR: alarm not created due to permission errors or exceeding quotas. </p>
|
|
176
|
-
* </li>
|
|
177
|
-
* </ul>
|
|
128
|
+
* @see {@link ListConfigurationHistoryCommand}
|
|
178
129
|
*/
|
|
179
130
|
listConfigurationHistory(args: ListConfigurationHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationHistoryCommandOutput>;
|
|
180
131
|
listConfigurationHistory(args: ListConfigurationHistoryCommandInput, cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void): void;
|
|
181
132
|
listConfigurationHistory(args: ListConfigurationHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void): void;
|
|
182
133
|
/**
|
|
183
|
-
* @
|
|
184
|
-
* <p>Lists the log patterns in the specific log <code>LogPatternSet</code>.</p>
|
|
134
|
+
* @see {@link ListLogPatternsCommand}
|
|
185
135
|
*/
|
|
186
136
|
listLogPatterns(args: ListLogPatternsCommandInput, options?: __HttpHandlerOptions): Promise<ListLogPatternsCommandOutput>;
|
|
187
137
|
listLogPatterns(args: ListLogPatternsCommandInput, cb: (err: any, data?: ListLogPatternsCommandOutput) => void): void;
|
|
188
138
|
listLogPatterns(args: ListLogPatternsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLogPatternsCommandOutput) => void): void;
|
|
189
139
|
/**
|
|
190
|
-
* @
|
|
191
|
-
* <p>Lists the log pattern sets in the specific application.</p>
|
|
140
|
+
* @see {@link ListLogPatternSetsCommand}
|
|
192
141
|
*/
|
|
193
142
|
listLogPatternSets(args: ListLogPatternSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListLogPatternSetsCommandOutput>;
|
|
194
143
|
listLogPatternSets(args: ListLogPatternSetsCommandInput, cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void): void;
|
|
195
144
|
listLogPatternSets(args: ListLogPatternSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void): void;
|
|
196
145
|
/**
|
|
197
|
-
* @
|
|
198
|
-
* <p>Lists the problems with your application.</p>
|
|
146
|
+
* @see {@link ListProblemsCommand}
|
|
199
147
|
*/
|
|
200
148
|
listProblems(args: ListProblemsCommandInput, options?: __HttpHandlerOptions): Promise<ListProblemsCommandOutput>;
|
|
201
149
|
listProblems(args: ListProblemsCommandInput, cb: (err: any, data?: ListProblemsCommandOutput) => void): void;
|
|
202
150
|
listProblems(args: ListProblemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProblemsCommandOutput) => void): void;
|
|
203
151
|
/**
|
|
204
|
-
* @
|
|
205
|
-
* <p>Retrieve a list of the tags (keys and values) that are associated with a specified
|
|
206
|
-
* application. A <i>tag</i> is a label that you optionally define and associate
|
|
207
|
-
* with an application. Each tag consists of a required <i>tag key</i> and an
|
|
208
|
-
* optional associated <i>tag value</i>. A tag key is a general label that acts
|
|
209
|
-
* as a category for more specific tag values. A tag value acts as a descriptor within a tag
|
|
210
|
-
* key.</p>
|
|
152
|
+
* @see {@link ListTagsForResourceCommand}
|
|
211
153
|
*/
|
|
212
154
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
213
155
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
214
156
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
215
157
|
/**
|
|
216
|
-
* @
|
|
217
|
-
* <p>Add one or more tags (keys and values) to a specified application. A
|
|
218
|
-
* <i>tag</i> is a label that you optionally define and associate with an
|
|
219
|
-
* application. Tags can help you categorize and manage application in different ways, such as
|
|
220
|
-
* by purpose, owner, environment, or other criteria. </p>
|
|
221
|
-
* <p>Each tag consists of a required <i>tag key</i> and an associated
|
|
222
|
-
* <i>tag value</i>, both of which you define. A tag key is a general label
|
|
223
|
-
* that acts as a category for more specific tag values. A tag value acts as a descriptor
|
|
224
|
-
* within a tag key.</p>
|
|
158
|
+
* @see {@link TagResourceCommand}
|
|
225
159
|
*/
|
|
226
160
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
227
161
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
228
162
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
229
163
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Remove one or more tags (keys and values) from a specified application.</p>
|
|
164
|
+
* @see {@link UntagResourceCommand}
|
|
232
165
|
*/
|
|
233
166
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
234
167
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
235
168
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
236
169
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Updates the application.</p>
|
|
170
|
+
* @see {@link UpdateApplicationCommand}
|
|
239
171
|
*/
|
|
240
172
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
241
173
|
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
242
174
|
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
243
175
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Updates the custom component name and/or the list of resources that make up the
|
|
246
|
-
* component.</p>
|
|
176
|
+
* @see {@link UpdateComponentCommand}
|
|
247
177
|
*/
|
|
248
178
|
updateComponent(args: UpdateComponentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentCommandOutput>;
|
|
249
179
|
updateComponent(args: UpdateComponentCommandInput, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
|
|
250
180
|
updateComponent(args: UpdateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
|
|
251
181
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Updates the monitoring configurations for the component. The configuration input
|
|
254
|
-
* parameter is an escaped JSON of the configuration and should match the schema of what is
|
|
255
|
-
* returned by <code>DescribeComponentConfigurationRecommendation</code>. </p>
|
|
182
|
+
* @see {@link UpdateComponentConfigurationCommand}
|
|
256
183
|
*/
|
|
257
184
|
updateComponentConfiguration(args: UpdateComponentConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentConfigurationCommandOutput>;
|
|
258
185
|
updateComponentConfiguration(args: UpdateComponentConfigurationCommandInput, cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void): void;
|
|
259
186
|
updateComponentConfiguration(args: UpdateComponentConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void): void;
|
|
260
187
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <p>Adds a log pattern to a <code>LogPatternSet</code>.</p>
|
|
188
|
+
* @see {@link UpdateLogPatternCommand}
|
|
263
189
|
*/
|
|
264
190
|
updateLogPattern(args: UpdateLogPatternCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLogPatternCommandOutput>;
|
|
265
191
|
updateLogPattern(args: UpdateLogPatternCommandInput, cb: (err: any, data?: UpdateLogPatternCommandOutput) => void): void;
|
|
266
192
|
updateLogPattern(args: UpdateLogPatternCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLogPatternCommandOutput) => void): void;
|
|
267
193
|
}
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
* <fullname>Amazon CloudWatch Application Insights</fullname>
|
|
197
|
+
* <p> Amazon CloudWatch Application Insights is a service that helps you detect common
|
|
198
|
+
* problems with your applications. It enables you to pinpoint the source of issues in your
|
|
199
|
+
* applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL
|
|
200
|
+
* Server), by providing key insights into detected problems.</p>
|
|
201
|
+
* <p>After you onboard your application, CloudWatch Application Insights identifies,
|
|
202
|
+
* recommends, and sets up metrics and logs. It continuously analyzes and correlates your
|
|
203
|
+
* metrics and logs for unusual behavior to surface actionable problems with your application.
|
|
204
|
+
* For example, if your application is slow and unresponsive and leading to HTTP 500 errors in
|
|
205
|
+
* your Application Load Balancer (ALB), Application Insights informs you that a memory
|
|
206
|
+
* pressure problem with your SQL Server database is occurring. It bases this analysis on
|
|
207
|
+
* impactful metrics and log errors. </p>
|
|
208
|
+
*/
|
|
209
|
+
export declare class ApplicationInsights extends ApplicationInsightsClient implements ApplicationInsights {
|
|
210
|
+
}
|
|
@@ -108,7 +108,7 @@ import {
|
|
|
108
108
|
UpdateLogPatternCommandInput,
|
|
109
109
|
UpdateLogPatternCommandOutput,
|
|
110
110
|
} from "./commands/UpdateLogPatternCommand";
|
|
111
|
-
export
|
|
111
|
+
export interface ApplicationInsights {
|
|
112
112
|
createApplication(
|
|
113
113
|
args: CreateApplicationCommandInput,
|
|
114
114
|
options?: __HttpHandlerOptions
|
|
@@ -467,3 +467,6 @@ export declare class ApplicationInsights extends ApplicationInsightsClient {
|
|
|
467
467
|
cb: (err: any, data?: UpdateLogPatternCommandOutput) => void
|
|
468
468
|
): void;
|
|
469
469
|
}
|
|
470
|
+
export declare class ApplicationInsights
|
|
471
|
+
extends ApplicationInsightsClient
|
|
472
|
+
implements ApplicationInsights {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-insights",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Insights Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|