signalfx.EventFeedChart
Explore with Pulumi AI
Displays a listing of events as a widget in a dashboard.
Example
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  mynote0:
    type: signalfx:EventFeedChart
    properties:
      name: Important Dashboard Note
      description: Lorem ipsum dolor sit amet
      programText: A = events(eventType='My Event Type').publish(label='A')
      vizOptions:
        - label: A
          color: orange
Create EventFeedChart Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EventFeedChart(name: string, args: EventFeedChartArgs, opts?: CustomResourceOptions);@overload
def EventFeedChart(resource_name: str,
                   args: EventFeedChartArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def EventFeedChart(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   program_text: Optional[str] = None,
                   description: Optional[str] = None,
                   end_time: Optional[int] = None,
                   name: Optional[str] = None,
                   start_time: Optional[int] = None,
                   tags: Optional[Sequence[str]] = None,
                   time_range: Optional[int] = None)func NewEventFeedChart(ctx *Context, name string, args EventFeedChartArgs, opts ...ResourceOption) (*EventFeedChart, error)public EventFeedChart(string name, EventFeedChartArgs args, CustomResourceOptions? opts = null)
public EventFeedChart(String name, EventFeedChartArgs args)
public EventFeedChart(String name, EventFeedChartArgs args, CustomResourceOptions options)
type: signalfx:EventFeedChart
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 EventFeedChartArgs
- 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 EventFeedChartArgs
- 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 EventFeedChartArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EventFeedChartArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EventFeedChartArgs
- 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 eventFeedChartResource = new SignalFx.EventFeedChart("eventFeedChartResource", new()
{
    ProgramText = "string",
    Description = "string",
    EndTime = 0,
    Name = "string",
    StartTime = 0,
    Tags = new[]
    {
        "string",
    },
    TimeRange = 0,
});
example, err := signalfx.NewEventFeedChart(ctx, "eventFeedChartResource", &signalfx.EventFeedChartArgs{
	ProgramText: pulumi.String("string"),
	Description: pulumi.String("string"),
	EndTime:     pulumi.Int(0),
	Name:        pulumi.String("string"),
	StartTime:   pulumi.Int(0),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
	TimeRange: pulumi.Int(0),
})
var eventFeedChartResource = new EventFeedChart("eventFeedChartResource", EventFeedChartArgs.builder()
    .programText("string")
    .description("string")
    .endTime(0)
    .name("string")
    .startTime(0)
    .tags("string")
    .timeRange(0)
    .build());
event_feed_chart_resource = signalfx.EventFeedChart("eventFeedChartResource",
    program_text="string",
    description="string",
    end_time=0,
    name="string",
    start_time=0,
    tags=["string"],
    time_range=0)
const eventFeedChartResource = new signalfx.EventFeedChart("eventFeedChartResource", {
    programText: "string",
    description: "string",
    endTime: 0,
    name: "string",
    startTime: 0,
    tags: ["string"],
    timeRange: 0,
});
type: signalfx:EventFeedChart
properties:
    description: string
    endTime: 0
    name: string
    programText: string
    startTime: 0
    tags:
        - string
    timeRange: 0
EventFeedChart Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EventFeedChart resource accepts the following input properties:
- ProgramText string
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- Description string
- Description of the text note.
- EndTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- Name string
- Name of the text note.
- StartTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- List<string>
- Tags associated with the resource
- TimeRange int
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- ProgramText string
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- Description string
- Description of the text note.
- EndTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- Name string
- Name of the text note.
- StartTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- []string
- Tags associated with the resource
- TimeRange int
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- programText String
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- description String
- Description of the text note.
- endTime Integer
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name String
- Name of the text note.
- startTime Integer
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- List<String>
- Tags associated with the resource
- timeRange Integer
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- programText string
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- description string
- Description of the text note.
- endTime number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name string
- Name of the text note.
- startTime number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- string[]
- Tags associated with the resource
- timeRange number
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- program_text str
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- description str
- Description of the text note.
- end_time int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name str
- Name of the text note.
- start_time int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- Sequence[str]
- Tags associated with the resource
- time_range int
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- programText String
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- description String
- Description of the text note.
- endTime Number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name String
- Name of the text note.
- startTime Number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- List<String>
- Tags associated with the resource
- timeRange Number
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
Outputs
All input properties are implicitly available as output properties. Additionally, the EventFeedChart resource produces the following output properties:
Look up Existing EventFeedChart Resource
Get an existing EventFeedChart 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?: EventFeedChartState, opts?: CustomResourceOptions): EventFeedChart@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        end_time: Optional[int] = None,
        name: Optional[str] = None,
        program_text: Optional[str] = None,
        start_time: Optional[int] = None,
        tags: Optional[Sequence[str]] = None,
        time_range: Optional[int] = None,
        url: Optional[str] = None) -> EventFeedChartfunc GetEventFeedChart(ctx *Context, name string, id IDInput, state *EventFeedChartState, opts ...ResourceOption) (*EventFeedChart, error)public static EventFeedChart Get(string name, Input<string> id, EventFeedChartState? state, CustomResourceOptions? opts = null)public static EventFeedChart get(String name, Output<String> id, EventFeedChartState state, CustomResourceOptions options)resources:  _:    type: signalfx:EventFeedChart    get:      id: ${id}- 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.
- Description string
- Description of the text note.
- EndTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- Name string
- Name of the text note.
- ProgramText string
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- StartTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- List<string>
- Tags associated with the resource
- TimeRange int
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- Url string
- The URL of the chart.
- Description string
- Description of the text note.
- EndTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- Name string
- Name of the text note.
- ProgramText string
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- StartTime int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- []string
- Tags associated with the resource
- TimeRange int
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- Url string
- The URL of the chart.
- description String
- Description of the text note.
- endTime Integer
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name String
- Name of the text note.
- programText String
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- startTime Integer
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- List<String>
- Tags associated with the resource
- timeRange Integer
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- url String
- The URL of the chart.
- description string
- Description of the text note.
- endTime number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name string
- Name of the text note.
- programText string
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- startTime number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- string[]
- Tags associated with the resource
- timeRange number
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- url string
- The URL of the chart.
- description str
- Description of the text note.
- end_time int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name str
- Name of the text note.
- program_text str
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- start_time int
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- Sequence[str]
- Tags associated with the resource
- time_range int
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- url str
- The URL of the chart.
- description String
- Description of the text note.
- endTime Number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- name String
- Name of the text note.
- programText String
- Signalflow program text for the chart. More infoin the Splunk Observability Cloud docs.
- startTime Number
- Seconds since epoch. Used for visualization. Conflicts with time_range.
- List<String>
- Tags associated with the resource
- timeRange Number
- From when to display data. Splunk Observability Cloud time syntax (e.g. "-5m","-1h"). Conflicts withstart_timeandend_time.
- url String
- The URL of the chart.
Package Details
- Repository
- SignalFx pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the signalfxTerraform Provider.