signalfx.ListChart
This chart type displays current data values in a list format.
The name of each value in the chart reflects the name of the plot and any associated dimensions. We recommend you click the Pencil icon and give the plot a meaningful name, as in plot B below. Otherwise, just the raw metric name will be displayed on the chart, as in plot A below.
Example Usage
using System.Collections.Generic;
using Pulumi;
using SignalFx = Pulumi.SignalFx;
return await Deployment.RunAsync(() =>
{
var mylistchart0 = new SignalFx.ListChart("mylistchart0", new()
{
ColorBy = "Metric",
Description = "Very cool List Chart",
DisableSampling = true,
HideMissingValues = true,
LegendOptionsFields = new[]
{
new SignalFx.Inputs.ListChartLegendOptionsFieldArgs
{
Enabled = false,
Property = "collector",
},
new SignalFx.Inputs.ListChartLegendOptionsFieldArgs
{
Enabled = true,
Property = "cluster_name",
},
new SignalFx.Inputs.ListChartLegendOptionsFieldArgs
{
Enabled = true,
Property = "role",
},
new SignalFx.Inputs.ListChartLegendOptionsFieldArgs
{
Enabled = false,
Property = "collector",
},
new SignalFx.Inputs.ListChartLegendOptionsFieldArgs
{
Enabled = false,
Property = "host",
},
},
MaxDelay = 2,
MaxPrecision = 2,
ProgramText = @"myfilters = filter(""cluster_name"", ""prod"") and filter(""role"", ""search"")
data(""cpu.total.idle"", filter=myfilters).publish()
",
RefreshInterval = 1,
SortBy = "-value",
Timezone = "Europe/Paris",
});
});
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.NewListChart(ctx, "mylistchart0", &signalfx.ListChartArgs{
ColorBy: pulumi.String("Metric"),
Description: pulumi.String("Very cool List Chart"),
DisableSampling: pulumi.Bool(true),
HideMissingValues: pulumi.Bool(true),
LegendOptionsFields: signalfx.ListChartLegendOptionsFieldArray{
&signalfx.ListChartLegendOptionsFieldArgs{
Enabled: pulumi.Bool(false),
Property: pulumi.String("collector"),
},
&signalfx.ListChartLegendOptionsFieldArgs{
Enabled: pulumi.Bool(true),
Property: pulumi.String("cluster_name"),
},
&signalfx.ListChartLegendOptionsFieldArgs{
Enabled: pulumi.Bool(true),
Property: pulumi.String("role"),
},
&signalfx.ListChartLegendOptionsFieldArgs{
Enabled: pulumi.Bool(false),
Property: pulumi.String("collector"),
},
&signalfx.ListChartLegendOptionsFieldArgs{
Enabled: pulumi.Bool(false),
Property: pulumi.String("host"),
},
},
MaxDelay: pulumi.Int(2),
MaxPrecision: pulumi.Int(2),
ProgramText: pulumi.String(fmt.Sprintf("myfilters = filter(\"cluster_name\", \"prod\") and filter(\"role\", \"search\")\ndata(\"cpu.total.idle\", filter=myfilters).publish()\n\n")),
RefreshInterval: pulumi.Int(1),
SortBy: pulumi.String("-value"),
Timezone: pulumi.String("Europe/Paris"),
})
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.ListChart;
import com.pulumi.signalfx.ListChartArgs;
import com.pulumi.signalfx.inputs.ListChartLegendOptionsFieldArgs;
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 mylistchart0 = new ListChart("mylistchart0", ListChartArgs.builder()
.colorBy("Metric")
.description("Very cool List Chart")
.disableSampling(true)
.hideMissingValues(true)
.legendOptionsFields(
ListChartLegendOptionsFieldArgs.builder()
.enabled(false)
.property("collector")
.build(),
ListChartLegendOptionsFieldArgs.builder()
.enabled(true)
.property("cluster_name")
.build(),
ListChartLegendOptionsFieldArgs.builder()
.enabled(true)
.property("role")
.build(),
ListChartLegendOptionsFieldArgs.builder()
.enabled(false)
.property("collector")
.build(),
ListChartLegendOptionsFieldArgs.builder()
.enabled(false)
.property("host")
.build())
.maxDelay(2)
.maxPrecision(2)
.programText("""
myfilters = filter("cluster_name", "prod") and filter("role", "search")
data("cpu.total.idle", filter=myfilters).publish()
""")
.refreshInterval(1)
.sortBy("-value")
.timezone("Europe/Paris")
.build());
}
}
import pulumi
import pulumi_signalfx as signalfx
mylistchart0 = signalfx.ListChart("mylistchart0",
color_by="Metric",
description="Very cool List Chart",
disable_sampling=True,
hide_missing_values=True,
legend_options_fields=[
signalfx.ListChartLegendOptionsFieldArgs(
enabled=False,
property="collector",
),
signalfx.ListChartLegendOptionsFieldArgs(
enabled=True,
property="cluster_name",
),
signalfx.ListChartLegendOptionsFieldArgs(
enabled=True,
property="role",
),
signalfx.ListChartLegendOptionsFieldArgs(
enabled=False,
property="collector",
),
signalfx.ListChartLegendOptionsFieldArgs(
enabled=False,
property="host",
),
],
max_delay=2,
max_precision=2,
program_text="""myfilters = filter("cluster_name", "prod") and filter("role", "search")
data("cpu.total.idle", filter=myfilters).publish()
""",
refresh_interval=1,
sort_by="-value",
timezone="Europe/Paris")
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const mylistchart0 = new signalfx.ListChart("mylistchart0", {
colorBy: "Metric",
description: "Very cool List Chart",
disableSampling: true,
hideMissingValues: true,
legendOptionsFields: [
{
enabled: false,
property: "collector",
},
{
enabled: true,
property: "cluster_name",
},
{
enabled: true,
property: "role",
},
{
enabled: false,
property: "collector",
},
{
enabled: false,
property: "host",
},
],
maxDelay: 2,
maxPrecision: 2,
programText: `myfilters = filter("cluster_name", "prod") and filter("role", "search")
data("cpu.total.idle", filter=myfilters).publish()
`,
refreshInterval: 1,
sortBy: "-value",
timezone: "Europe/Paris",
});
resources:
mylistchart0:
type: signalfx:ListChart
properties:
colorBy: Metric
description: Very cool List Chart
disableSampling: true
hideMissingValues: true
legendOptionsFields:
- enabled: false
property: collector
- enabled: true
property: cluster_name
- enabled: true
property: role
- enabled: false
property: collector
- enabled: false
property: host
maxDelay: 2
maxPrecision: 2
programText: |+
myfilters = filter("cluster_name", "prod") and filter("role", "search")
data("cpu.total.idle", filter=myfilters).publish()
refreshInterval: 1
sortBy: -value
timezone: Europe/Paris
Create ListChart Resource
new ListChart(name: string, args: ListChartArgs, opts?: CustomResourceOptions);
@overload
def ListChart(resource_name: str,
opts: Optional[ResourceOptions] = None,
color_by: Optional[str] = None,
color_scales: Optional[Sequence[ListChartColorScaleArgs]] = None,
description: Optional[str] = None,
disable_sampling: Optional[bool] = None,
end_time: Optional[int] = None,
hide_missing_values: Optional[bool] = None,
legend_fields_to_hides: Optional[Sequence[str]] = None,
legend_options_fields: Optional[Sequence[ListChartLegendOptionsFieldArgs]] = None,
max_delay: Optional[int] = None,
max_precision: Optional[int] = None,
name: Optional[str] = None,
program_text: Optional[str] = None,
refresh_interval: Optional[int] = None,
secondary_visualization: Optional[str] = None,
sort_by: Optional[str] = None,
start_time: Optional[int] = None,
time_range: Optional[int] = None,
timezone: Optional[str] = None,
unit_prefix: Optional[str] = None,
viz_options: Optional[Sequence[ListChartVizOptionArgs]] = None)
@overload
def ListChart(resource_name: str,
args: ListChartArgs,
opts: Optional[ResourceOptions] = None)
func NewListChart(ctx *Context, name string, args ListChartArgs, opts ...ResourceOption) (*ListChart, error)
public ListChart(string name, ListChartArgs args, CustomResourceOptions? opts = null)
public ListChart(String name, ListChartArgs args)
public ListChart(String name, ListChartArgs args, CustomResourceOptions options)
type: signalfx:ListChart
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListChartArgs
- 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 ListChartArgs
- 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 ListChartArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListChartArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ListChartArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ListChart 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 ListChart resource accepts the following input properties:
- Program
Text string Signalflow program text for the chart. More infoin the SignalFx docs.
- Color
By string Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- Color
Scales List<Pulumi.Signal Fx. Inputs. List Chart Color Scale Args> Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- Hide
Missing boolValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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. List 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.
- Max
Precision int Maximum number of digits to display when rounding values up or down.
- Name string
Name of the chart.
- Refresh
Interval int How often (in seconds) to refresh the values of the list.
- Secondary
Visualization string The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- Sort
By string The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Viz
Options List<Pulumi.Signal Fx. Inputs. List Chart Viz Option Args> Plot-level customization options, associated with a publish statement.
- Program
Text string Signalflow program text for the chart. More infoin the SignalFx docs.
- Color
By string Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- Color
Scales []ListChart Color Scale Args Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- Hide
Missing boolValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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 []ListFields 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.
- Max
Precision int Maximum number of digits to display when rounding values up or down.
- Name string
Name of the chart.
- Refresh
Interval int How often (in seconds) to refresh the values of the list.
- Secondary
Visualization string The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- Sort
By string The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Viz
Options []ListChart Viz Option Args Plot-level customization options, associated with a publish statement.
- program
Text String Signalflow program text for the chart. More infoin the SignalFx docs.
- color
By String Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color
Scales List<ListChart Color Scale Args> Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide
Missing BooleanValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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<ListFields 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.
- max
Precision Integer Maximum number of digits to display when rounding values up or down.
- name String
Name of the chart.
- refresh
Interval Integer How often (in seconds) to refresh the values of the list.
- secondary
Visualization String The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort
By String The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start
Time Integer Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- unit
Prefix String Must be
"Metric"
or"Binary
"."Metric"
by default.- viz
Options List<ListChart Viz Option Args> Plot-level customization options, associated with a publish statement.
- program
Text string Signalflow program text for the chart. More infoin the SignalFx docs.
- color
By string Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color
Scales ListChart Color Scale Args[] Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide
Missing booleanValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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 ListFields 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.
- max
Precision number Maximum number of digits to display when rounding values up or down.
- name string
Name of the chart.
- refresh
Interval number How often (in seconds) to refresh the values of the list.
- secondary
Visualization string The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort
By string The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start
Time number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- viz
Options ListChart Viz Option Args[] Plot-level customization options, associated with a publish statement.
- program_
text str Signalflow program text for the chart. More infoin the SignalFx docs.
- color_
by str Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color_
scales Sequence[ListChart Color Scale Args] Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide_
missing_ boolvalues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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[Listfields 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.
- max_
precision int Maximum number of digits to display when rounding values up or down.
- name str
Name of the chart.
- refresh_
interval int How often (in seconds) to refresh the values of the list.
- secondary_
visualization str The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort_
by str The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start_
time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- unit_
prefix str Must be
"Metric"
or"Binary
"."Metric"
by default.- viz_
options Sequence[ListChart Viz Option Args] Plot-level customization options, associated with a publish statement.
- program
Text String Signalflow program text for the chart. More infoin the SignalFx docs.
- color
By String Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color
Scales List<Property Map> Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide
Missing BooleanValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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.
- max
Precision Number Maximum number of digits to display when rounding values up or down.
- name String
Name of the chart.
- refresh
Interval Number How often (in seconds) to refresh the values of the list.
- secondary
Visualization String The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort
By String The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start
Time Number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- 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 ListChart resource produces the following output properties:
Look up Existing ListChart Resource
Get an existing ListChart 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?: ListChartState, opts?: CustomResourceOptions): ListChart
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color_by: Optional[str] = None,
color_scales: Optional[Sequence[ListChartColorScaleArgs]] = None,
description: Optional[str] = None,
disable_sampling: Optional[bool] = None,
end_time: Optional[int] = None,
hide_missing_values: Optional[bool] = None,
legend_fields_to_hides: Optional[Sequence[str]] = None,
legend_options_fields: Optional[Sequence[ListChartLegendOptionsFieldArgs]] = None,
max_delay: Optional[int] = None,
max_precision: Optional[int] = None,
name: Optional[str] = None,
program_text: Optional[str] = None,
refresh_interval: Optional[int] = None,
secondary_visualization: Optional[str] = None,
sort_by: Optional[str] = None,
start_time: Optional[int] = None,
time_range: Optional[int] = None,
timezone: Optional[str] = None,
unit_prefix: Optional[str] = None,
url: Optional[str] = None,
viz_options: Optional[Sequence[ListChartVizOptionArgs]] = None) -> ListChart
func GetListChart(ctx *Context, name string, id IDInput, state *ListChartState, opts ...ResourceOption) (*ListChart, error)
public static ListChart Get(string name, Input<string> id, ListChartState? state, CustomResourceOptions? opts = null)
public static ListChart get(String name, Output<String> id, ListChartState 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.
- Color
By string Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- Color
Scales List<Pulumi.Signal Fx. Inputs. List Chart Color Scale Args> Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- Hide
Missing boolValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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. List 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.
- Max
Precision int Maximum number of digits to display when rounding values up or down.
- Name string
Name of the chart.
- Program
Text string Signalflow program text for the chart. More infoin the SignalFx docs.
- Refresh
Interval int How often (in seconds) to refresh the values of the list.
- Secondary
Visualization string The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- Sort
By string The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- 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. List Chart Viz Option Args> Plot-level customization options, associated with a publish statement.
- Color
By string Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- Color
Scales []ListChart Color Scale Args Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- Hide
Missing boolValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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 []ListFields 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.
- Max
Precision int Maximum number of digits to display when rounding values up or down.
- Name string
Name of the chart.
- Program
Text string Signalflow program text for the chart. More infoin the SignalFx docs.
- Refresh
Interval int How often (in seconds) to refresh the values of the list.
- Secondary
Visualization string The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- Sort
By string The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- Start
Time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- Unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- Url string
The URL of the chart.
- Viz
Options []ListChart Viz Option Args Plot-level customization options, associated with a publish statement.
- color
By String Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color
Scales List<ListChart Color Scale Args> Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide
Missing BooleanValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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<ListFields 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.
- max
Precision Integer Maximum number of digits to display when rounding values up or down.
- name String
Name of the chart.
- program
Text String Signalflow program text for the chart. More infoin the SignalFx docs.
- refresh
Interval Integer How often (in seconds) to refresh the values of the list.
- secondary
Visualization String The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort
By String The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start
Time Integer Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- unit
Prefix String Must be
"Metric"
or"Binary
"."Metric"
by default.- url String
The URL of the chart.
- viz
Options List<ListChart Viz Option Args> Plot-level customization options, associated with a publish statement.
- color
By string Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color
Scales ListChart Color Scale Args[] Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide
Missing booleanValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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 ListFields 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.
- max
Precision number Maximum number of digits to display when rounding values up or down.
- name string
Name of the chart.
- program
Text string Signalflow program text for the chart. More infoin the SignalFx docs.
- refresh
Interval number How often (in seconds) to refresh the values of the list.
- secondary
Visualization string The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort
By string The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start
Time number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- unit
Prefix string Must be
"Metric"
or"Binary
"."Metric"
by default.- url string
The URL of the chart.
- viz
Options ListChart Viz Option Args[] Plot-level customization options, associated with a publish statement.
- color_
by str Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color_
scales Sequence[ListChart Color Scale Args] Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide_
missing_ boolvalues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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[Listfields 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.
- max_
precision int Maximum number of digits to display when rounding values up or down.
- name str
Name of the chart.
- program_
text str Signalflow program text for the chart. More infoin the SignalFx docs.
- refresh_
interval int How often (in seconds) to refresh the values of the list.
- secondary_
visualization str The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort_
by str The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start_
time int Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- unit_
prefix str Must be
"Metric"
or"Binary
"."Metric"
by default.- url str
The URL of the chart.
- viz_
options Sequence[ListChart Viz Option Args] Plot-level customization options, associated with a publish statement.
- color
By String Must be one of
"Scale"
,"Dimension"
or"Metric"
."Dimension"
by default.- color
Scales List<Property Map> Single color range including both the color to display for that range and the borders of the range. Example:
[{ gt = 60, color = "blue" }, { lte = 60, color = "yellow" }]
. Look at this link.- 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
.- hide
Missing BooleanValues Determines whether to hide missing data points in the chart. If
true
, missing data points in the chart would be hidden.false
by default.- 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.
- max
Precision Number Maximum number of digits to display when rounding values up or down.
- name String
Name of the chart.
- program
Text String Signalflow program text for the chart. More infoin the SignalFx docs.
- refresh
Interval Number How often (in seconds) to refresh the values of the list.
- secondary
Visualization String The type of secondary visualization. Can be
None
,Radial
,Linear
, orSparkline
. If unset, the SignalFx default is used (Sparkline
).- sort
By String The property to use when sorting the elements. Use
value
if you want to sort by value. Must be prepended with+
for ascending or-
for descending (e.g.-foo
). Note there are some special values for some of the options provided in the UX:"value"
for Value,"sf_originatingMetric"
for Metric, and"sf_metric"
for plot.- start
Time Number Seconds since epoch. Used for visualization. Conflicts with
time_range
.- 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
The property value is a string that denotes the geographic region associated with the time zone, (default UTC).
- 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
ListChartColorScale
- Color string
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- Gt double
Indicates the lower threshold non-inclusive value for this range.
- Gte double
Indicates the lower threshold inclusive value for this range.
- Lt double
Indicates the upper threshold non-inculsive value for this range.
- Lte double
Indicates the upper threshold inclusive value for this range.
- Color string
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- Gt float64
Indicates the lower threshold non-inclusive value for this range.
- Gte float64
Indicates the lower threshold inclusive value for this range.
- Lt float64
Indicates the upper threshold non-inculsive value for this range.
- Lte float64
Indicates the upper threshold inclusive value for this range.
- color String
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- gt Double
Indicates the lower threshold non-inclusive value for this range.
- gte Double
Indicates the lower threshold inclusive value for this range.
- lt Double
Indicates the upper threshold non-inculsive value for this range.
- lte Double
Indicates the upper threshold inclusive value for this range.
- color string
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- gt number
Indicates the lower threshold non-inclusive value for this range.
- gte number
Indicates the lower threshold inclusive value for this range.
- lt number
Indicates the upper threshold non-inculsive value for this range.
- lte number
Indicates the upper threshold inclusive value for this range.
- color str
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- gt float
Indicates the lower threshold non-inclusive value for this range.
- gte float
Indicates the lower threshold inclusive value for this range.
- lt float
Indicates the upper threshold non-inculsive value for this range.
- lte float
Indicates the upper threshold inclusive value for this range.
- color String
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- gt Number
Indicates the lower threshold non-inclusive value for this range.
- gte Number
Indicates the lower threshold inclusive value for this range.
- lt Number
Indicates the upper threshold non-inculsive value for this range.
- lte Number
Indicates the upper threshold inclusive value for this range.
ListChartLegendOptionsField
- Property string
The name of the property to display. Note the special values of
sf_metric
(corresponding with the API'sPlot Name
) which shows the label of the time seriespublish()
andsf_originatingMetric
(corresponding with the API'smetric (sf metric)
) 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
sf_metric
(corresponding with the API'sPlot Name
) which shows the label of the time seriespublish()
andsf_originatingMetric
(corresponding with the API'smetric (sf metric)
) 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
sf_metric
(corresponding with the API'sPlot Name
) which shows the label of the time seriespublish()
andsf_originatingMetric
(corresponding with the API'smetric (sf metric)
) 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
sf_metric
(corresponding with the API'sPlot Name
) which shows the label of the time seriespublish()
andsf_originatingMetric
(corresponding with the API'smetric (sf metric)
) 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
sf_metric
(corresponding with the API'sPlot Name
) which shows the label of the time seriespublish()
andsf_originatingMetric
(corresponding with the API'smetric (sf metric)
) 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
sf_metric
(corresponding with the API'sPlot Name
) which shows the label of the time seriespublish()
andsf_originatingMetric
(corresponding with the API'smetric (sf metric)
) 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.
ListChartVizOption
- Label string
Label used in the publish statement that displays the plot (metric time series data) you want to customize.
- Color string
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- Display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- 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 plot (metric time series data) you want to customize.
- Color string
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- Display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- 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 plot (metric time series data) you want to customize.
- color String
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- display
Name String Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- 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 plot (metric time series data) you want to customize.
- color string
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- display
Name string Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- 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 plot (metric time series data) you want to customize.
- color str
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- display_
name str Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- 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 plot (metric time series data) you want to customize.
- color String
The color to use. Must be one of gray, blue, light_blue, navy, dark_orange, orange, dark_yellow, magenta, cerise, pink, violet, purple, gray_blue, dark_green, green, aquamarine, red, yellow, vivid_yellow, light_green, or lime_green.
- display
Name String Specifies an alternate value for the Plot Name column of the Data Table associated with the chart.
- 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.