@pulumi/signalfx 6.0.0 → 6.1.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/gcp/integration.d.ts +8 -9
- package/gcp/integration.js +2 -0
- package/gcp/integration.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/log/index.d.ts +6 -0
- package/log/index.js +27 -0
- package/log/index.js.map +1 -0
- package/log/timeline.d.ts +147 -0
- package/log/timeline.js +85 -0
- package/log/timeline.js.map +1 -0
- package/log/view.d.ts +196 -0
- package/log/view.js +114 -0
- package/log/view.js.map +1 -0
- package/logs/view.d.ts +4 -1
- package/logs/view.js +6 -1
- package/logs/view.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +12 -0
- package/types/output.d.ts +12 -0
package/gcp/integration.d.ts
CHANGED
|
@@ -14,7 +14,9 @@ import * as outputs from "../types/output";
|
|
|
14
14
|
* import * as signalfx from "@pulumi/signalfx";
|
|
15
15
|
*
|
|
16
16
|
* const gcpMyteam = new signalfx.gcp.Integration("gcpMyteam", {
|
|
17
|
+
* customMetricTypeDomains: ["istio.io"],
|
|
17
18
|
* enabled: true,
|
|
19
|
+
* importGcpMetrics: true,
|
|
18
20
|
* pollRate: 300,
|
|
19
21
|
* projectServiceKeys: [
|
|
20
22
|
* {
|
|
@@ -47,7 +49,7 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
47
49
|
*/
|
|
48
50
|
static isInstance(obj: any): obj is Integration;
|
|
49
51
|
/**
|
|
50
|
-
* List of additional GCP service domain names that
|
|
52
|
+
* List of additional GCP service domain names that Splunk Observability Cloud will monitor. See [Custom Metric Type Domains documentation](https://dev.splunk.com/observability/docs/integrations/gcp_integration_overview/#Custom-metric-type-domains)
|
|
51
53
|
*/
|
|
52
54
|
readonly customMetricTypeDomains: pulumi.Output<string[] | undefined>;
|
|
53
55
|
/**
|
|
@@ -55,8 +57,7 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
55
57
|
*/
|
|
56
58
|
readonly enabled: pulumi.Output<boolean>;
|
|
57
59
|
/**
|
|
58
|
-
* If enabled,
|
|
59
|
-
* to true.
|
|
60
|
+
* If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
60
61
|
*/
|
|
61
62
|
readonly importGcpMetrics: pulumi.Output<boolean | undefined>;
|
|
62
63
|
/**
|
|
@@ -101,7 +102,7 @@ export declare class Integration extends pulumi.CustomResource {
|
|
|
101
102
|
*/
|
|
102
103
|
export interface IntegrationState {
|
|
103
104
|
/**
|
|
104
|
-
* List of additional GCP service domain names that
|
|
105
|
+
* List of additional GCP service domain names that Splunk Observability Cloud will monitor. See [Custom Metric Type Domains documentation](https://dev.splunk.com/observability/docs/integrations/gcp_integration_overview/#Custom-metric-type-domains)
|
|
105
106
|
*/
|
|
106
107
|
customMetricTypeDomains?: pulumi.Input<pulumi.Input<string>[]>;
|
|
107
108
|
/**
|
|
@@ -109,8 +110,7 @@ export interface IntegrationState {
|
|
|
109
110
|
*/
|
|
110
111
|
enabled?: pulumi.Input<boolean>;
|
|
111
112
|
/**
|
|
112
|
-
* If enabled,
|
|
113
|
-
* to true.
|
|
113
|
+
* If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
114
114
|
*/
|
|
115
115
|
importGcpMetrics?: pulumi.Input<boolean>;
|
|
116
116
|
/**
|
|
@@ -147,7 +147,7 @@ export interface IntegrationState {
|
|
|
147
147
|
*/
|
|
148
148
|
export interface IntegrationArgs {
|
|
149
149
|
/**
|
|
150
|
-
* List of additional GCP service domain names that
|
|
150
|
+
* List of additional GCP service domain names that Splunk Observability Cloud will monitor. See [Custom Metric Type Domains documentation](https://dev.splunk.com/observability/docs/integrations/gcp_integration_overview/#Custom-metric-type-domains)
|
|
151
151
|
*/
|
|
152
152
|
customMetricTypeDomains?: pulumi.Input<pulumi.Input<string>[]>;
|
|
153
153
|
/**
|
|
@@ -155,8 +155,7 @@ export interface IntegrationArgs {
|
|
|
155
155
|
*/
|
|
156
156
|
enabled: pulumi.Input<boolean>;
|
|
157
157
|
/**
|
|
158
|
-
* If enabled,
|
|
159
|
-
* to true.
|
|
158
|
+
* If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
|
|
160
159
|
*/
|
|
161
160
|
importGcpMetrics?: pulumi.Input<boolean>;
|
|
162
161
|
/**
|
package/gcp/integration.js
CHANGED
|
@@ -18,7 +18,9 @@ const utilities = require("../utilities");
|
|
|
18
18
|
* import * as signalfx from "@pulumi/signalfx";
|
|
19
19
|
*
|
|
20
20
|
* const gcpMyteam = new signalfx.gcp.Integration("gcpMyteam", {
|
|
21
|
+
* customMetricTypeDomains: ["istio.io"],
|
|
21
22
|
* enabled: true,
|
|
23
|
+
* importGcpMetrics: true,
|
|
22
24
|
* pollRate: 300,
|
|
23
25
|
* projectServiceKeys: [
|
|
24
26
|
* {
|
package/gcp/integration.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../gcp/integration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"integration.js","sourceRoot":"","sources":["../../gcp/integration.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ import * as azure from "./azure";
|
|
|
57
57
|
import * as config from "./config";
|
|
58
58
|
import * as gcp from "./gcp";
|
|
59
59
|
import * as jira from "./jira";
|
|
60
|
+
import * as log from "./log";
|
|
60
61
|
import * as logs from "./logs";
|
|
61
62
|
import * as opsgenie from "./opsgenie";
|
|
62
63
|
import * as pagerduty from "./pagerduty";
|
|
@@ -64,4 +65,4 @@ import * as servicenow from "./servicenow";
|
|
|
64
65
|
import * as slack from "./slack";
|
|
65
66
|
import * as types from "./types";
|
|
66
67
|
import * as victorops from "./victorops";
|
|
67
|
-
export { aws, azure, config, gcp, jira, logs, opsgenie, pagerduty, servicenow, slack, types, victorops, };
|
|
68
|
+
export { aws, azure, config, gcp, jira, log, logs, opsgenie, pagerduty, servicenow, slack, types, victorops, };
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.victorops = exports.types = exports.slack = exports.servicenow = exports.pagerduty = exports.opsgenie = exports.logs = exports.jira = exports.gcp = exports.config = exports.azure = exports.aws = exports.WebhookIntegration = exports.TimeChart = exports.TextChart = exports.Team = exports.TableChart = exports.SingleValueChart = exports.Provider = exports.OrgToken = exports.MetricRuleset = exports.ListChart = exports.HeatmapChart = exports.getDimensionValuesOutput = exports.getDimensionValues = exports.EventFeedChart = exports.Detector = exports.DataLink = exports.DashboardGroup = exports.Dashboard = exports.AlertMutingRule = void 0;
|
|
5
|
+
exports.victorops = exports.types = exports.slack = exports.servicenow = exports.pagerduty = exports.opsgenie = exports.logs = exports.log = exports.jira = exports.gcp = exports.config = exports.azure = exports.aws = exports.WebhookIntegration = exports.TimeChart = exports.TextChart = exports.Team = exports.TableChart = exports.SingleValueChart = exports.Provider = exports.OrgToken = exports.MetricRuleset = exports.ListChart = exports.HeatmapChart = exports.getDimensionValuesOutput = exports.getDimensionValues = exports.EventFeedChart = exports.Detector = exports.DataLink = exports.DashboardGroup = exports.Dashboard = exports.AlertMutingRule = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.AlertMutingRule = null;
|
|
@@ -53,6 +53,8 @@ const gcp = require("./gcp");
|
|
|
53
53
|
exports.gcp = gcp;
|
|
54
54
|
const jira = require("./jira");
|
|
55
55
|
exports.jira = jira;
|
|
56
|
+
const log = require("./log");
|
|
57
|
+
exports.log = log;
|
|
56
58
|
const logs = require("./logs");
|
|
57
59
|
exports.logs = logs;
|
|
58
60
|
const opsgenie = require("./opsgenie");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/log/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { TimelineArgs, TimelineState } from "./timeline";
|
|
2
|
+
export type Timeline = import("./timeline").Timeline;
|
|
3
|
+
export declare const Timeline: typeof import("./timeline").Timeline;
|
|
4
|
+
export { ViewArgs, ViewState } from "./view";
|
|
5
|
+
export type View = import("./view").View;
|
|
6
|
+
export declare const View: typeof import("./view").View;
|
package/log/index.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.View = exports.Timeline = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
exports.Timeline = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["Timeline"], () => require("./timeline"));
|
|
10
|
+
exports.View = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["View"], () => require("./view"));
|
|
12
|
+
const _module = {
|
|
13
|
+
version: utilities.getVersion(),
|
|
14
|
+
construct: (name, type, urn) => {
|
|
15
|
+
switch (type) {
|
|
16
|
+
case "signalfx:log/timeline:Timeline":
|
|
17
|
+
return new exports.Timeline(name, undefined, { urn });
|
|
18
|
+
case "signalfx:log/view:View":
|
|
19
|
+
return new exports.View(name, undefined, { urn });
|
|
20
|
+
default:
|
|
21
|
+
throw new Error(`unknown resource type ${type}`);
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
pulumi.runtime.registerResourceModule("signalfx", "log/timeline", _module);
|
|
26
|
+
pulumi.runtime.registerResourceModule("signalfx", "log/view", _module);
|
|
27
|
+
//# sourceMappingURL=index.js.map
|
package/log/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../log/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAG/D,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,gCAAgC;gBACjC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,wBAAwB;gBACzB,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* You can add logs data to your Observability Cloud dashboards without turning your logs into metrics first.
|
|
4
|
+
* A log timeline chart displays timeline visualization in a dashboard and shows you in detail what is happening and why.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as signalfx from "@pulumi/signalfx";
|
|
11
|
+
*
|
|
12
|
+
* const myLogTimeline = new signalfx.log.Timeline("myLogTimeline", {
|
|
13
|
+
* description: "Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
|
|
14
|
+
* programText: `logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()
|
|
15
|
+
*
|
|
16
|
+
* `,
|
|
17
|
+
* timeRange: 900,
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
export declare class Timeline extends pulumi.CustomResource {
|
|
22
|
+
/**
|
|
23
|
+
* Get an existing Timeline resource's state with the given name, ID, and optional extra
|
|
24
|
+
* properties used to qualify the lookup.
|
|
25
|
+
*
|
|
26
|
+
* @param name The _unique_ name of the resulting resource.
|
|
27
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
28
|
+
* @param state Any extra arguments used during the lookup.
|
|
29
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
30
|
+
*/
|
|
31
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TimelineState, opts?: pulumi.CustomResourceOptions): Timeline;
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of Timeline. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj: any): obj is Timeline;
|
|
37
|
+
/**
|
|
38
|
+
* The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
|
|
39
|
+
*/
|
|
40
|
+
readonly defaultConnection: pulumi.Output<string | undefined>;
|
|
41
|
+
/**
|
|
42
|
+
* Description of the log timeline.
|
|
43
|
+
*/
|
|
44
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
45
|
+
/**
|
|
46
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
47
|
+
*/
|
|
48
|
+
readonly endTime: pulumi.Output<number | undefined>;
|
|
49
|
+
/**
|
|
50
|
+
* Name of the log timeline.
|
|
51
|
+
*/
|
|
52
|
+
readonly name: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
|
|
55
|
+
*/
|
|
56
|
+
readonly programText: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
59
|
+
*/
|
|
60
|
+
readonly startTime: pulumi.Output<number | undefined>;
|
|
61
|
+
/**
|
|
62
|
+
* From when to display data. SignalFx time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `startTime` and `endTime`.
|
|
63
|
+
*/
|
|
64
|
+
readonly timeRange: pulumi.Output<number | undefined>;
|
|
65
|
+
/**
|
|
66
|
+
* The URL of the log timeline.
|
|
67
|
+
*/
|
|
68
|
+
readonly url: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Create a Timeline resource with the given unique name, arguments, and options.
|
|
71
|
+
*
|
|
72
|
+
* @param name The _unique_ name of the resource.
|
|
73
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
74
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
75
|
+
*/
|
|
76
|
+
constructor(name: string, args: TimelineArgs, opts?: pulumi.CustomResourceOptions);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Input properties used for looking up and filtering Timeline resources.
|
|
80
|
+
*/
|
|
81
|
+
export interface TimelineState {
|
|
82
|
+
/**
|
|
83
|
+
* The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
|
|
84
|
+
*/
|
|
85
|
+
defaultConnection?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Description of the log timeline.
|
|
88
|
+
*/
|
|
89
|
+
description?: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
92
|
+
*/
|
|
93
|
+
endTime?: pulumi.Input<number>;
|
|
94
|
+
/**
|
|
95
|
+
* Name of the log timeline.
|
|
96
|
+
*/
|
|
97
|
+
name?: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
|
|
100
|
+
*/
|
|
101
|
+
programText?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
104
|
+
*/
|
|
105
|
+
startTime?: pulumi.Input<number>;
|
|
106
|
+
/**
|
|
107
|
+
* From when to display data. SignalFx time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `startTime` and `endTime`.
|
|
108
|
+
*/
|
|
109
|
+
timeRange?: pulumi.Input<number>;
|
|
110
|
+
/**
|
|
111
|
+
* The URL of the log timeline.
|
|
112
|
+
*/
|
|
113
|
+
url?: pulumi.Input<string>;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* The set of arguments for constructing a Timeline resource.
|
|
117
|
+
*/
|
|
118
|
+
export interface TimelineArgs {
|
|
119
|
+
/**
|
|
120
|
+
* The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
|
|
121
|
+
*/
|
|
122
|
+
defaultConnection?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* Description of the log timeline.
|
|
125
|
+
*/
|
|
126
|
+
description?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
129
|
+
*/
|
|
130
|
+
endTime?: pulumi.Input<number>;
|
|
131
|
+
/**
|
|
132
|
+
* Name of the log timeline.
|
|
133
|
+
*/
|
|
134
|
+
name?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
|
|
137
|
+
*/
|
|
138
|
+
programText: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
141
|
+
*/
|
|
142
|
+
startTime?: pulumi.Input<number>;
|
|
143
|
+
/**
|
|
144
|
+
* From when to display data. SignalFx time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `startTime` and `endTime`.
|
|
145
|
+
*/
|
|
146
|
+
timeRange?: pulumi.Input<number>;
|
|
147
|
+
}
|
package/log/timeline.js
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Timeline = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* You can add logs data to your Observability Cloud dashboards without turning your logs into metrics first.
|
|
10
|
+
* A log timeline chart displays timeline visualization in a dashboard and shows you in detail what is happening and why.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as signalfx from "@pulumi/signalfx";
|
|
17
|
+
*
|
|
18
|
+
* const myLogTimeline = new signalfx.log.Timeline("myLogTimeline", {
|
|
19
|
+
* description: "Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
|
|
20
|
+
* programText: `logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()
|
|
21
|
+
*
|
|
22
|
+
* `,
|
|
23
|
+
* timeRange: 900,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
class Timeline extends pulumi.CustomResource {
|
|
28
|
+
/**
|
|
29
|
+
* Get an existing Timeline resource's state with the given name, ID, and optional extra
|
|
30
|
+
* properties used to qualify the lookup.
|
|
31
|
+
*
|
|
32
|
+
* @param name The _unique_ name of the resulting resource.
|
|
33
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
34
|
+
* @param state Any extra arguments used during the lookup.
|
|
35
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
36
|
+
*/
|
|
37
|
+
static get(name, id, state, opts) {
|
|
38
|
+
return new Timeline(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Returns true if the given object is an instance of Timeline. This is designed to work even
|
|
42
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
43
|
+
*/
|
|
44
|
+
static isInstance(obj) {
|
|
45
|
+
if (obj === undefined || obj === null) {
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
return obj['__pulumiType'] === Timeline.__pulumiType;
|
|
49
|
+
}
|
|
50
|
+
constructor(name, argsOrState, opts) {
|
|
51
|
+
let resourceInputs = {};
|
|
52
|
+
opts = opts || {};
|
|
53
|
+
if (opts.id) {
|
|
54
|
+
const state = argsOrState;
|
|
55
|
+
resourceInputs["defaultConnection"] = state ? state.defaultConnection : undefined;
|
|
56
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
57
|
+
resourceInputs["endTime"] = state ? state.endTime : undefined;
|
|
58
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
59
|
+
resourceInputs["programText"] = state ? state.programText : undefined;
|
|
60
|
+
resourceInputs["startTime"] = state ? state.startTime : undefined;
|
|
61
|
+
resourceInputs["timeRange"] = state ? state.timeRange : undefined;
|
|
62
|
+
resourceInputs["url"] = state ? state.url : undefined;
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
const args = argsOrState;
|
|
66
|
+
if ((!args || args.programText === undefined) && !opts.urn) {
|
|
67
|
+
throw new Error("Missing required property 'programText'");
|
|
68
|
+
}
|
|
69
|
+
resourceInputs["defaultConnection"] = args ? args.defaultConnection : undefined;
|
|
70
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
71
|
+
resourceInputs["endTime"] = args ? args.endTime : undefined;
|
|
72
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
73
|
+
resourceInputs["programText"] = args ? args.programText : undefined;
|
|
74
|
+
resourceInputs["startTime"] = args ? args.startTime : undefined;
|
|
75
|
+
resourceInputs["timeRange"] = args ? args.timeRange : undefined;
|
|
76
|
+
resourceInputs["url"] = undefined /*out*/;
|
|
77
|
+
}
|
|
78
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
79
|
+
super(Timeline.__pulumiType, name, resourceInputs, opts);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
exports.Timeline = Timeline;
|
|
83
|
+
/** @internal */
|
|
84
|
+
Timeline.__pulumiType = 'signalfx:log/timeline:Timeline';
|
|
85
|
+
//# sourceMappingURL=timeline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"timeline.js","sourceRoot":"","sources":["../../log/timeline.ts"],"names":[],"mappings":"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"}
|
package/log/view.d.ts
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* You can add logs data to your Observability Cloud dashboards without turning your logs into metrics first. A log view displays log lines in a table form in a dashboard and shows you in detail what is happening and why.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as signalfx from "@pulumi/signalfx";
|
|
12
|
+
*
|
|
13
|
+
* const myLogView = new signalfx.log.View("myLogView", {
|
|
14
|
+
* columns: [
|
|
15
|
+
* {
|
|
16
|
+
* name: "severity",
|
|
17
|
+
* },
|
|
18
|
+
* {
|
|
19
|
+
* name: "time",
|
|
20
|
+
* },
|
|
21
|
+
* {
|
|
22
|
+
* name: "amount.currency_code",
|
|
23
|
+
* },
|
|
24
|
+
* {
|
|
25
|
+
* name: "amount.nanos",
|
|
26
|
+
* },
|
|
27
|
+
* {
|
|
28
|
+
* name: "amount.units",
|
|
29
|
+
* },
|
|
30
|
+
* {
|
|
31
|
+
* name: "message",
|
|
32
|
+
* },
|
|
33
|
+
* ],
|
|
34
|
+
* description: "Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
|
|
35
|
+
* programText: `logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()
|
|
36
|
+
*
|
|
37
|
+
* `,
|
|
38
|
+
* sortOptions: [{
|
|
39
|
+
* descending: false,
|
|
40
|
+
* field: "severity",
|
|
41
|
+
* }],
|
|
42
|
+
* timeRange: 900,
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
export declare class View extends pulumi.CustomResource {
|
|
47
|
+
/**
|
|
48
|
+
* Get an existing View resource's state with the given name, ID, and optional extra
|
|
49
|
+
* properties used to qualify the lookup.
|
|
50
|
+
*
|
|
51
|
+
* @param name The _unique_ name of the resulting resource.
|
|
52
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
53
|
+
* @param state Any extra arguments used during the lookup.
|
|
54
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
55
|
+
*/
|
|
56
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ViewState, opts?: pulumi.CustomResourceOptions): View;
|
|
57
|
+
/**
|
|
58
|
+
* Returns true if the given object is an instance of View. This is designed to work even
|
|
59
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
60
|
+
*/
|
|
61
|
+
static isInstance(obj: any): obj is View;
|
|
62
|
+
/**
|
|
63
|
+
* The column headers to show on the log view.
|
|
64
|
+
*/
|
|
65
|
+
readonly columns: pulumi.Output<outputs.log.ViewColumn[] | undefined>;
|
|
66
|
+
/**
|
|
67
|
+
* The connection that the log view uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
|
|
68
|
+
*/
|
|
69
|
+
readonly defaultConnection: pulumi.Output<string | undefined>;
|
|
70
|
+
/**
|
|
71
|
+
* Description of the log view.
|
|
72
|
+
*/
|
|
73
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
74
|
+
/**
|
|
75
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
76
|
+
*/
|
|
77
|
+
readonly endTime: pulumi.Output<number | undefined>;
|
|
78
|
+
/**
|
|
79
|
+
* Name of the log view.
|
|
80
|
+
*/
|
|
81
|
+
readonly name: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Signalflow program text for the log view. More info at https://developers.signalfx.com/docs/signalflow-overview.
|
|
84
|
+
*/
|
|
85
|
+
readonly programText: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The sorting options configuration to specify if the log view table needs to be sorted in a particular field.
|
|
88
|
+
*/
|
|
89
|
+
readonly sortOptions: pulumi.Output<outputs.log.ViewSortOption[] | undefined>;
|
|
90
|
+
/**
|
|
91
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
92
|
+
*/
|
|
93
|
+
readonly startTime: pulumi.Output<number | undefined>;
|
|
94
|
+
/**
|
|
95
|
+
* From when to display data. SignalFx time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `startTime` and `endTime`.
|
|
96
|
+
*/
|
|
97
|
+
readonly timeRange: pulumi.Output<number | undefined>;
|
|
98
|
+
/**
|
|
99
|
+
* The URL of the log view.
|
|
100
|
+
*/
|
|
101
|
+
readonly url: pulumi.Output<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Create a View resource with the given unique name, arguments, and options.
|
|
104
|
+
*
|
|
105
|
+
* @param name The _unique_ name of the resource.
|
|
106
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
107
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
108
|
+
*/
|
|
109
|
+
constructor(name: string, args: ViewArgs, opts?: pulumi.CustomResourceOptions);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Input properties used for looking up and filtering View resources.
|
|
113
|
+
*/
|
|
114
|
+
export interface ViewState {
|
|
115
|
+
/**
|
|
116
|
+
* The column headers to show on the log view.
|
|
117
|
+
*/
|
|
118
|
+
columns?: pulumi.Input<pulumi.Input<inputs.log.ViewColumn>[]>;
|
|
119
|
+
/**
|
|
120
|
+
* The connection that the log view uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
|
|
121
|
+
*/
|
|
122
|
+
defaultConnection?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* Description of the log view.
|
|
125
|
+
*/
|
|
126
|
+
description?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
129
|
+
*/
|
|
130
|
+
endTime?: pulumi.Input<number>;
|
|
131
|
+
/**
|
|
132
|
+
* Name of the log view.
|
|
133
|
+
*/
|
|
134
|
+
name?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Signalflow program text for the log view. More info at https://developers.signalfx.com/docs/signalflow-overview.
|
|
137
|
+
*/
|
|
138
|
+
programText?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* The sorting options configuration to specify if the log view table needs to be sorted in a particular field.
|
|
141
|
+
*/
|
|
142
|
+
sortOptions?: pulumi.Input<pulumi.Input<inputs.log.ViewSortOption>[]>;
|
|
143
|
+
/**
|
|
144
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
145
|
+
*/
|
|
146
|
+
startTime?: pulumi.Input<number>;
|
|
147
|
+
/**
|
|
148
|
+
* From when to display data. SignalFx time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `startTime` and `endTime`.
|
|
149
|
+
*/
|
|
150
|
+
timeRange?: pulumi.Input<number>;
|
|
151
|
+
/**
|
|
152
|
+
* The URL of the log view.
|
|
153
|
+
*/
|
|
154
|
+
url?: pulumi.Input<string>;
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* The set of arguments for constructing a View resource.
|
|
158
|
+
*/
|
|
159
|
+
export interface ViewArgs {
|
|
160
|
+
/**
|
|
161
|
+
* The column headers to show on the log view.
|
|
162
|
+
*/
|
|
163
|
+
columns?: pulumi.Input<pulumi.Input<inputs.log.ViewColumn>[]>;
|
|
164
|
+
/**
|
|
165
|
+
* The connection that the log view uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
|
|
166
|
+
*/
|
|
167
|
+
defaultConnection?: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* Description of the log view.
|
|
170
|
+
*/
|
|
171
|
+
description?: pulumi.Input<string>;
|
|
172
|
+
/**
|
|
173
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
174
|
+
*/
|
|
175
|
+
endTime?: pulumi.Input<number>;
|
|
176
|
+
/**
|
|
177
|
+
* Name of the log view.
|
|
178
|
+
*/
|
|
179
|
+
name?: pulumi.Input<string>;
|
|
180
|
+
/**
|
|
181
|
+
* Signalflow program text for the log view. More info at https://developers.signalfx.com/docs/signalflow-overview.
|
|
182
|
+
*/
|
|
183
|
+
programText: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* The sorting options configuration to specify if the log view table needs to be sorted in a particular field.
|
|
186
|
+
*/
|
|
187
|
+
sortOptions?: pulumi.Input<pulumi.Input<inputs.log.ViewSortOption>[]>;
|
|
188
|
+
/**
|
|
189
|
+
* Seconds since epoch. Used for visualization. Conflicts with `timeRange`.
|
|
190
|
+
*/
|
|
191
|
+
startTime?: pulumi.Input<number>;
|
|
192
|
+
/**
|
|
193
|
+
* From when to display data. SignalFx time syntax (e.g. `"-5m"`, `"-1h"`). Conflicts with `startTime` and `endTime`.
|
|
194
|
+
*/
|
|
195
|
+
timeRange?: pulumi.Input<number>;
|
|
196
|
+
}
|
package/log/view.js
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.View = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* You can add logs data to your Observability Cloud dashboards without turning your logs into metrics first. A log view displays log lines in a table form in a dashboard and shows you in detail what is happening and why.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as signalfx from "@pulumi/signalfx";
|
|
16
|
+
*
|
|
17
|
+
* const myLogView = new signalfx.log.View("myLogView", {
|
|
18
|
+
* columns: [
|
|
19
|
+
* {
|
|
20
|
+
* name: "severity",
|
|
21
|
+
* },
|
|
22
|
+
* {
|
|
23
|
+
* name: "time",
|
|
24
|
+
* },
|
|
25
|
+
* {
|
|
26
|
+
* name: "amount.currency_code",
|
|
27
|
+
* },
|
|
28
|
+
* {
|
|
29
|
+
* name: "amount.nanos",
|
|
30
|
+
* },
|
|
31
|
+
* {
|
|
32
|
+
* name: "amount.units",
|
|
33
|
+
* },
|
|
34
|
+
* {
|
|
35
|
+
* name: "message",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* description: "Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis",
|
|
39
|
+
* programText: `logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()
|
|
40
|
+
*
|
|
41
|
+
* `,
|
|
42
|
+
* sortOptions: [{
|
|
43
|
+
* descending: false,
|
|
44
|
+
* field: "severity",
|
|
45
|
+
* }],
|
|
46
|
+
* timeRange: 900,
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
class View extends pulumi.CustomResource {
|
|
51
|
+
/**
|
|
52
|
+
* Get an existing View resource's state with the given name, ID, and optional extra
|
|
53
|
+
* properties used to qualify the lookup.
|
|
54
|
+
*
|
|
55
|
+
* @param name The _unique_ name of the resulting resource.
|
|
56
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
57
|
+
* @param state Any extra arguments used during the lookup.
|
|
58
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
59
|
+
*/
|
|
60
|
+
static get(name, id, state, opts) {
|
|
61
|
+
return new View(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Returns true if the given object is an instance of View. This is designed to work even
|
|
65
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
66
|
+
*/
|
|
67
|
+
static isInstance(obj) {
|
|
68
|
+
if (obj === undefined || obj === null) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
return obj['__pulumiType'] === View.__pulumiType;
|
|
72
|
+
}
|
|
73
|
+
constructor(name, argsOrState, opts) {
|
|
74
|
+
let resourceInputs = {};
|
|
75
|
+
opts = opts || {};
|
|
76
|
+
if (opts.id) {
|
|
77
|
+
const state = argsOrState;
|
|
78
|
+
resourceInputs["columns"] = state ? state.columns : undefined;
|
|
79
|
+
resourceInputs["defaultConnection"] = state ? state.defaultConnection : undefined;
|
|
80
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
81
|
+
resourceInputs["endTime"] = state ? state.endTime : undefined;
|
|
82
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
83
|
+
resourceInputs["programText"] = state ? state.programText : undefined;
|
|
84
|
+
resourceInputs["sortOptions"] = state ? state.sortOptions : undefined;
|
|
85
|
+
resourceInputs["startTime"] = state ? state.startTime : undefined;
|
|
86
|
+
resourceInputs["timeRange"] = state ? state.timeRange : undefined;
|
|
87
|
+
resourceInputs["url"] = state ? state.url : undefined;
|
|
88
|
+
}
|
|
89
|
+
else {
|
|
90
|
+
const args = argsOrState;
|
|
91
|
+
if ((!args || args.programText === undefined) && !opts.urn) {
|
|
92
|
+
throw new Error("Missing required property 'programText'");
|
|
93
|
+
}
|
|
94
|
+
resourceInputs["columns"] = args ? args.columns : undefined;
|
|
95
|
+
resourceInputs["defaultConnection"] = args ? args.defaultConnection : undefined;
|
|
96
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
97
|
+
resourceInputs["endTime"] = args ? args.endTime : undefined;
|
|
98
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
99
|
+
resourceInputs["programText"] = args ? args.programText : undefined;
|
|
100
|
+
resourceInputs["sortOptions"] = args ? args.sortOptions : undefined;
|
|
101
|
+
resourceInputs["startTime"] = args ? args.startTime : undefined;
|
|
102
|
+
resourceInputs["timeRange"] = args ? args.timeRange : undefined;
|
|
103
|
+
resourceInputs["url"] = undefined /*out*/;
|
|
104
|
+
}
|
|
105
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
106
|
+
const aliasOpts = { aliases: [{ type: "signalfx:logs/view:View" }] };
|
|
107
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
108
|
+
super(View.__pulumiType, name, resourceInputs, opts);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.View = View;
|
|
112
|
+
/** @internal */
|
|
113
|
+
View.__pulumiType = 'signalfx:log/view:View';
|
|
114
|
+
//# sourceMappingURL=view.js.map
|
package/log/view.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../log/view.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;IAmDD,YAAY,IAAY,EAAE,WAAkC,EAAE,IAAmC;QAC7F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoC,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,SAAS,GAAG,EAAE,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC,EAAE,CAAC;QACrE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;QAC5C,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;;AAhHL,oBAiHC;AAnGG,gBAAgB;AACO,iBAAY,GAAG,wBAAwB,CAAC"}
|
package/logs/view.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as outputs from "../types/output";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as signalfx from "@pulumi/signalfx";
|
|
12
12
|
*
|
|
13
|
-
* const myLogView = new signalfx.
|
|
13
|
+
* const myLogView = new signalfx.log.View("myLogView", {
|
|
14
14
|
* columns: [
|
|
15
15
|
* {
|
|
16
16
|
* name: "severity",
|
|
@@ -42,6 +42,8 @@ import * as outputs from "../types/output";
|
|
|
42
42
|
* timeRange: 900,
|
|
43
43
|
* });
|
|
44
44
|
* ```
|
|
45
|
+
*
|
|
46
|
+
* @deprecated signalfx.logs/view.View has been deprecated in favor of signalfx.log/view.View
|
|
45
47
|
*/
|
|
46
48
|
export declare class View extends pulumi.CustomResource {
|
|
47
49
|
/**
|
|
@@ -106,6 +108,7 @@ export declare class View extends pulumi.CustomResource {
|
|
|
106
108
|
* @param args The arguments to use to populate this resource's properties.
|
|
107
109
|
* @param opts A bag of options that control this resource's behavior.
|
|
108
110
|
*/
|
|
111
|
+
/** @deprecated signalfx.logs/view.View has been deprecated in favor of signalfx.log/view.View */
|
|
109
112
|
constructor(name: string, args: ViewArgs, opts?: pulumi.CustomResourceOptions);
|
|
110
113
|
}
|
|
111
114
|
/**
|
package/logs/view.js
CHANGED
|
@@ -14,7 +14,7 @@ const utilities = require("../utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as signalfx from "@pulumi/signalfx";
|
|
16
16
|
*
|
|
17
|
-
* const myLogView = new signalfx.
|
|
17
|
+
* const myLogView = new signalfx.log.View("myLogView", {
|
|
18
18
|
* columns: [
|
|
19
19
|
* {
|
|
20
20
|
* name: "severity",
|
|
@@ -46,6 +46,8 @@ const utilities = require("../utilities");
|
|
|
46
46
|
* timeRange: 900,
|
|
47
47
|
* });
|
|
48
48
|
* ```
|
|
49
|
+
*
|
|
50
|
+
* @deprecated signalfx.logs/view.View has been deprecated in favor of signalfx.log/view.View
|
|
49
51
|
*/
|
|
50
52
|
class View extends pulumi.CustomResource {
|
|
51
53
|
/**
|
|
@@ -58,6 +60,7 @@ class View extends pulumi.CustomResource {
|
|
|
58
60
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
59
61
|
*/
|
|
60
62
|
static get(name, id, state, opts) {
|
|
63
|
+
pulumi.log.warn("View is deprecated: signalfx.logs/view.View has been deprecated in favor of signalfx.log/view.View");
|
|
61
64
|
return new View(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
62
65
|
}
|
|
63
66
|
/**
|
|
@@ -70,7 +73,9 @@ class View extends pulumi.CustomResource {
|
|
|
70
73
|
}
|
|
71
74
|
return obj['__pulumiType'] === View.__pulumiType;
|
|
72
75
|
}
|
|
76
|
+
/** @deprecated signalfx.logs/view.View has been deprecated in favor of signalfx.log/view.View */
|
|
73
77
|
constructor(name, argsOrState, opts) {
|
|
78
|
+
pulumi.log.warn("View is deprecated: signalfx.logs/view.View has been deprecated in favor of signalfx.log/view.View");
|
|
74
79
|
let resourceInputs = {};
|
|
75
80
|
opts = opts || {};
|
|
76
81
|
if (opts.id) {
|
package/logs/view.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../logs/view.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"view.js","sourceRoot":"","sources":["../../logs/view.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/signalfx",
|
|
3
|
-
"version": "v6.
|
|
3
|
+
"version": "v6.1.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing SignalFx resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource signalfx v6.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource signalfx v6.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
|
@@ -898,6 +898,18 @@ export declare namespace gcp {
|
|
|
898
898
|
projectKey: pulumi.Input<string>;
|
|
899
899
|
}
|
|
900
900
|
}
|
|
901
|
+
export declare namespace log {
|
|
902
|
+
interface ViewColumn {
|
|
903
|
+
/**
|
|
904
|
+
* Name of the log view.
|
|
905
|
+
*/
|
|
906
|
+
name: pulumi.Input<string>;
|
|
907
|
+
}
|
|
908
|
+
interface ViewSortOption {
|
|
909
|
+
descending: pulumi.Input<boolean>;
|
|
910
|
+
field: pulumi.Input<string>;
|
|
911
|
+
}
|
|
912
|
+
}
|
|
901
913
|
export declare namespace logs {
|
|
902
914
|
interface ViewColumn {
|
|
903
915
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -897,6 +897,18 @@ export declare namespace gcp {
|
|
|
897
897
|
projectKey: string;
|
|
898
898
|
}
|
|
899
899
|
}
|
|
900
|
+
export declare namespace log {
|
|
901
|
+
interface ViewColumn {
|
|
902
|
+
/**
|
|
903
|
+
* Name of the log view.
|
|
904
|
+
*/
|
|
905
|
+
name: string;
|
|
906
|
+
}
|
|
907
|
+
interface ViewSortOption {
|
|
908
|
+
descending: boolean;
|
|
909
|
+
field: string;
|
|
910
|
+
}
|
|
911
|
+
}
|
|
900
912
|
export declare namespace logs {
|
|
901
913
|
interface ViewColumn {
|
|
902
914
|
/**
|