signalfx.log.Timeline
Explore with Pulumi AI
You can add logs data to your Observability Cloud dashboards without turning your logs into metrics first.
A log timeline chart displays timeline visualization in a dashboard and shows you in detail what is happening and why.
Example
resource "signalfx_log_timeline" "my_log_timeline" {
name = "Sample Log Timeline"
description = "Lorem ipsum dolor sit amet, laudem tibique iracundia at mea. Nam posse dolores ex, nec cu adhuc putent honestatis"
program_text = <<-EOF
logs(filter=field('message') == 'Transaction processed' and field('service.name') == 'paymentservice').publish()
EOF
time_range = 900
}
Create Timeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Timeline(name: string, args: TimelineArgs, opts?: CustomResourceOptions);
@overload
def Timeline(resource_name: str,
args: TimelineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Timeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
program_text: Optional[str] = None,
default_connection: Optional[str] = None,
description: Optional[str] = None,
end_time: Optional[int] = None,
name: Optional[str] = None,
start_time: Optional[int] = None,
time_range: Optional[int] = None)
func NewTimeline(ctx *Context, name string, args TimelineArgs, opts ...ResourceOption) (*Timeline, error)
public Timeline(string name, TimelineArgs args, CustomResourceOptions? opts = null)
public Timeline(String name, TimelineArgs args)
public Timeline(String name, TimelineArgs args, CustomResourceOptions options)
type: signalfx:log:Timeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TimelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TimelineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TimelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TimelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TimelineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var timelineResource = new SignalFx.Log.Timeline("timelineResource", new()
{
ProgramText = "string",
DefaultConnection = "string",
Description = "string",
EndTime = 0,
Name = "string",
StartTime = 0,
TimeRange = 0,
});
example, err := log.NewTimeline(ctx, "timelineResource", &log.TimelineArgs{
ProgramText: pulumi.String("string"),
DefaultConnection: pulumi.String("string"),
Description: pulumi.String("string"),
EndTime: pulumi.Int(0),
Name: pulumi.String("string"),
StartTime: pulumi.Int(0),
TimeRange: pulumi.Int(0),
})
var timelineResource = new Timeline("timelineResource", TimelineArgs.builder()
.programText("string")
.defaultConnection("string")
.description("string")
.endTime(0)
.name("string")
.startTime(0)
.timeRange(0)
.build());
timeline_resource = signalfx.log.Timeline("timelineResource",
program_text="string",
default_connection="string",
description="string",
end_time=0,
name="string",
start_time=0,
time_range=0)
const timelineResource = new signalfx.log.Timeline("timelineResource", {
programText: "string",
defaultConnection: "string",
description: "string",
endTime: 0,
name: "string",
startTime: 0,
timeRange: 0,
});
type: signalfx:log:Timeline
properties:
defaultConnection: string
description: string
endTime: 0
name: string
programText: string
startTime: 0
timeRange: 0
Timeline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Timeline resource accepts the following input properties:
- Program
Text string - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- Default
Connection string - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- Description string
- Description of the log timeline.
- End
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Name string
- Name of the log timeline.
- Start
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Time
Range int - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
.
- Program
Text string - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- Default
Connection string - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- Description string
- Description of the log timeline.
- End
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Name string
- Name of the log timeline.
- Start
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Time
Range int - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
.
- program
Text String - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- default
Connection String - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description String
- Description of the log timeline.
- end
Time Integer - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name String
- Name of the log timeline.
- start
Time Integer - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time
Range Integer - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
.
- program
Text string - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- default
Connection string - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description string
- Description of the log timeline.
- end
Time number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name string
- Name of the log timeline.
- start
Time number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time
Range number - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
.
- program_
text str - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- default_
connection str - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description str
- Description of the log timeline.
- end_
time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name str
- Name of the log timeline.
- start_
time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time_
range int - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
.
- program
Text String - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- default
Connection String - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description String
- Description of the log timeline.
- end
Time Number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name String
- Name of the log timeline.
- start
Time Number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time
Range Number - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Timeline resource produces the following output properties:
Look up Existing Timeline Resource
Get an existing Timeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TimelineState, opts?: CustomResourceOptions): Timeline
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
default_connection: Optional[str] = None,
description: Optional[str] = None,
end_time: Optional[int] = None,
name: Optional[str] = None,
program_text: Optional[str] = None,
start_time: Optional[int] = None,
time_range: Optional[int] = None,
url: Optional[str] = None) -> Timeline
func GetTimeline(ctx *Context, name string, id IDInput, state *TimelineState, opts ...ResourceOption) (*Timeline, error)
public static Timeline Get(string name, Input<string> id, TimelineState? state, CustomResourceOptions? opts = null)
public static Timeline get(String name, Output<String> id, TimelineState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Default
Connection string - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- Description string
- Description of the log timeline.
- End
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Name string
- Name of the log timeline.
- Program
Text string - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- Start
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Time
Range int - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
. - Url string
- The URL of the log timeline.
- Default
Connection string - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- Description string
- Description of the log timeline.
- End
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Name string
- Name of the log timeline.
- Program
Text string - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- Start
Time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - Time
Range int - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
. - Url string
- The URL of the log timeline.
- default
Connection String - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description String
- Description of the log timeline.
- end
Time Integer - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name String
- Name of the log timeline.
- program
Text String - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- start
Time Integer - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time
Range Integer - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
. - url String
- The URL of the log timeline.
- default
Connection string - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description string
- Description of the log timeline.
- end
Time number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name string
- Name of the log timeline.
- program
Text string - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- start
Time number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time
Range number - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
. - url string
- The URL of the log timeline.
- default_
connection str - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description str
- Description of the log timeline.
- end_
time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name str
- Name of the log timeline.
- program_
text str - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- start_
time int - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time_
range int - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
. - url str
- The URL of the log timeline.
- default
Connection String - The connection that the log timeline uses to fetch data. This could be Splunk Enterprise, Splunk Enterprise Cloud or Observability Cloud.
- description String
- Description of the log timeline.
- end
Time Number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - name String
- Name of the log timeline.
- program
Text String - Signalflow program text for the log timeline. More info at https://dev.splunk.com/observability/docs/.
- start
Time Number - Seconds since epoch. Used for visualization. Conflicts with
time_range
. - time
Range Number - From when to display data. Splunk Observability Cloud time syntax (e.g.
"-5m"
,"-1h"
). Conflicts withstart_time
andend_time
. - url String
- The URL of the log timeline.
Package Details
- Repository
- SignalFx pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
signalfx
Terraform Provider.