1. Packages
  2. SignalFx
  3. API Docs
  4. TimeChart
SignalFx v7.1.1 published on Tuesday, Feb 27, 2024 by Pulumi

signalfx.TimeChart

Explore with Pulumi AI

signalfx logo
SignalFx v7.1.1 published on Tuesday, Feb 27, 2024 by Pulumi

    Provides a Splunk Observability Cloud time chart resource. This can be used to create and manage the different types of time charts.

    Time charts display data points over a period of time.

    Example

    import * as pulumi from "@pulumi/pulumi";
    import * as signalfx from "@pulumi/signalfx";
    
    const mychart0 = new signalfx.TimeChart("mychart0", {
        axisLeft: {
            label: "CPU Total Idle",
            lowWatermark: 1000,
        },
        legendOptionsFields: [
            {
                enabled: false,
                property: "collector",
            },
            {
                enabled: false,
                property: "hostname",
            },
        ],
        plotType: "LineChart",
        programText: `data("cpu.total.idle").publish(label="CPU Idle")
    
    `,
        showDataMarkers: true,
        timeRange: 3600,
        vizOptions: [{
            axis: "left",
            color: "orange",
            label: "CPU Idle",
        }],
    });
    
    import pulumi
    import pulumi_signalfx as signalfx
    
    mychart0 = signalfx.TimeChart("mychart0",
        axis_left=signalfx.TimeChartAxisLeftArgs(
            label="CPU Total Idle",
            low_watermark=1000,
        ),
        legend_options_fields=[
            signalfx.TimeChartLegendOptionsFieldArgs(
                enabled=False,
                property="collector",
            ),
            signalfx.TimeChartLegendOptionsFieldArgs(
                enabled=False,
                property="hostname",
            ),
        ],
        plot_type="LineChart",
        program_text="""data("cpu.total.idle").publish(label="CPU Idle")
    
    """,
        show_data_markers=True,
        time_range=3600,
        viz_options=[signalfx.TimeChartVizOptionArgs(
            axis="left",
            color="orange",
            label="CPU Idle",
        )])
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using SignalFx = Pulumi.SignalFx;
    
    return await Deployment.RunAsync(() => 
    {
        var mychart0 = new SignalFx.TimeChart("mychart0", new()
        {
            AxisLeft = new SignalFx.Inputs.TimeChartAxisLeftArgs
            {
                Label = "CPU Total Idle",
                LowWatermark = 1000,
            },
            LegendOptionsFields = new[]
            {
                new SignalFx.Inputs.TimeChartLegendOptionsFieldArgs
                {
                    Enabled = false,
                    Property = "collector",
                },
                new SignalFx.Inputs.TimeChartLegendOptionsFieldArgs
                {
                    Enabled = false,
                    Property = "hostname",
                },
            },
            PlotType = "LineChart",
            ProgramText = @"data(""cpu.total.idle"").publish(label=""CPU Idle"")
    
    ",
            ShowDataMarkers = true,
            TimeRange = 3600,
            VizOptions = new[]
            {
                new SignalFx.Inputs.TimeChartVizOptionArgs
                {
                    Axis = "left",
                    Color = "orange",
                    Label = "CPU Idle",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-signalfx/sdk/v7/go/signalfx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := signalfx.NewTimeChart(ctx, "mychart0", &signalfx.TimeChartArgs{
    			AxisLeft: &signalfx.TimeChartAxisLeftArgs{
    				Label:        pulumi.String("CPU Total Idle"),
    				LowWatermark: pulumi.Float64(1000),
    			},
    			LegendOptionsFields: signalfx.TimeChartLegendOptionsFieldArray{
    				&signalfx.TimeChartLegendOptionsFieldArgs{
    					Enabled:  pulumi.Bool(false),
    					Property: pulumi.String("collector"),
    				},
    				&signalfx.TimeChartLegendOptionsFieldArgs{
    					Enabled:  pulumi.Bool(false),
    					Property: pulumi.String("hostname"),
    				},
    			},
    			PlotType:        pulumi.String("LineChart"),
    			ProgramText:     pulumi.String("data(\"cpu.total.idle\").publish(label=\"CPU Idle\")\n\n"),
    			ShowDataMarkers: pulumi.Bool(true),
    			TimeRange:       pulumi.Int(3600),
    			VizOptions: signalfx.TimeChartVizOptionArray{
    				&signalfx.TimeChartVizOptionArgs{
    					Axis:  pulumi.String("left"),
    					Color: pulumi.String("orange"),
    					Label: pulumi.String("CPU Idle"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.signalfx.TimeChart;
    import com.pulumi.signalfx.TimeChartArgs;
    import com.pulumi.signalfx.inputs.TimeChartAxisLeftArgs;
    import com.pulumi.signalfx.inputs.TimeChartLegendOptionsFieldArgs;
    import com.pulumi.signalfx.inputs.TimeChartVizOptionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var mychart0 = new TimeChart("mychart0", TimeChartArgs.builder()        
                .axisLeft(TimeChartAxisLeftArgs.builder()
                    .label("CPU Total Idle")
                    .lowWatermark(1000)
                    .build())
                .legendOptionsFields(            
                    TimeChartLegendOptionsFieldArgs.builder()
                        .enabled(false)
                        .property("collector")
                        .build(),
                    TimeChartLegendOptionsFieldArgs.builder()
                        .enabled(false)
                        .property("hostname")
                        .build())
                .plotType("LineChart")
                .programText("""
    data("cpu.total.idle").publish(label="CPU Idle")
    
                """)
                .showDataMarkers(true)
                .timeRange(3600)
                .vizOptions(TimeChartVizOptionArgs.builder()
                    .axis("left")
                    .color("orange")
                    .label("CPU Idle")
                    .build())
                .build());
    
        }
    }
    
    resources:
      mychart0:
        type: signalfx:TimeChart
        properties:
          axisLeft:
            label: CPU Total Idle
            lowWatermark: 1000
          legendOptionsFields:
            - enabled: false
              property: collector
            - enabled: false
              property: hostname
          plotType: LineChart
          programText: |+
            data("cpu.total.idle").publish(label="CPU Idle")        
    
          showDataMarkers: true
          timeRange: 3600
          vizOptions:
            - axis: left
              color: orange
              label: CPU Idle
    

    Arguments

    The following arguments are supported in the resource block:

    • name - (Required) Name of the chart.
    • program_text - (Required) Signalflow program text for the chart. More info in the Splunk Observability Cloud docs.
    • plot_type - (Optional) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram". Default: "LineChart".
    • description - (Optional) Description of the chart.
    • axes_precision - (Optional) Specifies the digits Splunk Observability Cloud displays for values plotted on the chart. Defaults to 3.
    • unit_prefix - (Optional) Must be "Metric" or "Binary". "Metric" by default.
    • color_by - (Optional) Must be "Dimension" or "Metric". "Dimension" by default.
    • minimum_resolution - (Optional) The minimum resolution (in seconds) to use for computing the underlying program.
    • max_delay - (Optional) How long (in seconds) to wait for late datapoints.
    • timezone - (Optional) A string denotes the geographic region associated with the time zone.
    • disable_sampling - (Optional) If false, samples a subset of the output MTS, which improves UI performance. false by default
    • time_range - (Optional) How many seconds ago from which to display data. For example, the last hour would be 3600, etc. Conflicts with start_time and end_time.
    • start_time - (Optional) Seconds since epoch. Used for visualization. Conflicts with time_range.
    • end_time - (Optional) Seconds since epoch. Used for visualization. Conflicts with time_range.
    • axes_include_zero - (Optional) Force the chart to display zero on the y-axes, even if none of the data is near zero.
    • axis_left - (Optional) Set of axis options.
      • label - (Optional) Label of the left axis.
      • min_value - (Optional) The minimum value for the left axis.
      • max_value - (Optional) The maximum value for the left axis.
      • high_watermark - (Optional) A line to draw as a high watermark.
      • high_watermark_label - (Optional) A label to attach to the high watermark line.
      • low_watermark - (Optional) A line to draw as a low watermark.
      • low_watermark_label - (Optional) A label to attach to the low watermark line.
    • axis_right - (Optional) Set of axis options.
      • label - (Optional) Label of the right axis.
      • min_value - (Optional) The minimum value for the right axis.
      • max_value - (Optional) The maximum value for the right axis.
      • high_watermark - (Optional) A line to draw as a high watermark.
      • high_watermark_label - (Optional) A label to attach to the high watermark line.
      • low_watermark - (Optional) A line to draw as a low watermark.
      • low_watermark_label - (Optional) A label to attach to the low watermark line.
    • viz_options - (Optional) Plot-level customization options, associated with a publish statement.
      • label - (Required) Label used in the publish statement that displays the plot (metric time series data) you want to customize.
      • display_name - (Optional) Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
      • color - (Optional) Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
      • axis - (Optional) Y-axis associated with values for this plot. Must be either right or left.
      • plot_type - (Optional) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram". Chart level plot_type by default.
      • value_unit - (Optional) A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes). Values values are Bit, Kilobit, Megabit, Gigabit, Terabit, Petabit, Exabit, Zettabit, Yottabit, Byte, Kibibyte, Mebibyte, Gibibyte (note: this was previously typoed as Gigibyte), Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week.
      • value_prefix, value_suffix - (Optional) Arbitrary prefix/suffix to display with the value of this plot.
    • event_options - (Optional) Event customization options, associated with a publish statement. You will need to use this to change settings for any events(…) statements you use.
      • label - (Required) Label used in the publish statement that displays the event query you want to customize.
      • display_name - (Optional) Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
      • color - (Optional) Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
    • histogram_options - (Optional) Only used when plot_type is "Histogram". Histogram specific options.
      • color_theme - (Optional) Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
    • legend_fields_to_hide - (Optional) List of properties that should not be displayed in the chart legend (i.e. dimension names). All the properties are visible by default. Deprecated, please use legend_options_fields.
    • legend_options_fields - (Optional) List of property names and enabled flags that should be displayed in the data table for the chart, in the order provided. This option cannot be used with legend_fields_to_hide.
      • property The name of the property to display. Note the special values of plot_label (corresponding with the API’s sf_metric) which shows the label of the time series publish() and metric (corresponding with the API’s sf_originatingMetric) that shows the name of the metric for the time series being displayed.
      • enabled True or False depending on if you want the property to be shown or hidden.
    • on_chart_legend_dimension - (Optional) Dimensions to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: "metric", "plot_label" and any dimension.
    • show_event_lines - (Optional) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred. false by default.
    • show_data_markers - (Optional) Show markers (circles) for each datapoint used to draw line or area charts. false by default.
    • stacked - (Optional) Whether area and bar charts in the visualization should be stacked. false by default.
    • timezone - (Optional) Time zone that SignalFlow uses as the basis of calendar window transformation methods. For example, if you set “timezone”: “Europe/Paris” and then use the transformation sum(cycle=“week”, cycle_start=“Monday”) in your chart’s SignalFlow program, the calendar window starts on Monday, Paris time. See the full list of timezones for more. "UTC" by default.

    Attributes

    In a addition to all arguments above, the following attributes are exported:

    • id - The ID of the chart.
    • url - The URL of the chart.

    Create TimeChart Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TimeChart(name: string, args: TimeChartArgs, opts?: CustomResourceOptions);
    @overload
    def TimeChart(resource_name: str,
                  args: TimeChartArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def TimeChart(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  program_text: Optional[str] = None,
                  max_delay: Optional[int] = None,
                  axis_right: Optional[TimeChartAxisRightArgs] = None,
                  name: Optional[str] = None,
                  on_chart_legend_dimension: Optional[str] = None,
                  description: Optional[str] = None,
                  disable_sampling: Optional[bool] = None,
                  end_time: Optional[int] = None,
                  event_options: Optional[Sequence[TimeChartEventOptionArgs]] = None,
                  histogram_options: Optional[Sequence[TimeChartHistogramOptionArgs]] = None,
                  legend_fields_to_hides: Optional[Sequence[str]] = None,
                  legend_options_fields: Optional[Sequence[TimeChartLegendOptionsFieldArgs]] = None,
                  axes_include_zero: Optional[bool] = None,
                  viz_options: Optional[Sequence[TimeChartVizOptionArgs]] = None,
                  axis_left: Optional[TimeChartAxisLeftArgs] = None,
                  color_by: Optional[str] = None,
                  plot_type: Optional[str] = None,
                  axes_precision: Optional[int] = None,
                  show_data_markers: Optional[bool] = None,
                  show_event_lines: Optional[bool] = None,
                  stacked: Optional[bool] = None,
                  start_time: Optional[int] = None,
                  tags: Optional[Sequence[str]] = None,
                  time_range: Optional[int] = None,
                  timezone: Optional[str] = None,
                  unit_prefix: Optional[str] = None,
                  minimum_resolution: Optional[int] = None)
    func NewTimeChart(ctx *Context, name string, args TimeChartArgs, opts ...ResourceOption) (*TimeChart, error)
    public TimeChart(string name, TimeChartArgs args, CustomResourceOptions? opts = null)
    public TimeChart(String name, TimeChartArgs args)
    public TimeChart(String name, TimeChartArgs args, CustomResourceOptions options)
    
    type: signalfx:TimeChart
    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 TimeChartArgs
    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 TimeChartArgs
    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 TimeChartArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TimeChartArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TimeChartArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var timeChartResource = new SignalFx.TimeChart("timeChartResource", new()
    {
        ProgramText = "string",
        MaxDelay = 0,
        AxisRight = new SignalFx.Inputs.TimeChartAxisRightArgs
        {
            HighWatermark = 0,
            HighWatermarkLabel = "string",
            Label = "string",
            LowWatermark = 0,
            LowWatermarkLabel = "string",
            MaxValue = 0,
            MinValue = 0,
            Watermarks = new[]
            {
                new SignalFx.Inputs.TimeChartAxisRightWatermarkArgs
                {
                    Value = 0,
                    Label = "string",
                },
            },
        },
        Name = "string",
        OnChartLegendDimension = "string",
        Description = "string",
        DisableSampling = false,
        EndTime = 0,
        EventOptions = new[]
        {
            new SignalFx.Inputs.TimeChartEventOptionArgs
            {
                Label = "string",
                Color = "string",
                DisplayName = "string",
            },
        },
        HistogramOptions = new[]
        {
            new SignalFx.Inputs.TimeChartHistogramOptionArgs
            {
                ColorTheme = "string",
            },
        },
        LegendOptionsFields = new[]
        {
            new SignalFx.Inputs.TimeChartLegendOptionsFieldArgs
            {
                Property = "string",
                Enabled = false,
            },
        },
        AxesIncludeZero = false,
        VizOptions = new[]
        {
            new SignalFx.Inputs.TimeChartVizOptionArgs
            {
                Label = "string",
                Axis = "string",
                Color = "string",
                DisplayName = "string",
                PlotType = "string",
                ValuePrefix = "string",
                ValueSuffix = "string",
                ValueUnit = "string",
            },
        },
        AxisLeft = new SignalFx.Inputs.TimeChartAxisLeftArgs
        {
            HighWatermark = 0,
            HighWatermarkLabel = "string",
            Label = "string",
            LowWatermark = 0,
            LowWatermarkLabel = "string",
            MaxValue = 0,
            MinValue = 0,
            Watermarks = new[]
            {
                new SignalFx.Inputs.TimeChartAxisLeftWatermarkArgs
                {
                    Value = 0,
                    Label = "string",
                },
            },
        },
        ColorBy = "string",
        PlotType = "string",
        AxesPrecision = 0,
        ShowDataMarkers = false,
        ShowEventLines = false,
        Stacked = false,
        StartTime = 0,
        TimeRange = 0,
        Timezone = "string",
        UnitPrefix = "string",
        MinimumResolution = 0,
    });
    
    example, err := signalfx.NewTimeChart(ctx, "timeChartResource", &signalfx.TimeChartArgs{
    	ProgramText: pulumi.String("string"),
    	MaxDelay:    pulumi.Int(0),
    	AxisRight: &signalfx.TimeChartAxisRightArgs{
    		HighWatermark:      pulumi.Float64(0),
    		HighWatermarkLabel: pulumi.String("string"),
    		Label:              pulumi.String("string"),
    		LowWatermark:       pulumi.Float64(0),
    		LowWatermarkLabel:  pulumi.String("string"),
    		MaxValue:           pulumi.Float64(0),
    		MinValue:           pulumi.Float64(0),
    		Watermarks: signalfx.TimeChartAxisRightWatermarkArray{
    			&signalfx.TimeChartAxisRightWatermarkArgs{
    				Value: pulumi.Float64(0),
    				Label: pulumi.String("string"),
    			},
    		},
    	},
    	Name:                   pulumi.String("string"),
    	OnChartLegendDimension: pulumi.String("string"),
    	Description:            pulumi.String("string"),
    	DisableSampling:        pulumi.Bool(false),
    	EndTime:                pulumi.Int(0),
    	EventOptions: signalfx.TimeChartEventOptionArray{
    		&signalfx.TimeChartEventOptionArgs{
    			Label:       pulumi.String("string"),
    			Color:       pulumi.String("string"),
    			DisplayName: pulumi.String("string"),
    		},
    	},
    	HistogramOptions: signalfx.TimeChartHistogramOptionArray{
    		&signalfx.TimeChartHistogramOptionArgs{
    			ColorTheme: pulumi.String("string"),
    		},
    	},
    	LegendOptionsFields: signalfx.TimeChartLegendOptionsFieldArray{
    		&signalfx.TimeChartLegendOptionsFieldArgs{
    			Property: pulumi.String("string"),
    			Enabled:  pulumi.Bool(false),
    		},
    	},
    	AxesIncludeZero: pulumi.Bool(false),
    	VizOptions: signalfx.TimeChartVizOptionArray{
    		&signalfx.TimeChartVizOptionArgs{
    			Label:       pulumi.String("string"),
    			Axis:        pulumi.String("string"),
    			Color:       pulumi.String("string"),
    			DisplayName: pulumi.String("string"),
    			PlotType:    pulumi.String("string"),
    			ValuePrefix: pulumi.String("string"),
    			ValueSuffix: pulumi.String("string"),
    			ValueUnit:   pulumi.String("string"),
    		},
    	},
    	AxisLeft: &signalfx.TimeChartAxisLeftArgs{
    		HighWatermark:      pulumi.Float64(0),
    		HighWatermarkLabel: pulumi.String("string"),
    		Label:              pulumi.String("string"),
    		LowWatermark:       pulumi.Float64(0),
    		LowWatermarkLabel:  pulumi.String("string"),
    		MaxValue:           pulumi.Float64(0),
    		MinValue:           pulumi.Float64(0),
    		Watermarks: signalfx.TimeChartAxisLeftWatermarkArray{
    			&signalfx.TimeChartAxisLeftWatermarkArgs{
    				Value: pulumi.Float64(0),
    				Label: pulumi.String("string"),
    			},
    		},
    	},
    	ColorBy:           pulumi.String("string"),
    	PlotType:          pulumi.String("string"),
    	AxesPrecision:     pulumi.Int(0),
    	ShowDataMarkers:   pulumi.Bool(false),
    	ShowEventLines:    pulumi.Bool(false),
    	Stacked:           pulumi.Bool(false),
    	StartTime:         pulumi.Int(0),
    	TimeRange:         pulumi.Int(0),
    	Timezone:          pulumi.String("string"),
    	UnitPrefix:        pulumi.String("string"),
    	MinimumResolution: pulumi.Int(0),
    })
    
    var timeChartResource = new TimeChart("timeChartResource", TimeChartArgs.builder()        
        .programText("string")
        .maxDelay(0)
        .axisRight(TimeChartAxisRightArgs.builder()
            .highWatermark(0)
            .highWatermarkLabel("string")
            .label("string")
            .lowWatermark(0)
            .lowWatermarkLabel("string")
            .maxValue(0)
            .minValue(0)
            .watermarks(TimeChartAxisRightWatermarkArgs.builder()
                .value(0)
                .label("string")
                .build())
            .build())
        .name("string")
        .onChartLegendDimension("string")
        .description("string")
        .disableSampling(false)
        .endTime(0)
        .eventOptions(TimeChartEventOptionArgs.builder()
            .label("string")
            .color("string")
            .displayName("string")
            .build())
        .histogramOptions(TimeChartHistogramOptionArgs.builder()
            .colorTheme("string")
            .build())
        .legendOptionsFields(TimeChartLegendOptionsFieldArgs.builder()
            .property("string")
            .enabled(false)
            .build())
        .axesIncludeZero(false)
        .vizOptions(TimeChartVizOptionArgs.builder()
            .label("string")
            .axis("string")
            .color("string")
            .displayName("string")
            .plotType("string")
            .valuePrefix("string")
            .valueSuffix("string")
            .valueUnit("string")
            .build())
        .axisLeft(TimeChartAxisLeftArgs.builder()
            .highWatermark(0)
            .highWatermarkLabel("string")
            .label("string")
            .lowWatermark(0)
            .lowWatermarkLabel("string")
            .maxValue(0)
            .minValue(0)
            .watermarks(TimeChartAxisLeftWatermarkArgs.builder()
                .value(0)
                .label("string")
                .build())
            .build())
        .colorBy("string")
        .plotType("string")
        .axesPrecision(0)
        .showDataMarkers(false)
        .showEventLines(false)
        .stacked(false)
        .startTime(0)
        .timeRange(0)
        .timezone("string")
        .unitPrefix("string")
        .minimumResolution(0)
        .build());
    
    time_chart_resource = signalfx.TimeChart("timeChartResource",
        program_text="string",
        max_delay=0,
        axis_right=signalfx.TimeChartAxisRightArgs(
            high_watermark=0,
            high_watermark_label="string",
            label="string",
            low_watermark=0,
            low_watermark_label="string",
            max_value=0,
            min_value=0,
            watermarks=[signalfx.TimeChartAxisRightWatermarkArgs(
                value=0,
                label="string",
            )],
        ),
        name="string",
        on_chart_legend_dimension="string",
        description="string",
        disable_sampling=False,
        end_time=0,
        event_options=[signalfx.TimeChartEventOptionArgs(
            label="string",
            color="string",
            display_name="string",
        )],
        histogram_options=[signalfx.TimeChartHistogramOptionArgs(
            color_theme="string",
        )],
        legend_options_fields=[signalfx.TimeChartLegendOptionsFieldArgs(
            property="string",
            enabled=False,
        )],
        axes_include_zero=False,
        viz_options=[signalfx.TimeChartVizOptionArgs(
            label="string",
            axis="string",
            color="string",
            display_name="string",
            plot_type="string",
            value_prefix="string",
            value_suffix="string",
            value_unit="string",
        )],
        axis_left=signalfx.TimeChartAxisLeftArgs(
            high_watermark=0,
            high_watermark_label="string",
            label="string",
            low_watermark=0,
            low_watermark_label="string",
            max_value=0,
            min_value=0,
            watermarks=[signalfx.TimeChartAxisLeftWatermarkArgs(
                value=0,
                label="string",
            )],
        ),
        color_by="string",
        plot_type="string",
        axes_precision=0,
        show_data_markers=False,
        show_event_lines=False,
        stacked=False,
        start_time=0,
        time_range=0,
        timezone="string",
        unit_prefix="string",
        minimum_resolution=0)
    
    const timeChartResource = new signalfx.TimeChart("timeChartResource", {
        programText: "string",
        maxDelay: 0,
        axisRight: {
            highWatermark: 0,
            highWatermarkLabel: "string",
            label: "string",
            lowWatermark: 0,
            lowWatermarkLabel: "string",
            maxValue: 0,
            minValue: 0,
            watermarks: [{
                value: 0,
                label: "string",
            }],
        },
        name: "string",
        onChartLegendDimension: "string",
        description: "string",
        disableSampling: false,
        endTime: 0,
        eventOptions: [{
            label: "string",
            color: "string",
            displayName: "string",
        }],
        histogramOptions: [{
            colorTheme: "string",
        }],
        legendOptionsFields: [{
            property: "string",
            enabled: false,
        }],
        axesIncludeZero: false,
        vizOptions: [{
            label: "string",
            axis: "string",
            color: "string",
            displayName: "string",
            plotType: "string",
            valuePrefix: "string",
            valueSuffix: "string",
            valueUnit: "string",
        }],
        axisLeft: {
            highWatermark: 0,
            highWatermarkLabel: "string",
            label: "string",
            lowWatermark: 0,
            lowWatermarkLabel: "string",
            maxValue: 0,
            minValue: 0,
            watermarks: [{
                value: 0,
                label: "string",
            }],
        },
        colorBy: "string",
        plotType: "string",
        axesPrecision: 0,
        showDataMarkers: false,
        showEventLines: false,
        stacked: false,
        startTime: 0,
        timeRange: 0,
        timezone: "string",
        unitPrefix: "string",
        minimumResolution: 0,
    });
    
    type: signalfx:TimeChart
    properties:
        axesIncludeZero: false
        axesPrecision: 0
        axisLeft:
            highWatermark: 0
            highWatermarkLabel: string
            label: string
            lowWatermark: 0
            lowWatermarkLabel: string
            maxValue: 0
            minValue: 0
            watermarks:
                - label: string
                  value: 0
        axisRight:
            highWatermark: 0
            highWatermarkLabel: string
            label: string
            lowWatermark: 0
            lowWatermarkLabel: string
            maxValue: 0
            minValue: 0
            watermarks:
                - label: string
                  value: 0
        colorBy: string
        description: string
        disableSampling: false
        endTime: 0
        eventOptions:
            - color: string
              displayName: string
              label: string
        histogramOptions:
            - colorTheme: string
        legendOptionsFields:
            - enabled: false
              property: string
        maxDelay: 0
        minimumResolution: 0
        name: string
        onChartLegendDimension: string
        plotType: string
        programText: string
        showDataMarkers: false
        showEventLines: false
        stacked: false
        startTime: 0
        timeRange: 0
        timezone: string
        unitPrefix: string
        vizOptions:
            - axis: string
              color: string
              displayName: string
              label: string
              plotType: string
              valuePrefix: string
              valueSuffix: string
              valueUnit: string
    

    TimeChart 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 TimeChart resource accepts the following input properties:

    ProgramText string
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    AxesIncludeZero bool
    Force y-axes to always show zero
    AxesPrecision int
    Force a specific number of significant digits in the y-axis
    AxisLeft Pulumi.SignalFx.Inputs.TimeChartAxisLeft
    AxisRight Pulumi.SignalFx.Inputs.TimeChartAxisRight
    ColorBy string
    (Dimension by default) Must be "Dimension" or "Metric"
    Description string
    Description of the chart
    DisableSampling bool
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    EndTime int
    Seconds since epoch to end the visualization
    EventOptions List<Pulumi.SignalFx.Inputs.TimeChartEventOption>
    Event display customization options, associated with a publish statement
    HistogramOptions List<Pulumi.SignalFx.Inputs.TimeChartHistogramOption>
    Options specific to Histogram charts
    LegendFieldsToHides List<string>
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    LegendOptionsFields List<Pulumi.SignalFx.Inputs.TimeChartLegendOptionsField>
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    MaxDelay int
    How long (in seconds) to wait for late datapoints
    MinimumResolution int
    The minimum resolution (in seconds) to use for computing the underlying program
    Name string
    Name of the chart
    OnChartLegendDimension string
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    PlotType string
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    ShowDataMarkers bool
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    ShowEventLines bool
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    Stacked bool
    (false by default) Whether area and bar charts in the visualization should be stacked
    StartTime int
    Seconds since epoch to start the visualization
    Tags List<string>
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    TimeRange int
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    Timezone string
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    UnitPrefix string
    (Metric by default) Must be "Metric" or "Binary"
    VizOptions List<Pulumi.SignalFx.Inputs.TimeChartVizOption>
    Plot-level customization options, associated with a publish statement
    ProgramText string
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    AxesIncludeZero bool
    Force y-axes to always show zero
    AxesPrecision int
    Force a specific number of significant digits in the y-axis
    AxisLeft TimeChartAxisLeftArgs
    AxisRight TimeChartAxisRightArgs
    ColorBy string
    (Dimension by default) Must be "Dimension" or "Metric"
    Description string
    Description of the chart
    DisableSampling bool
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    EndTime int
    Seconds since epoch to end the visualization
    EventOptions []TimeChartEventOptionArgs
    Event display customization options, associated with a publish statement
    HistogramOptions []TimeChartHistogramOptionArgs
    Options specific to Histogram charts
    LegendFieldsToHides []string
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    LegendOptionsFields []TimeChartLegendOptionsFieldArgs
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    MaxDelay int
    How long (in seconds) to wait for late datapoints
    MinimumResolution int
    The minimum resolution (in seconds) to use for computing the underlying program
    Name string
    Name of the chart
    OnChartLegendDimension string
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    PlotType string
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    ShowDataMarkers bool
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    ShowEventLines bool
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    Stacked bool
    (false by default) Whether area and bar charts in the visualization should be stacked
    StartTime int
    Seconds since epoch to start the visualization
    Tags []string
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    TimeRange int
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    Timezone string
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    UnitPrefix string
    (Metric by default) Must be "Metric" or "Binary"
    VizOptions []TimeChartVizOptionArgs
    Plot-level customization options, associated with a publish statement
    programText String
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    axesIncludeZero Boolean
    Force y-axes to always show zero
    axesPrecision Integer
    Force a specific number of significant digits in the y-axis
    axisLeft TimeChartAxisLeft
    axisRight TimeChartAxisRight
    colorBy String
    (Dimension by default) Must be "Dimension" or "Metric"
    description String
    Description of the chart
    disableSampling Boolean
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    endTime Integer
    Seconds since epoch to end the visualization
    eventOptions List<TimeChartEventOption>
    Event display customization options, associated with a publish statement
    histogramOptions List<TimeChartHistogramOption>
    Options specific to Histogram charts
    legendFieldsToHides List<String>
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legendOptionsFields List<TimeChartLegendOptionsField>
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    maxDelay Integer
    How long (in seconds) to wait for late datapoints
    minimumResolution Integer
    The minimum resolution (in seconds) to use for computing the underlying program
    name String
    Name of the chart
    onChartLegendDimension String
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plotType String
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    showDataMarkers Boolean
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    showEventLines Boolean
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked Boolean
    (false by default) Whether area and bar charts in the visualization should be stacked
    startTime Integer
    Seconds since epoch to start the visualization
    tags List<String>
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    timeRange Integer
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone String
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unitPrefix String
    (Metric by default) Must be "Metric" or "Binary"
    vizOptions List<TimeChartVizOption>
    Plot-level customization options, associated with a publish statement
    programText string
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    axesIncludeZero boolean
    Force y-axes to always show zero
    axesPrecision number
    Force a specific number of significant digits in the y-axis
    axisLeft TimeChartAxisLeft
    axisRight TimeChartAxisRight
    colorBy string
    (Dimension by default) Must be "Dimension" or "Metric"
    description string
    Description of the chart
    disableSampling boolean
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    endTime number
    Seconds since epoch to end the visualization
    eventOptions TimeChartEventOption[]
    Event display customization options, associated with a publish statement
    histogramOptions TimeChartHistogramOption[]
    Options specific to Histogram charts
    legendFieldsToHides string[]
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legendOptionsFields TimeChartLegendOptionsField[]
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    maxDelay number
    How long (in seconds) to wait for late datapoints
    minimumResolution number
    The minimum resolution (in seconds) to use for computing the underlying program
    name string
    Name of the chart
    onChartLegendDimension string
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plotType string
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    showDataMarkers boolean
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    showEventLines boolean
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked boolean
    (false by default) Whether area and bar charts in the visualization should be stacked
    startTime number
    Seconds since epoch to start the visualization
    tags string[]
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    timeRange number
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone string
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unitPrefix string
    (Metric by default) Must be "Metric" or "Binary"
    vizOptions TimeChartVizOption[]
    Plot-level customization options, associated with a publish statement
    program_text str
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    axes_include_zero bool
    Force y-axes to always show zero
    axes_precision int
    Force a specific number of significant digits in the y-axis
    axis_left TimeChartAxisLeftArgs
    axis_right TimeChartAxisRightArgs
    color_by str
    (Dimension by default) Must be "Dimension" or "Metric"
    description str
    Description of the chart
    disable_sampling bool
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    end_time int
    Seconds since epoch to end the visualization
    event_options Sequence[TimeChartEventOptionArgs]
    Event display customization options, associated with a publish statement
    histogram_options Sequence[TimeChartHistogramOptionArgs]
    Options specific to Histogram charts
    legend_fields_to_hides Sequence[str]
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legend_options_fields Sequence[TimeChartLegendOptionsFieldArgs]
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    max_delay int
    How long (in seconds) to wait for late datapoints
    minimum_resolution int
    The minimum resolution (in seconds) to use for computing the underlying program
    name str
    Name of the chart
    on_chart_legend_dimension str
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plot_type str
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    show_data_markers bool
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    show_event_lines bool
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked bool
    (false by default) Whether area and bar charts in the visualization should be stacked
    start_time int
    Seconds since epoch to start the visualization
    tags Sequence[str]
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    time_range int
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone str
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unit_prefix str
    (Metric by default) Must be "Metric" or "Binary"
    viz_options Sequence[TimeChartVizOptionArgs]
    Plot-level customization options, associated with a publish statement
    programText String
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    axesIncludeZero Boolean
    Force y-axes to always show zero
    axesPrecision Number
    Force a specific number of significant digits in the y-axis
    axisLeft Property Map
    axisRight Property Map
    colorBy String
    (Dimension by default) Must be "Dimension" or "Metric"
    description String
    Description of the chart
    disableSampling Boolean
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    endTime Number
    Seconds since epoch to end the visualization
    eventOptions List<Property Map>
    Event display customization options, associated with a publish statement
    histogramOptions List<Property Map>
    Options specific to Histogram charts
    legendFieldsToHides List<String>
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legendOptionsFields List<Property Map>
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    maxDelay Number
    How long (in seconds) to wait for late datapoints
    minimumResolution Number
    The minimum resolution (in seconds) to use for computing the underlying program
    name String
    Name of the chart
    onChartLegendDimension String
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plotType String
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    showDataMarkers Boolean
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    showEventLines Boolean
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked Boolean
    (false by default) Whether area and bar charts in the visualization should be stacked
    startTime Number
    Seconds since epoch to start the visualization
    tags List<String>
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    timeRange Number
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone String
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unitPrefix String
    (Metric by default) Must be "Metric" or "Binary"
    vizOptions List<Property Map>
    Plot-level customization options, associated with a publish statement

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TimeChart resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Url string
    URL of the chart
    Id string
    The provider-assigned unique ID for this managed resource.
    Url string
    URL of the chart
    id String
    The provider-assigned unique ID for this managed resource.
    url String
    URL of the chart
    id string
    The provider-assigned unique ID for this managed resource.
    url string
    URL of the chart
    id str
    The provider-assigned unique ID for this managed resource.
    url str
    URL of the chart
    id String
    The provider-assigned unique ID for this managed resource.
    url String
    URL of the chart

    Look up Existing TimeChart Resource

    Get an existing TimeChart 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?: TimeChartState, opts?: CustomResourceOptions): TimeChart
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            axes_include_zero: Optional[bool] = None,
            axes_precision: Optional[int] = None,
            axis_left: Optional[TimeChartAxisLeftArgs] = None,
            axis_right: Optional[TimeChartAxisRightArgs] = None,
            color_by: Optional[str] = None,
            description: Optional[str] = None,
            disable_sampling: Optional[bool] = None,
            end_time: Optional[int] = None,
            event_options: Optional[Sequence[TimeChartEventOptionArgs]] = None,
            histogram_options: Optional[Sequence[TimeChartHistogramOptionArgs]] = None,
            legend_fields_to_hides: Optional[Sequence[str]] = None,
            legend_options_fields: Optional[Sequence[TimeChartLegendOptionsFieldArgs]] = None,
            max_delay: Optional[int] = None,
            minimum_resolution: Optional[int] = None,
            name: Optional[str] = None,
            on_chart_legend_dimension: Optional[str] = None,
            plot_type: Optional[str] = None,
            program_text: Optional[str] = None,
            show_data_markers: Optional[bool] = None,
            show_event_lines: Optional[bool] = None,
            stacked: Optional[bool] = None,
            start_time: Optional[int] = None,
            tags: Optional[Sequence[str]] = None,
            time_range: Optional[int] = None,
            timezone: Optional[str] = None,
            unit_prefix: Optional[str] = None,
            url: Optional[str] = None,
            viz_options: Optional[Sequence[TimeChartVizOptionArgs]] = None) -> TimeChart
    func GetTimeChart(ctx *Context, name string, id IDInput, state *TimeChartState, opts ...ResourceOption) (*TimeChart, error)
    public static TimeChart Get(string name, Input<string> id, TimeChartState? state, CustomResourceOptions? opts = null)
    public static TimeChart get(String name, Output<String> id, TimeChartState 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.
    The following state arguments are supported:
    AxesIncludeZero bool
    Force y-axes to always show zero
    AxesPrecision int
    Force a specific number of significant digits in the y-axis
    AxisLeft Pulumi.SignalFx.Inputs.TimeChartAxisLeft
    AxisRight Pulumi.SignalFx.Inputs.TimeChartAxisRight
    ColorBy string
    (Dimension by default) Must be "Dimension" or "Metric"
    Description string
    Description of the chart
    DisableSampling bool
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    EndTime int
    Seconds since epoch to end the visualization
    EventOptions List<Pulumi.SignalFx.Inputs.TimeChartEventOption>
    Event display customization options, associated with a publish statement
    HistogramOptions List<Pulumi.SignalFx.Inputs.TimeChartHistogramOption>
    Options specific to Histogram charts
    LegendFieldsToHides List<string>
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    LegendOptionsFields List<Pulumi.SignalFx.Inputs.TimeChartLegendOptionsField>
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    MaxDelay int
    How long (in seconds) to wait for late datapoints
    MinimumResolution int
    The minimum resolution (in seconds) to use for computing the underlying program
    Name string
    Name of the chart
    OnChartLegendDimension string
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    PlotType string
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    ProgramText string
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    ShowDataMarkers bool
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    ShowEventLines bool
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    Stacked bool
    (false by default) Whether area and bar charts in the visualization should be stacked
    StartTime int
    Seconds since epoch to start the visualization
    Tags List<string>
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    TimeRange int
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    Timezone string
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    UnitPrefix string
    (Metric by default) Must be "Metric" or "Binary"
    Url string
    URL of the chart
    VizOptions List<Pulumi.SignalFx.Inputs.TimeChartVizOption>
    Plot-level customization options, associated with a publish statement
    AxesIncludeZero bool
    Force y-axes to always show zero
    AxesPrecision int
    Force a specific number of significant digits in the y-axis
    AxisLeft TimeChartAxisLeftArgs
    AxisRight TimeChartAxisRightArgs
    ColorBy string
    (Dimension by default) Must be "Dimension" or "Metric"
    Description string
    Description of the chart
    DisableSampling bool
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    EndTime int
    Seconds since epoch to end the visualization
    EventOptions []TimeChartEventOptionArgs
    Event display customization options, associated with a publish statement
    HistogramOptions []TimeChartHistogramOptionArgs
    Options specific to Histogram charts
    LegendFieldsToHides []string
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    LegendOptionsFields []TimeChartLegendOptionsFieldArgs
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    MaxDelay int
    How long (in seconds) to wait for late datapoints
    MinimumResolution int
    The minimum resolution (in seconds) to use for computing the underlying program
    Name string
    Name of the chart
    OnChartLegendDimension string
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    PlotType string
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    ProgramText string
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    ShowDataMarkers bool
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    ShowEventLines bool
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    Stacked bool
    (false by default) Whether area and bar charts in the visualization should be stacked
    StartTime int
    Seconds since epoch to start the visualization
    Tags []string
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    TimeRange int
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    Timezone string
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    UnitPrefix string
    (Metric by default) Must be "Metric" or "Binary"
    Url string
    URL of the chart
    VizOptions []TimeChartVizOptionArgs
    Plot-level customization options, associated with a publish statement
    axesIncludeZero Boolean
    Force y-axes to always show zero
    axesPrecision Integer
    Force a specific number of significant digits in the y-axis
    axisLeft TimeChartAxisLeft
    axisRight TimeChartAxisRight
    colorBy String
    (Dimension by default) Must be "Dimension" or "Metric"
    description String
    Description of the chart
    disableSampling Boolean
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    endTime Integer
    Seconds since epoch to end the visualization
    eventOptions List<TimeChartEventOption>
    Event display customization options, associated with a publish statement
    histogramOptions List<TimeChartHistogramOption>
    Options specific to Histogram charts
    legendFieldsToHides List<String>
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legendOptionsFields List<TimeChartLegendOptionsField>
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    maxDelay Integer
    How long (in seconds) to wait for late datapoints
    minimumResolution Integer
    The minimum resolution (in seconds) to use for computing the underlying program
    name String
    Name of the chart
    onChartLegendDimension String
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plotType String
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    programText String
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    showDataMarkers Boolean
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    showEventLines Boolean
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked Boolean
    (false by default) Whether area and bar charts in the visualization should be stacked
    startTime Integer
    Seconds since epoch to start the visualization
    tags List<String>
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    timeRange Integer
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone String
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unitPrefix String
    (Metric by default) Must be "Metric" or "Binary"
    url String
    URL of the chart
    vizOptions List<TimeChartVizOption>
    Plot-level customization options, associated with a publish statement
    axesIncludeZero boolean
    Force y-axes to always show zero
    axesPrecision number
    Force a specific number of significant digits in the y-axis
    axisLeft TimeChartAxisLeft
    axisRight TimeChartAxisRight
    colorBy string
    (Dimension by default) Must be "Dimension" or "Metric"
    description string
    Description of the chart
    disableSampling boolean
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    endTime number
    Seconds since epoch to end the visualization
    eventOptions TimeChartEventOption[]
    Event display customization options, associated with a publish statement
    histogramOptions TimeChartHistogramOption[]
    Options specific to Histogram charts
    legendFieldsToHides string[]
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legendOptionsFields TimeChartLegendOptionsField[]
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    maxDelay number
    How long (in seconds) to wait for late datapoints
    minimumResolution number
    The minimum resolution (in seconds) to use for computing the underlying program
    name string
    Name of the chart
    onChartLegendDimension string
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plotType string
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    programText string
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    showDataMarkers boolean
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    showEventLines boolean
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked boolean
    (false by default) Whether area and bar charts in the visualization should be stacked
    startTime number
    Seconds since epoch to start the visualization
    tags string[]
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    timeRange number
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone string
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unitPrefix string
    (Metric by default) Must be "Metric" or "Binary"
    url string
    URL of the chart
    vizOptions TimeChartVizOption[]
    Plot-level customization options, associated with a publish statement
    axes_include_zero bool
    Force y-axes to always show zero
    axes_precision int
    Force a specific number of significant digits in the y-axis
    axis_left TimeChartAxisLeftArgs
    axis_right TimeChartAxisRightArgs
    color_by str
    (Dimension by default) Must be "Dimension" or "Metric"
    description str
    Description of the chart
    disable_sampling bool
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    end_time int
    Seconds since epoch to end the visualization
    event_options Sequence[TimeChartEventOptionArgs]
    Event display customization options, associated with a publish statement
    histogram_options Sequence[TimeChartHistogramOptionArgs]
    Options specific to Histogram charts
    legend_fields_to_hides Sequence[str]
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legend_options_fields Sequence[TimeChartLegendOptionsFieldArgs]
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    max_delay int
    How long (in seconds) to wait for late datapoints
    minimum_resolution int
    The minimum resolution (in seconds) to use for computing the underlying program
    name str
    Name of the chart
    on_chart_legend_dimension str
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plot_type str
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    program_text str
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    show_data_markers bool
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    show_event_lines bool
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked bool
    (false by default) Whether area and bar charts in the visualization should be stacked
    start_time int
    Seconds since epoch to start the visualization
    tags Sequence[str]
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    time_range int
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone str
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unit_prefix str
    (Metric by default) Must be "Metric" or "Binary"
    url str
    URL of the chart
    viz_options Sequence[TimeChartVizOptionArgs]
    Plot-level customization options, associated with a publish statement
    axesIncludeZero Boolean
    Force y-axes to always show zero
    axesPrecision Number
    Force a specific number of significant digits in the y-axis
    axisLeft Property Map
    axisRight Property Map
    colorBy String
    (Dimension by default) Must be "Dimension" or "Metric"
    description String
    Description of the chart
    disableSampling Boolean
    (false by default) If false, samples a subset of the output MTS, which improves UI performance
    endTime Number
    Seconds since epoch to end the visualization
    eventOptions List<Property Map>
    Event display customization options, associated with a publish statement
    histogramOptions List<Property Map>
    Options specific to Histogram charts
    legendFieldsToHides List<String>
    List of properties that shouldn't be displayed in the chart legend (i.e. dimension names)

    Deprecated: Please use legend_options_fields

    legendOptionsFields List<Property Map>
    List of property and enabled flags to control the order and presence of datatable labels in a chart.
    maxDelay Number
    How long (in seconds) to wait for late datapoints
    minimumResolution Number
    The minimum resolution (in seconds) to use for computing the underlying program
    name String
    Name of the chart
    onChartLegendDimension String
    Dimension to show in the on-chart legend. On-chart legend is off unless a dimension is specified. Allowed: 'metric', 'plot_label' and any dimension.
    plotType String
    (LineChart by default) The default plot display style for the visualization. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    programText String
    Signalflow program text for the chart. More info at "https://developers.signalfx.com/docs/signalflow-overview"
    showDataMarkers Boolean
    (false by default) Show markers (circles) for each datapoint used to draw line or area charts
    showEventLines Boolean
    (false by default) Whether vertical highlight lines should be drawn in the visualizations at times when events occurred
    stacked Boolean
    (false by default) Whether area and bar charts in the visualization should be stacked
    startTime Number
    Seconds since epoch to start the visualization
    tags List<String>
    Tags associated with the chart

    Deprecated: signalfx_time_chart.tags is being removed in the next release

    timeRange Number
    Seconds to display in the visualization. This is a rolling range from the current time. Example: 3600 = -1h
    timezone String
    The property value is a string that denotes the geographic region associated with the time zone, (e.g. Australia/Sydney)
    unitPrefix String
    (Metric by default) Must be "Metric" or "Binary"
    url String
    URL of the chart
    vizOptions List<Property Map>
    Plot-level customization options, associated with a publish statement

    Supporting Types

    TimeChartAxisLeft, TimeChartAxisLeftArgs

    HighWatermark double
    A line to draw as a high watermark
    HighWatermarkLabel string
    A label to attach to the high watermark line
    Label string
    Label of the left axis
    LowWatermark double
    A line to draw as a low watermark
    LowWatermarkLabel string
    A label to attach to the low watermark line
    MaxValue double
    The maximum value for the left axis
    MinValue double
    The minimum value for the left axis
    Watermarks List<Pulumi.SignalFx.Inputs.TimeChartAxisLeftWatermark>
    HighWatermark float64
    A line to draw as a high watermark
    HighWatermarkLabel string
    A label to attach to the high watermark line
    Label string
    Label of the left axis
    LowWatermark float64
    A line to draw as a low watermark
    LowWatermarkLabel string
    A label to attach to the low watermark line
    MaxValue float64
    The maximum value for the left axis
    MinValue float64
    The minimum value for the left axis
    Watermarks []TimeChartAxisLeftWatermark
    highWatermark Double
    A line to draw as a high watermark
    highWatermarkLabel String
    A label to attach to the high watermark line
    label String
    Label of the left axis
    lowWatermark Double
    A line to draw as a low watermark
    lowWatermarkLabel String
    A label to attach to the low watermark line
    maxValue Double
    The maximum value for the left axis
    minValue Double
    The minimum value for the left axis
    watermarks List<TimeChartAxisLeftWatermark>
    highWatermark number
    A line to draw as a high watermark
    highWatermarkLabel string
    A label to attach to the high watermark line
    label string
    Label of the left axis
    lowWatermark number
    A line to draw as a low watermark
    lowWatermarkLabel string
    A label to attach to the low watermark line
    maxValue number
    The maximum value for the left axis
    minValue number
    The minimum value for the left axis
    watermarks TimeChartAxisLeftWatermark[]
    high_watermark float
    A line to draw as a high watermark
    high_watermark_label str
    A label to attach to the high watermark line
    label str
    Label of the left axis
    low_watermark float
    A line to draw as a low watermark
    low_watermark_label str
    A label to attach to the low watermark line
    max_value float
    The maximum value for the left axis
    min_value float
    The minimum value for the left axis
    watermarks Sequence[TimeChartAxisLeftWatermark]
    highWatermark Number
    A line to draw as a high watermark
    highWatermarkLabel String
    A label to attach to the high watermark line
    label String
    Label of the left axis
    lowWatermark Number
    A line to draw as a low watermark
    lowWatermarkLabel String
    A label to attach to the low watermark line
    maxValue Number
    The maximum value for the left axis
    minValue Number
    The minimum value for the left axis
    watermarks List<Property Map>

    TimeChartAxisLeftWatermark, TimeChartAxisLeftWatermarkArgs

    Value double
    Axis value where the watermark line will be displayed
    Label string
    Label to display associated with the watermark line
    Value float64
    Axis value where the watermark line will be displayed
    Label string
    Label to display associated with the watermark line
    value Double
    Axis value where the watermark line will be displayed
    label String
    Label to display associated with the watermark line
    value number
    Axis value where the watermark line will be displayed
    label string
    Label to display associated with the watermark line
    value float
    Axis value where the watermark line will be displayed
    label str
    Label to display associated with the watermark line
    value Number
    Axis value where the watermark line will be displayed
    label String
    Label to display associated with the watermark line

    TimeChartAxisRight, TimeChartAxisRightArgs

    HighWatermark double
    A line to draw as a high watermark
    HighWatermarkLabel string
    A label to attach to the high watermark line
    Label string
    Label of the right axis
    LowWatermark double
    A line to draw as a low watermark
    LowWatermarkLabel string
    A label to attach to the low watermark line
    MaxValue double
    The maximum value for the right axis
    MinValue double
    The minimum value for the right axis
    Watermarks List<Pulumi.SignalFx.Inputs.TimeChartAxisRightWatermark>
    HighWatermark float64
    A line to draw as a high watermark
    HighWatermarkLabel string
    A label to attach to the high watermark line
    Label string
    Label of the right axis
    LowWatermark float64
    A line to draw as a low watermark
    LowWatermarkLabel string
    A label to attach to the low watermark line
    MaxValue float64
    The maximum value for the right axis
    MinValue float64
    The minimum value for the right axis
    Watermarks []TimeChartAxisRightWatermark
    highWatermark Double
    A line to draw as a high watermark
    highWatermarkLabel String
    A label to attach to the high watermark line
    label String
    Label of the right axis
    lowWatermark Double
    A line to draw as a low watermark
    lowWatermarkLabel String
    A label to attach to the low watermark line
    maxValue Double
    The maximum value for the right axis
    minValue Double
    The minimum value for the right axis
    watermarks List<TimeChartAxisRightWatermark>
    highWatermark number
    A line to draw as a high watermark
    highWatermarkLabel string
    A label to attach to the high watermark line
    label string
    Label of the right axis
    lowWatermark number
    A line to draw as a low watermark
    lowWatermarkLabel string
    A label to attach to the low watermark line
    maxValue number
    The maximum value for the right axis
    minValue number
    The minimum value for the right axis
    watermarks TimeChartAxisRightWatermark[]
    high_watermark float
    A line to draw as a high watermark
    high_watermark_label str
    A label to attach to the high watermark line
    label str
    Label of the right axis
    low_watermark float
    A line to draw as a low watermark
    low_watermark_label str
    A label to attach to the low watermark line
    max_value float
    The maximum value for the right axis
    min_value float
    The minimum value for the right axis
    watermarks Sequence[TimeChartAxisRightWatermark]
    highWatermark Number
    A line to draw as a high watermark
    highWatermarkLabel String
    A label to attach to the high watermark line
    label String
    Label of the right axis
    lowWatermark Number
    A line to draw as a low watermark
    lowWatermarkLabel String
    A label to attach to the low watermark line
    maxValue Number
    The maximum value for the right axis
    minValue Number
    The minimum value for the right axis
    watermarks List<Property Map>

    TimeChartAxisRightWatermark, TimeChartAxisRightWatermarkArgs

    Value double
    Axis value where the watermark line will be displayed
    Label string
    Label to display associated with the watermark line
    Value float64
    Axis value where the watermark line will be displayed
    Label string
    Label to display associated with the watermark line
    value Double
    Axis value where the watermark line will be displayed
    label String
    Label to display associated with the watermark line
    value number
    Axis value where the watermark line will be displayed
    label string
    Label to display associated with the watermark line
    value float
    Axis value where the watermark line will be displayed
    label str
    Label to display associated with the watermark line
    value Number
    Axis value where the watermark line will be displayed
    label String
    Label to display associated with the watermark line

    TimeChartEventOption, TimeChartEventOptionArgs

    Label string
    The label used in the publish statement that displays the events you want to customize
    Color string
    Color to use
    DisplayName string
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    Label string
    The label used in the publish statement that displays the events you want to customize
    Color string
    Color to use
    DisplayName string
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    label String
    The label used in the publish statement that displays the events you want to customize
    color String
    Color to use
    displayName String
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    label string
    The label used in the publish statement that displays the events you want to customize
    color string
    Color to use
    displayName string
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    label str
    The label used in the publish statement that displays the events you want to customize
    color str
    Color to use
    display_name str
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    label String
    The label used in the publish statement that displays the events you want to customize
    color String
    Color to use
    displayName String
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.

    TimeChartHistogramOption, TimeChartHistogramOptionArgs

    ColorTheme string
    Base color theme to use for the graph.
    ColorTheme string
    Base color theme to use for the graph.
    colorTheme String
    Base color theme to use for the graph.
    colorTheme string
    Base color theme to use for the graph.
    color_theme str
    Base color theme to use for the graph.
    colorTheme String
    Base color theme to use for the graph.

    TimeChartLegendOptionsField, TimeChartLegendOptionsFieldArgs

    Property string
    The name of a property to hide or show in the data table.
    Enabled bool
    (true by default) Determines if this property is displayed in the data table.
    Property string
    The name of a property to hide or show in the data table.
    Enabled bool
    (true by default) Determines if this property is displayed in the data table.
    property String
    The name of a property to hide or show in the data table.
    enabled Boolean
    (true by default) Determines if this property is displayed in the data table.
    property string
    The name of a property to hide or show in the data table.
    enabled boolean
    (true by default) Determines if this property is displayed in the data table.
    property str
    The name of a property to hide or show in the data table.
    enabled bool
    (true by default) Determines if this property is displayed in the data table.
    property String
    The name of a property to hide or show in the data table.
    enabled Boolean
    (true by default) Determines if this property is displayed in the data table.

    TimeChartVizOption, TimeChartVizOptionArgs

    Label string
    The label used in the publish statement that displays the plot (metric time series data) you want to customize
    Axis string
    The Y-axis associated with values for this plot. Must be either "right" or "left". Defaults to "left".
    Color string
    Color to use
    DisplayName string
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    PlotType string
    (Chart plot_type by default) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    ValuePrefix string
    An arbitrary prefix to display with the value of this plot
    ValueSuffix string
    An arbitrary suffix to display with the value of this plot
    ValueUnit string
    A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes)
    Label string
    The label used in the publish statement that displays the plot (metric time series data) you want to customize
    Axis string
    The Y-axis associated with values for this plot. Must be either "right" or "left". Defaults to "left".
    Color string
    Color to use
    DisplayName string
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    PlotType string
    (Chart plot_type by default) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    ValuePrefix string
    An arbitrary prefix to display with the value of this plot
    ValueSuffix string
    An arbitrary suffix to display with the value of this plot
    ValueUnit string
    A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes)
    label String
    The label used in the publish statement that displays the plot (metric time series data) you want to customize
    axis String
    The Y-axis associated with values for this plot. Must be either "right" or "left". Defaults to "left".
    color String
    Color to use
    displayName String
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    plotType String
    (Chart plot_type by default) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    valuePrefix String
    An arbitrary prefix to display with the value of this plot
    valueSuffix String
    An arbitrary suffix to display with the value of this plot
    valueUnit String
    A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes)
    label string
    The label used in the publish statement that displays the plot (metric time series data) you want to customize
    axis string
    The Y-axis associated with values for this plot. Must be either "right" or "left". Defaults to "left".
    color string
    Color to use
    displayName string
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    plotType string
    (Chart plot_type by default) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    valuePrefix string
    An arbitrary prefix to display with the value of this plot
    valueSuffix string
    An arbitrary suffix to display with the value of this plot
    valueUnit string
    A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes)
    label str
    The label used in the publish statement that displays the plot (metric time series data) you want to customize
    axis str
    The Y-axis associated with values for this plot. Must be either "right" or "left". Defaults to "left".
    color str
    Color to use
    display_name str
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    plot_type str
    (Chart plot_type by default) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    value_prefix str
    An arbitrary prefix to display with the value of this plot
    value_suffix str
    An arbitrary suffix to display with the value of this plot
    value_unit str
    A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes)
    label String
    The label used in the publish statement that displays the plot (metric time series data) you want to customize
    axis String
    The Y-axis associated with values for this plot. Must be either "right" or "left". Defaults to "left".
    color String
    Color to use
    displayName String
    Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
    plotType String
    (Chart plot_type by default) The visualization style to use. Must be "LineChart", "AreaChart", "ColumnChart", or "Histogram"
    valuePrefix String
    An arbitrary prefix to display with the value of this plot
    valueSuffix String
    An arbitrary suffix to display with the value of this plot
    valueUnit String
    A unit to attach to this plot. Units support automatic scaling (eg thousands of bytes will be displayed as kilobytes)

    Package Details

    Repository
    SignalFx pulumi/pulumi-signalfx
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the signalfx Terraform Provider.
    signalfx logo
    SignalFx v7.1.1 published on Tuesday, Feb 27, 2024 by Pulumi