signalfx.TimeChart
Provides a SignalFx 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 Usage
using System.Collections.Generic;
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 (
"fmt"
"github.com/pulumi/pulumi-signalfx/sdk/v5/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(fmt.Sprintf("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());
}
}
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",
)])
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",
}],
});
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
Create TimeChart Resource
new TimeChart(name: string, args: TimeChartArgs, opts?: CustomResourceOptions);
@overload
def TimeChart(resource_name: 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,
viz_options: Optional[Sequence[TimeChartVizOptionArgs]] = None)
@overload
def TimeChart(resource_name: str,
args: TimeChartArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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:
- Program
Text string Signalflow program text for the chart. More info in the SignalFx docs.
- Axes
Include boolZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- Axes
Precision int Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- Axis
Left Pulumi.Signal Fx. Inputs. Time Chart Axis Left Args Set of axis options.
- Axis
Right Pulumi.Signal Fx. Inputs. Time Chart Axis Right Args Set of axis options.
- Color
By string Must be
"Dimension"
or"Metric"
."Dimension"
by default.- Description string
Description of the chart.
- Disable
Sampling bool If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- End
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- Event
Options List<Pulumi.Signal Fx. Inputs. Time Chart Event Option Args> Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- Histogram
Options List<Pulumi.Signal Fx. Inputs. Time Chart Histogram Option Args> Only used when
plot_type
is"Histogram"
. Histogram specific options.- Legend
Fields List<string>To Hides 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
.Please use legend_options_fields
- Legend
Options List<Pulumi.Fields Signal Fx. Inputs. Time Chart Legend Options Field Args> 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
.- 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 string
Name of the chart.
- On
Chart stringLegend Dimension 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.- Plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- Show
Data boolMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- Show
Event boolLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- Stacked bool
Whether area and bar charts in the visualization should be stacked.
false
by default.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- List<string>
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- Time
Range int How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- Timezone string
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.- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Viz
Options List<Pulumi.Signal Fx. Inputs. Time Chart Viz Option Args> Plot-level customization options, associated with a publish statement.
- Program
Text string Signalflow program text for the chart. More info in the SignalFx docs.
- Axes
Include boolZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- Axes
Precision int Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- Axis
Left TimeChart Axis Left Args Set of axis options.
- Axis
Right TimeChart Axis Right Args Set of axis options.
- Color
By string Must be
"Dimension"
or"Metric"
."Dimension"
by default.- Description string
Description of the chart.
- Disable
Sampling bool If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- End
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- Event
Options []TimeChart Event Option Args Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- Histogram
Options []TimeChart Histogram Option Args Only used when
plot_type
is"Histogram"
. Histogram specific options.- Legend
Fields []stringTo Hides 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
.Please use legend_options_fields
- Legend
Options []TimeFields Chart Legend Options Field Args 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
.- 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 string
Name of the chart.
- On
Chart stringLegend Dimension 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.- Plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- Show
Data boolMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- Show
Event boolLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- Stacked bool
Whether area and bar charts in the visualization should be stacked.
false
by default.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- []string
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- Time
Range int How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- Timezone string
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.- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Viz
Options []TimeChart Viz Option Args Plot-level customization options, associated with a publish statement.
- program
Text String Signalflow program text for the chart. More info in the SignalFx docs.
- axes
Include BooleanZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes
Precision Integer Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis
Left TimeChart Axis Left Args Set of axis options.
- axis
Right TimeChart Axis Right Args Set of axis options.
- color
By String Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description String
Description of the chart.
- disable
Sampling Boolean If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end
Time Integer Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event
Options List<TimeChart Event Option Args> Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram
Options List<TimeChart Histogram Option Args> Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend
Fields List<String>To Hides 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
.Please use legend_options_fields
- legend
Options List<TimeFields Chart Legend Options Field Args> 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
.- max
Delay Integer How long (in seconds) to wait for late datapoints.
- minimum
Resolution Integer The minimum resolution (in seconds) to use for computing the underlying program.
- name String
Name of the chart.
- on
Chart StringLegend Dimension 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.- plot
Type String The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- show
Data BooleanMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show
Event BooleanLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked Boolean
Whether area and bar charts in the visualization should be stacked.
false
by default.- start
Time Integer Seconds since epoch. Used for visualization. Conflicts with
time_range
.- List<String>
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time
Range Integer How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone String
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.- unit
Prefix String Must be
"Metric"
or"Binary
"."Metric"
by default.- viz
Options List<TimeChart Viz Option Args> Plot-level customization options, associated with a publish statement.
- program
Text string Signalflow program text for the chart. More info in the SignalFx docs.
- axes
Include booleanZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes
Precision number Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis
Left TimeChart Axis Left Args Set of axis options.
- axis
Right TimeChart Axis Right Args Set of axis options.
- color
By string Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description string
Description of the chart.
- disable
Sampling boolean If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end
Time number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event
Options TimeChart Event Option Args[] Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram
Options TimeChart Histogram Option Args[] Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend
Fields string[]To Hides 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
.Please use legend_options_fields
- legend
Options TimeFields Chart Legend Options Field Args[] 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
.- max
Delay number How long (in seconds) to wait for late datapoints.
- minimum
Resolution number The minimum resolution (in seconds) to use for computing the underlying program.
- name string
Name of the chart.
- on
Chart stringLegend Dimension 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.- plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- show
Data booleanMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show
Event booleanLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked boolean
Whether area and bar charts in the visualization should be stacked.
false
by default.- start
Time number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- string[]
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time
Range number How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone string
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.- unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- viz
Options TimeChart Viz Option Args[] Plot-level customization options, associated with a publish statement.
- program_
text str Signalflow program text for the chart. More info in the SignalFx docs.
- axes_
include_ boolzero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes_
precision int Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis_
left TimeChart Axis Left Args Set of axis options.
- axis_
right TimeChart Axis Right Args Set of axis options.
- color_
by str Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description str
Description of the chart.
- disable_
sampling bool If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end_
time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event_
options Sequence[TimeChart Event Option Args] Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram_
options Sequence[TimeChart Histogram Option Args] Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend_
fields_ Sequence[str]to_ hides 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
.Please use legend_options_fields
- legend_
options_ Sequence[Timefields Chart Legend Options Field Args] 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
.- 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_ strlegend_ dimension 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.- plot_
type str The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- show_
data_ boolmarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show_
event_ boollines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked bool
Whether area and bar charts in the visualization should be stacked.
false
by default.- start_
time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- Sequence[str]
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time_
range int How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone str
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.- unit_
prefix str Must be
"Metric"
or"Binary
"."Metric"
by default.- viz_
options Sequence[TimeChart Viz Option Args] Plot-level customization options, associated with a publish statement.
- program
Text String Signalflow program text for the chart. More info in the SignalFx docs.
- axes
Include BooleanZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes
Precision Number Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis
Left Property Map Set of axis options.
- axis
Right Property Map Set of axis options.
- color
By String Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description String
Description of the chart.
- disable
Sampling Boolean If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end
Time Number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event
Options List<Property Map> Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram
Options List<Property Map> Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend
Fields List<String>To Hides 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
.Please use legend_options_fields
- legend
Options List<Property Map>Fields 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
.- max
Delay Number How long (in seconds) to wait for late datapoints.
- minimum
Resolution Number The minimum resolution (in seconds) to use for computing the underlying program.
- name String
Name of the chart.
- on
Chart StringLegend Dimension 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.- plot
Type String The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- show
Data BooleanMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show
Event BooleanLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked Boolean
Whether area and bar charts in the visualization should be stacked.
false
by default.- start
Time Number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- List<String>
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time
Range Number How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone String
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.- unit
Prefix String Must be
"Metric"
or"Binary
"."Metric"
by default.- viz
Options 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:
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.
- Axes
Include boolZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- Axes
Precision int Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- Axis
Left Pulumi.Signal Fx. Inputs. Time Chart Axis Left Args Set of axis options.
- Axis
Right Pulumi.Signal Fx. Inputs. Time Chart Axis Right Args Set of axis options.
- Color
By string Must be
"Dimension"
or"Metric"
."Dimension"
by default.- Description string
Description of the chart.
- Disable
Sampling bool If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- End
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- Event
Options List<Pulumi.Signal Fx. Inputs. Time Chart Event Option Args> Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- Histogram
Options List<Pulumi.Signal Fx. Inputs. Time Chart Histogram Option Args> Only used when
plot_type
is"Histogram"
. Histogram specific options.- Legend
Fields List<string>To Hides 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
.Please use legend_options_fields
- Legend
Options List<Pulumi.Fields Signal Fx. Inputs. Time Chart Legend Options Field Args> 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
.- 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 string
Name of the chart.
- On
Chart stringLegend Dimension 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.- Plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- Program
Text string Signalflow program text for the chart. More info in the SignalFx docs.
- Show
Data boolMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- Show
Event boolLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- Stacked bool
Whether area and bar charts in the visualization should be stacked.
false
by default.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- List<string>
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- Time
Range int How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- Timezone string
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.- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Url string
The URL of the chart.
- Viz
Options List<Pulumi.Signal Fx. Inputs. Time Chart Viz Option Args> Plot-level customization options, associated with a publish statement.
- Axes
Include boolZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- Axes
Precision int Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- Axis
Left TimeChart Axis Left Args Set of axis options.
- Axis
Right TimeChart Axis Right Args Set of axis options.
- Color
By string Must be
"Dimension"
or"Metric"
."Dimension"
by default.- Description string
Description of the chart.
- Disable
Sampling bool If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- End
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- Event
Options []TimeChart Event Option Args Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- Histogram
Options []TimeChart Histogram Option Args Only used when
plot_type
is"Histogram"
. Histogram specific options.- Legend
Fields []stringTo Hides 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
.Please use legend_options_fields
- Legend
Options []TimeFields Chart Legend Options Field Args 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
.- 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 string
Name of the chart.
- On
Chart stringLegend Dimension 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.- Plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- Program
Text string Signalflow program text for the chart. More info in the SignalFx docs.
- Show
Data boolMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- Show
Event boolLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- Stacked bool
Whether area and bar charts in the visualization should be stacked.
false
by default.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- []string
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- Time
Range int How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- Timezone string
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.- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Url string
The URL of the chart.
- Viz
Options []TimeChart Viz Option Args Plot-level customization options, associated with a publish statement.
- axes
Include BooleanZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes
Precision Integer Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis
Left TimeChart Axis Left Args Set of axis options.
- axis
Right TimeChart Axis Right Args Set of axis options.
- color
By String Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description String
Description of the chart.
- disable
Sampling Boolean If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end
Time Integer Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event
Options List<TimeChart Event Option Args> Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram
Options List<TimeChart Histogram Option Args> Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend
Fields List<String>To Hides 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
.Please use legend_options_fields
- legend
Options List<TimeFields Chart Legend Options Field Args> 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
.- max
Delay Integer How long (in seconds) to wait for late datapoints.
- minimum
Resolution Integer The minimum resolution (in seconds) to use for computing the underlying program.
- name String
Name of the chart.
- on
Chart StringLegend Dimension 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.- plot
Type String The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- program
Text String Signalflow program text for the chart. More info in the SignalFx docs.
- show
Data BooleanMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show
Event BooleanLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked Boolean
Whether area and bar charts in the visualization should be stacked.
false
by default.- start
Time Integer Seconds since epoch. Used for visualization. Conflicts with
time_range
.- List<String>
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time
Range Integer How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone String
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.- unit
Prefix String Must be
"Metric"
or"Binary
"."Metric"
by default.- url String
The URL of the chart.
- viz
Options List<TimeChart Viz Option Args> Plot-level customization options, associated with a publish statement.
- axes
Include booleanZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes
Precision number Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis
Left TimeChart Axis Left Args Set of axis options.
- axis
Right TimeChart Axis Right Args Set of axis options.
- color
By string Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description string
Description of the chart.
- disable
Sampling boolean If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end
Time number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event
Options TimeChart Event Option Args[] Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram
Options TimeChart Histogram Option Args[] Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend
Fields string[]To Hides 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
.Please use legend_options_fields
- legend
Options TimeFields Chart Legend Options Field Args[] 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
.- max
Delay number How long (in seconds) to wait for late datapoints.
- minimum
Resolution number The minimum resolution (in seconds) to use for computing the underlying program.
- name string
Name of the chart.
- on
Chart stringLegend Dimension 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.- plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- program
Text string Signalflow program text for the chart. More info in the SignalFx docs.
- show
Data booleanMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show
Event booleanLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked boolean
Whether area and bar charts in the visualization should be stacked.
false
by default.- start
Time number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- string[]
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time
Range number How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone string
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.- unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- url string
The URL of the chart.
- viz
Options TimeChart Viz Option Args[] Plot-level customization options, associated with a publish statement.
- axes_
include_ boolzero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes_
precision int Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis_
left TimeChart Axis Left Args Set of axis options.
- axis_
right TimeChart Axis Right Args Set of axis options.
- color_
by str Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description str
Description of the chart.
- disable_
sampling bool If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end_
time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event_
options Sequence[TimeChart Event Option Args] Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram_
options Sequence[TimeChart Histogram Option Args] Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend_
fields_ Sequence[str]to_ hides 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
.Please use legend_options_fields
- legend_
options_ Sequence[Timefields Chart Legend Options Field Args] 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
.- 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_ strlegend_ dimension 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.- plot_
type str The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- program_
text str Signalflow program text for the chart. More info in the SignalFx docs.
- show_
data_ boolmarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show_
event_ boollines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked bool
Whether area and bar charts in the visualization should be stacked.
false
by default.- start_
time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- Sequence[str]
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time_
range int How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone str
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.- unit_
prefix str Must be
"Metric"
or"Binary
"."Metric"
by default.- url str
The URL of the chart.
- viz_
options Sequence[TimeChart Viz Option Args] Plot-level customization options, associated with a publish statement.
- axes
Include BooleanZero Force the chart to display zero on the y-axes, even if none of the data is near zero.
- axes
Precision Number Specifies the digits SignalFx displays for values plotted on the chart. Defaults to
3
.- axis
Left Property Map Set of axis options.
- axis
Right Property Map Set of axis options.
- color
By String Must be
"Dimension"
or"Metric"
."Dimension"
by default.- description String
Description of the chart.
- disable
Sampling Boolean If
false
, samples a subset of the output MTS, which improves UI performance.false
by default- end
Time Number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- event
Options List<Property Map> Event customization options, associated with a publish statement. You will need to use this to change settings for any
events(…)
statements you use.- histogram
Options List<Property Map> Only used when
plot_type
is"Histogram"
. Histogram specific options.- legend
Fields List<String>To Hides 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
.Please use legend_options_fields
- legend
Options List<Property Map>Fields 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
.- max
Delay Number How long (in seconds) to wait for late datapoints.
- minimum
Resolution Number The minimum resolution (in seconds) to use for computing the underlying program.
- name String
Name of the chart.
- on
Chart StringLegend Dimension 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.- plot
Type String The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- program
Text String Signalflow program text for the chart. More info in the SignalFx docs.
- show
Data BooleanMarkers Show markers (circles) for each datapoint used to draw line or area charts.
false
by default.- show
Event BooleanLines Whether vertical highlight lines should be drawn in the visualizations at times when events occurred.
false
by default.- stacked Boolean
Whether area and bar charts in the visualization should be stacked.
false
by default.- start
Time Number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- List<String>
Tags associated with the chart
signalfx_time_chart.tags is being removed in the next release
- time
Range Number How many seconds ago from which to display data. For example, the last hour would be
3600
, etc. Conflicts withstart_time
andend_time
.- timezone String
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.- unit
Prefix String Must be
"Metric"
or"Binary
"."Metric"
by default.- url String
The URL of the chart.
- viz
Options List<Property Map> Plot-level customization options, associated with a publish statement.
Supporting Types
TimeChartAxisLeft
- High
Watermark double A line to draw as a high watermark.
- High
Watermark stringLabel A label to attach to the high watermark line.
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Low
Watermark double A line to draw as a low watermark.
- Low
Watermark stringLabel A label to attach to the low watermark line.
- Max
Value double The maximum value for the right axis.
- Min
Value double The minimum value for the right axis.
- Watermarks
List<Pulumi.
Signal Fx. Inputs. Time Chart Axis Left Watermark>
- High
Watermark float64 A line to draw as a high watermark.
- High
Watermark stringLabel A label to attach to the high watermark line.
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Low
Watermark float64 A line to draw as a low watermark.
- Low
Watermark stringLabel A label to attach to the low watermark line.
- Max
Value float64 The maximum value for the right axis.
- Min
Value float64 The minimum value for the right axis.
- Watermarks
[]Time
Chart Axis Left Watermark
- high
Watermark Double A line to draw as a high watermark.
- high
Watermark StringLabel A label to attach to the high watermark line.
- label String
Label used in the publish statement that displays the event query you want to customize.
- low
Watermark Double A line to draw as a low watermark.
- low
Watermark StringLabel A label to attach to the low watermark line.
- max
Value Double The maximum value for the right axis.
- min
Value Double The minimum value for the right axis.
- watermarks
List<Time
Chart Axis Left Watermark>
- high
Watermark number A line to draw as a high watermark.
- high
Watermark stringLabel A label to attach to the high watermark line.
- label string
Label used in the publish statement that displays the event query you want to customize.
- low
Watermark number A line to draw as a low watermark.
- low
Watermark stringLabel A label to attach to the low watermark line.
- max
Value number The maximum value for the right axis.
- min
Value number The minimum value for the right axis.
- watermarks
Time
Chart Axis Left Watermark[]
- high_
watermark float A line to draw as a high watermark.
- high_
watermark_ strlabel A label to attach to the high watermark line.
- label str
Label used in the publish statement that displays the event query you want to customize.
- low_
watermark float A line to draw as a low watermark.
- low_
watermark_ strlabel 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[Time
Chart Axis Left Watermark]
- high
Watermark Number A line to draw as a high watermark.
- high
Watermark StringLabel A label to attach to the high watermark line.
- label String
Label used in the publish statement that displays the event query you want to customize.
- low
Watermark Number A line to draw as a low watermark.
- low
Watermark StringLabel A label to attach to the low watermark line.
- max
Value Number The maximum value for the right axis.
- min
Value Number The minimum value for the right axis.
- watermarks List<Property Map>
TimeChartAxisLeftWatermark
TimeChartAxisRight
- High
Watermark double A line to draw as a high watermark.
- High
Watermark stringLabel A label to attach to the high watermark line.
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Low
Watermark double A line to draw as a low watermark.
- Low
Watermark stringLabel A label to attach to the low watermark line.
- Max
Value double The maximum value for the right axis.
- Min
Value double The minimum value for the right axis.
- Watermarks
List<Pulumi.
Signal Fx. Inputs. Time Chart Axis Right Watermark>
- High
Watermark float64 A line to draw as a high watermark.
- High
Watermark stringLabel A label to attach to the high watermark line.
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Low
Watermark float64 A line to draw as a low watermark.
- Low
Watermark stringLabel A label to attach to the low watermark line.
- Max
Value float64 The maximum value for the right axis.
- Min
Value float64 The minimum value for the right axis.
- Watermarks
[]Time
Chart Axis Right Watermark
- high
Watermark Double A line to draw as a high watermark.
- high
Watermark StringLabel A label to attach to the high watermark line.
- label String
Label used in the publish statement that displays the event query you want to customize.
- low
Watermark Double A line to draw as a low watermark.
- low
Watermark StringLabel A label to attach to the low watermark line.
- max
Value Double The maximum value for the right axis.
- min
Value Double The minimum value for the right axis.
- watermarks
List<Time
Chart Axis Right Watermark>
- high
Watermark number A line to draw as a high watermark.
- high
Watermark stringLabel A label to attach to the high watermark line.
- label string
Label used in the publish statement that displays the event query you want to customize.
- low
Watermark number A line to draw as a low watermark.
- low
Watermark stringLabel A label to attach to the low watermark line.
- max
Value number The maximum value for the right axis.
- min
Value number The minimum value for the right axis.
- watermarks
Time
Chart Axis Right Watermark[]
- high_
watermark float A line to draw as a high watermark.
- high_
watermark_ strlabel A label to attach to the high watermark line.
- label str
Label used in the publish statement that displays the event query you want to customize.
- low_
watermark float A line to draw as a low watermark.
- low_
watermark_ strlabel 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[Time
Chart Axis Right Watermark]
- high
Watermark Number A line to draw as a high watermark.
- high
Watermark StringLabel A label to attach to the high watermark line.
- label String
Label used in the publish statement that displays the event query you want to customize.
- low
Watermark Number A line to draw as a low watermark.
- low
Watermark StringLabel A label to attach to the low watermark line.
- max
Value Number The maximum value for the right axis.
- min
Value Number The minimum value for the right axis.
- watermarks List<Property Map>
TimeChartAxisRightWatermark
TimeChartEventOption
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Color string
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- Display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Color string
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- Display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- label String
Label used in the publish statement that displays the event query you want to customize.
- color String
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display
Name String Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- label string
Label used in the publish statement that displays the event query you want to customize.
- color string
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- label str
Label used in the publish statement that displays the event query you want to customize.
- color str
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display_
name str Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- label String
Label used in the publish statement that displays the event query you want to customize.
- color String
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display
Name String Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
TimeChartHistogramOption
- Color
Theme string Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
- Color
Theme string Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
- color
Theme String Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
- color
Theme string Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
- color_
theme str Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
- color
Theme String Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
TimeChartLegendOptionsField
- Property string
The name of the property to display. Note the special values of
plot_label
(corresponding with the API'ssf_metric
) which shows the label of the time seriespublish()
andmetric
(corresponding with the API'ssf_originatingMetric
) that shows the name of the metric for the time series being displayed.- Enabled bool
True or False depending on if you want the property to be shown or hidden.
- Property string
The name of the property to display. Note the special values of
plot_label
(corresponding with the API'ssf_metric
) which shows the label of the time seriespublish()
andmetric
(corresponding with the API'ssf_originatingMetric
) that shows the name of the metric for the time series being displayed.- Enabled bool
True or False depending on if you want the property to be shown or hidden.
- property String
The name of the property to display. Note the special values of
plot_label
(corresponding with the API'ssf_metric
) which shows the label of the time seriespublish()
andmetric
(corresponding with the API'ssf_originatingMetric
) that shows the name of the metric for the time series being displayed.- enabled Boolean
True or False depending on if you want the property to be shown or hidden.
- property string
The name of the property to display. Note the special values of
plot_label
(corresponding with the API'ssf_metric
) which shows the label of the time seriespublish()
andmetric
(corresponding with the API'ssf_originatingMetric
) that shows the name of the metric for the time series being displayed.- enabled boolean
True or False depending on if you want the property to be shown or hidden.
- property str
The name of the property to display. Note the special values of
plot_label
(corresponding with the API'ssf_metric
) which shows the label of the time seriespublish()
andmetric
(corresponding with the API'ssf_originatingMetric
) that shows the name of the metric for the time series being displayed.- enabled bool
True or False depending on if you want the property to be shown or hidden.
- property String
The name of the property to display. Note the special values of
plot_label
(corresponding with the API'ssf_metric
) which shows the label of the time seriespublish()
andmetric
(corresponding with the API'ssf_originatingMetric
) that shows the name of the metric for the time series being displayed.- enabled Boolean
True or False depending on if you want the property to be shown or hidden.
TimeChartVizOption
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Axis string
Y-axis associated with values for this plot. Must be either
right
orleft
.- Color string
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- Display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- Plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- Value
Prefix string ,
value_suffix
- (Optional) Arbitrary prefix/suffix to display with the value of this plot.- Value
Suffix string - Value
Unit string 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, Gigibyte, Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week
.
- Label string
Label used in the publish statement that displays the event query you want to customize.
- Axis string
Y-axis associated with values for this plot. Must be either
right
orleft
.- Color string
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- Display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- Plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- Value
Prefix string ,
value_suffix
- (Optional) Arbitrary prefix/suffix to display with the value of this plot.- Value
Suffix string - Value
Unit string 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, Gigibyte, Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week
.
- label String
Label used in the publish statement that displays the event query you want to customize.
- axis String
Y-axis associated with values for this plot. Must be either
right
orleft
.- color String
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display
Name String Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- plot
Type String The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- value
Prefix String ,
value_suffix
- (Optional) Arbitrary prefix/suffix to display with the value of this plot.- value
Suffix String - value
Unit String 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, Gigibyte, Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week
.
- label string
Label used in the publish statement that displays the event query you want to customize.
- axis string
Y-axis associated with values for this plot. Must be either
right
orleft
.- color string
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- plot
Type string The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- value
Prefix string ,
value_suffix
- (Optional) Arbitrary prefix/suffix to display with the value of this plot.- value
Suffix string - value
Unit string 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, Gigibyte, Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week
.
- label str
Label used in the publish statement that displays the event query you want to customize.
- axis str
Y-axis associated with values for this plot. Must be either
right
orleft
.- color str
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display_
name str Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- plot_
type str The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- value_
prefix str ,
value_suffix
- (Optional) Arbitrary prefix/suffix to display with the value of this plot.- value_
suffix str - value_
unit str 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, Gigibyte, Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week
.
- label String
Label used in the publish statement that displays the event query you want to customize.
- axis String
Y-axis associated with values for this plot. Must be either
right
orleft
.- color String
Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine.
- display
Name String Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- plot
Type String The visualization style to use. Must be
"LineChart"
,"AreaChart"
,"ColumnChart"
, or"Histogram"
. Chart levelplot_type
by default.- value
Prefix String ,
value_suffix
- (Optional) Arbitrary prefix/suffix to display with the value of this plot.- value
Suffix String - value
Unit String 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, Gigibyte, Tebibyte, Pebibyte, Exbibyte, Zebibyte, Yobibyte, Nanosecond, Microsecond, Millisecond, Second, Minute, Hour, Day, Week
.
Package Details
- Repository
- SignalFx pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
signalfx
Terraform Provider.