1. Packages
  2. Chronosphere
  3. API Docs
  4. SLO
Chronosphere v0.9.7 published on Friday, Feb 28, 2025 by Chronosphere

chronosphere.SLO

Explore with Pulumi AI

chronosphere logo
Chronosphere v0.9.7 published on Friday, Feb 28, 2025 by Chronosphere

    Create SLO Resource

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

    Constructor syntax

    new SLO(name: string, args: SLOArgs, opts?: CustomResourceOptions);
    @overload
    def SLO(resource_name: str,
            args: SLOArgs,
            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SLO(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            collection_id: Optional[str] = None,
            definition: Optional[SLODefinitionArgs] = None,
            name: Optional[str] = None,
            sli: Optional[SLOSliArgs] = None,
            annotations: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            notification_policy_id: Optional[str] = None,
            signal_grouping: Optional[SLOSignalGroupingArgs] = None,
            slug: Optional[str] = None)
    func NewSLO(ctx *Context, name string, args SLOArgs, opts ...ResourceOption) (*SLO, error)
    public SLO(string name, SLOArgs args, CustomResourceOptions? opts = null)
    public SLO(String name, SLOArgs args)
    public SLO(String name, SLOArgs args, CustomResourceOptions options)
    
    type: chronosphere:SLO
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SLOArgs
    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 SLOArgs
    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 SLOArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SLOArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SLOArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var sloResource = new Pulumi.SLO("sloResource", new()
    {
        CollectionId = "string",
        Definition = new Pulumi.Inputs.SLODefinitionArgs
        {
            Objective = 0,
            ReportingWindows = new[]
            {
                new Pulumi.Inputs.SLODefinitionReportingWindowArgs
                {
                    Duration = "string",
                },
            },
            LowVolume = false,
        },
        Name = "string",
        Sli = new Pulumi.Inputs.SLOSliArgs
        {
            CustomDimensionLabels = new[]
            {
                "string",
            },
            CustomIndicator = new Pulumi.Inputs.SLOSliCustomIndicatorArgs
            {
                TotalQueryTemplate = "string",
                BadQueryTemplate = "string",
                GoodQueryTemplate = "string",
            },
            EndpointAvailability = new Pulumi.Inputs.SLOSliEndpointAvailabilityArgs
            {
                EndpointsMonitoreds = new[]
                {
                    "string",
                },
                AdditionalPromqlFilters = new[]
                {
                    new Pulumi.Inputs.SLOSliEndpointAvailabilityAdditionalPromqlFilterArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
                ErrorCodes = new[]
                {
                    "string",
                },
                SuccessCodes = new[]
                {
                    "string",
                },
            },
            EndpointLabel = "string",
            EndpointLatency = new Pulumi.Inputs.SLOSliEndpointLatencyArgs
            {
                EndpointsMonitoreds = new[]
                {
                    "string",
                },
                LatencyBucket = "string",
                AdditionalPromqlFilters = new[]
                {
                    new Pulumi.Inputs.SLOSliEndpointLatencyAdditionalPromqlFilterArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
            },
            LensTemplateIndicator = "string",
        },
        Annotations = 
        {
            { "string", "string" },
        },
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        NotificationPolicyId = "string",
        SignalGrouping = new Pulumi.Inputs.SLOSignalGroupingArgs
        {
            LabelNames = new[]
            {
                "string",
            },
            SignalPerSeries = false,
        },
        Slug = "string",
    });
    
    example, err := chronosphere.NewSLO(ctx, "sloResource", &chronosphere.SLOArgs{
    	CollectionId: pulumi.String("string"),
    	Definition: &chronosphere.SLODefinitionArgs{
    		Objective: pulumi.Float64(0),
    		ReportingWindows: chronosphere.SLODefinitionReportingWindowArray{
    			&chronosphere.SLODefinitionReportingWindowArgs{
    				Duration: pulumi.String("string"),
    			},
    		},
    		LowVolume: pulumi.Bool(false),
    	},
    	Name: pulumi.String("string"),
    	Sli: &chronosphere.SLOSliArgs{
    		CustomDimensionLabels: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		CustomIndicator: &chronosphere.SLOSliCustomIndicatorArgs{
    			TotalQueryTemplate: pulumi.String("string"),
    			BadQueryTemplate:   pulumi.String("string"),
    			GoodQueryTemplate:  pulumi.String("string"),
    		},
    		EndpointAvailability: &chronosphere.SLOSliEndpointAvailabilityArgs{
    			EndpointsMonitoreds: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			AdditionalPromqlFilters: chronosphere.SLOSliEndpointAvailabilityAdditionalPromqlFilterArray{
    				&chronosphere.SLOSliEndpointAvailabilityAdditionalPromqlFilterArgs{
    					Name:  pulumi.String("string"),
    					Type:  pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    			ErrorCodes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			SuccessCodes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		EndpointLabel: pulumi.String("string"),
    		EndpointLatency: &chronosphere.SLOSliEndpointLatencyArgs{
    			EndpointsMonitoreds: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			LatencyBucket: pulumi.String("string"),
    			AdditionalPromqlFilters: chronosphere.SLOSliEndpointLatencyAdditionalPromqlFilterArray{
    				&chronosphere.SLOSliEndpointLatencyAdditionalPromqlFilterArgs{
    					Name:  pulumi.String("string"),
    					Type:  pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    		},
    		LensTemplateIndicator: pulumi.String("string"),
    	},
    	Annotations: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	NotificationPolicyId: pulumi.String("string"),
    	SignalGrouping: &chronosphere.SLOSignalGroupingArgs{
    		LabelNames: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		SignalPerSeries: pulumi.Bool(false),
    	},
    	Slug: pulumi.String("string"),
    })
    
    var sloResource = new SLO("sloResource", SLOArgs.builder()
        .collectionId("string")
        .definition(SLODefinitionArgs.builder()
            .objective(0)
            .reportingWindows(SLODefinitionReportingWindowArgs.builder()
                .duration("string")
                .build())
            .lowVolume(false)
            .build())
        .name("string")
        .sli(SLOSliArgs.builder()
            .customDimensionLabels("string")
            .customIndicator(SLOSliCustomIndicatorArgs.builder()
                .totalQueryTemplate("string")
                .badQueryTemplate("string")
                .goodQueryTemplate("string")
                .build())
            .endpointAvailability(SLOSliEndpointAvailabilityArgs.builder()
                .endpointsMonitoreds("string")
                .additionalPromqlFilters(SLOSliEndpointAvailabilityAdditionalPromqlFilterArgs.builder()
                    .name("string")
                    .type("string")
                    .value("string")
                    .build())
                .errorCodes("string")
                .successCodes("string")
                .build())
            .endpointLabel("string")
            .endpointLatency(SLOSliEndpointLatencyArgs.builder()
                .endpointsMonitoreds("string")
                .latencyBucket("string")
                .additionalPromqlFilters(SLOSliEndpointLatencyAdditionalPromqlFilterArgs.builder()
                    .name("string")
                    .type("string")
                    .value("string")
                    .build())
                .build())
            .lensTemplateIndicator("string")
            .build())
        .annotations(Map.of("string", "string"))
        .description("string")
        .labels(Map.of("string", "string"))
        .notificationPolicyId("string")
        .signalGrouping(SLOSignalGroupingArgs.builder()
            .labelNames("string")
            .signalPerSeries(false)
            .build())
        .slug("string")
        .build());
    
    slo_resource = chronosphere.SLO("sloResource",
        collection_id="string",
        definition={
            "objective": 0,
            "reporting_windows": [{
                "duration": "string",
            }],
            "low_volume": False,
        },
        name="string",
        sli={
            "custom_dimension_labels": ["string"],
            "custom_indicator": {
                "total_query_template": "string",
                "bad_query_template": "string",
                "good_query_template": "string",
            },
            "endpoint_availability": {
                "endpoints_monitoreds": ["string"],
                "additional_promql_filters": [{
                    "name": "string",
                    "type": "string",
                    "value": "string",
                }],
                "error_codes": ["string"],
                "success_codes": ["string"],
            },
            "endpoint_label": "string",
            "endpoint_latency": {
                "endpoints_monitoreds": ["string"],
                "latency_bucket": "string",
                "additional_promql_filters": [{
                    "name": "string",
                    "type": "string",
                    "value": "string",
                }],
            },
            "lens_template_indicator": "string",
        },
        annotations={
            "string": "string",
        },
        description="string",
        labels={
            "string": "string",
        },
        notification_policy_id="string",
        signal_grouping={
            "label_names": ["string"],
            "signal_per_series": False,
        },
        slug="string")
    
    const sloResource = new chronosphere.SLO("sloResource", {
        collectionId: "string",
        definition: {
            objective: 0,
            reportingWindows: [{
                duration: "string",
            }],
            lowVolume: false,
        },
        name: "string",
        sli: {
            customDimensionLabels: ["string"],
            customIndicator: {
                totalQueryTemplate: "string",
                badQueryTemplate: "string",
                goodQueryTemplate: "string",
            },
            endpointAvailability: {
                endpointsMonitoreds: ["string"],
                additionalPromqlFilters: [{
                    name: "string",
                    type: "string",
                    value: "string",
                }],
                errorCodes: ["string"],
                successCodes: ["string"],
            },
            endpointLabel: "string",
            endpointLatency: {
                endpointsMonitoreds: ["string"],
                latencyBucket: "string",
                additionalPromqlFilters: [{
                    name: "string",
                    type: "string",
                    value: "string",
                }],
            },
            lensTemplateIndicator: "string",
        },
        annotations: {
            string: "string",
        },
        description: "string",
        labels: {
            string: "string",
        },
        notificationPolicyId: "string",
        signalGrouping: {
            labelNames: ["string"],
            signalPerSeries: false,
        },
        slug: "string",
    });
    
    type: chronosphere:SLO
    properties:
        annotations:
            string: string
        collectionId: string
        definition:
            lowVolume: false
            objective: 0
            reportingWindows:
                - duration: string
        description: string
        labels:
            string: string
        name: string
        notificationPolicyId: string
        signalGrouping:
            labelNames:
                - string
            signalPerSeries: false
        sli:
            customDimensionLabels:
                - string
            customIndicator:
                badQueryTemplate: string
                goodQueryTemplate: string
                totalQueryTemplate: string
            endpointAvailability:
                additionalPromqlFilters:
                    - name: string
                      type: string
                      value: string
                endpointsMonitoreds:
                    - string
                errorCodes:
                    - string
                successCodes:
                    - string
            endpointLabel: string
            endpointLatency:
                additionalPromqlFilters:
                    - name: string
                      type: string
                      value: string
                endpointsMonitoreds:
                    - string
                latencyBucket: string
            lensTemplateIndicator: string
        slug: string
    

    SLO Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SLO resource accepts the following input properties:

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SLO Resource

    Get an existing SLO 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?: SLOState, opts?: CustomResourceOptions): SLO
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            annotations: Optional[Mapping[str, str]] = None,
            collection_id: Optional[str] = None,
            definition: Optional[SLODefinitionArgs] = None,
            description: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            notification_policy_id: Optional[str] = None,
            signal_grouping: Optional[SLOSignalGroupingArgs] = None,
            sli: Optional[SLOSliArgs] = None,
            slug: Optional[str] = None) -> SLO
    func GetSLO(ctx *Context, name string, id IDInput, state *SLOState, opts ...ResourceOption) (*SLO, error)
    public static SLO Get(string name, Input<string> id, SLOState? state, CustomResourceOptions? opts = null)
    public static SLO get(String name, Output<String> id, SLOState state, CustomResourceOptions options)
    resources:  _:    type: chronosphere:SLO    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:

    Supporting Types

    SLODefinition, SLODefinitionArgs

    SLODefinitionReportingWindow, SLODefinitionReportingWindowArgs

    Duration string
    Duration string
    duration String
    duration string
    duration String

    SLOSignalGrouping, SLOSignalGroupingArgs

    LabelNames List<string>
    SignalPerSeries bool
    labelNames List<String>
    signalPerSeries Boolean
    labelNames string[]
    signalPerSeries boolean
    label_names Sequence[str]
    signal_per_series bool
    labelNames List<String>
    signalPerSeries Boolean

    SLOSli, SLOSliArgs

    SLOSliCustomIndicator, SLOSliCustomIndicatorArgs

    SLOSliEndpointAvailability, SLOSliEndpointAvailabilityArgs

    SLOSliEndpointAvailabilityAdditionalPromqlFilter, SLOSliEndpointAvailabilityAdditionalPromqlFilterArgs

    Name string
    Type string
    Value string
    Name string
    Type string
    Value string
    name String
    type String
    value String
    name string
    type string
    value string
    name str
    type str
    value str
    name String
    type String
    value String

    SLOSliEndpointLatency, SLOSliEndpointLatencyArgs

    SLOSliEndpointLatencyAdditionalPromqlFilter, SLOSliEndpointLatencyAdditionalPromqlFilterArgs

    Name string
    Type string
    Value string
    Name string
    Type string
    Value string
    name String
    type String
    value String
    name string
    type string
    value string
    name str
    type str
    value str
    name String
    type String
    value String

    Package Details

    Repository
    chronosphere chronosphereio/pulumi-chronosphere
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the chronosphere Terraform Provider.
    chronosphere logo
    Chronosphere v0.9.7 published on Friday, Feb 28, 2025 by Chronosphere