1. Packages
  2. Splunk
  3. API Docs
  4. InputsMonitor
Splunk v1.2.6 published on Thursday, Mar 21, 2024 by Pulumi

splunk.InputsMonitor

Explore with Pulumi AI

splunk logo
Splunk v1.2.6 published on Thursday, Mar 21, 2024 by Pulumi

    # Resource: splunk.InputsMonitor

    Create or update a new file or directory monitor input.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as splunk from "@pulumi/splunk";
    
    const monitor = new splunk.InputsMonitor("monitor", {
        recursive: true,
        sourcetype: "text",
    });
    
    import pulumi
    import pulumi_splunk as splunk
    
    monitor = splunk.InputsMonitor("monitor",
        recursive=True,
        sourcetype="text")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-splunk/sdk/go/splunk"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := splunk.NewInputsMonitor(ctx, "monitor", &splunk.InputsMonitorArgs{
    			Recursive:  pulumi.Bool(true),
    			Sourcetype: pulumi.String("text"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Splunk = Pulumi.Splunk;
    
    return await Deployment.RunAsync(() => 
    {
        var monitor = new Splunk.InputsMonitor("monitor", new()
        {
            Recursive = true,
            Sourcetype = "text",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.splunk.InputsMonitor;
    import com.pulumi.splunk.InputsMonitorArgs;
    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 monitor = new InputsMonitor("monitor", InputsMonitorArgs.builder()        
                .recursive(true)
                .sourcetype("text")
                .build());
    
        }
    }
    
    resources:
      monitor:
        type: splunk:InputsMonitor
        properties:
          recursive: true
          sourcetype: text
    

    Create InputsMonitor Resource

    new InputsMonitor(name: string, args?: InputsMonitorArgs, opts?: CustomResourceOptions);
    @overload
    def InputsMonitor(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      acl: Optional[InputsMonitorAclArgs] = None,
                      blacklist: Optional[str] = None,
                      crc_salt: Optional[str] = None,
                      disabled: Optional[bool] = None,
                      follow_tail: Optional[bool] = None,
                      host: Optional[str] = None,
                      host_regex: Optional[str] = None,
                      host_segment: Optional[int] = None,
                      ignore_older_than: Optional[str] = None,
                      index: Optional[str] = None,
                      name: Optional[str] = None,
                      recursive: Optional[bool] = None,
                      rename_source: Optional[str] = None,
                      sourcetype: Optional[str] = None,
                      time_before_close: Optional[int] = None,
                      whitelist: Optional[str] = None)
    @overload
    def InputsMonitor(resource_name: str,
                      args: Optional[InputsMonitorArgs] = None,
                      opts: Optional[ResourceOptions] = None)
    func NewInputsMonitor(ctx *Context, name string, args *InputsMonitorArgs, opts ...ResourceOption) (*InputsMonitor, error)
    public InputsMonitor(string name, InputsMonitorArgs? args = null, CustomResourceOptions? opts = null)
    public InputsMonitor(String name, InputsMonitorArgs args)
    public InputsMonitor(String name, InputsMonitorArgs args, CustomResourceOptions options)
    
    type: splunk:InputsMonitor
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args InputsMonitorArgs
    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 InputsMonitorArgs
    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 InputsMonitorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InputsMonitorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InputsMonitorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Acl InputsMonitorAcl
    The app/user context that is the namespace for the resource
    Blacklist string
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    CrcSalt string
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    Disabled bool
    Indicates if input monitoring is disabled.
    FollowTail bool
    If set to true, files that are seen for the first time is read from the end.
    Host string
    The value to populate in the host field for events from this data input.
    HostRegex string
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    HostSegment int
    Use the specified slash-separate segment of the filepath as the host field value.
    IgnoreOlderThan string
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    Index string
    Which index events from this input should be stored in. Defaults to default.
    Name string
    The file or directory path to monitor on the system.
    Recursive bool
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    RenameSource string
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    Sourcetype string
    The value to populate in the sourcetype field for incoming events.
    TimeBeforeClose int
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    Whitelist string
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    Acl InputsMonitorAclArgs
    The app/user context that is the namespace for the resource
    Blacklist string
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    CrcSalt string
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    Disabled bool
    Indicates if input monitoring is disabled.
    FollowTail bool
    If set to true, files that are seen for the first time is read from the end.
    Host string
    The value to populate in the host field for events from this data input.
    HostRegex string
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    HostSegment int
    Use the specified slash-separate segment of the filepath as the host field value.
    IgnoreOlderThan string
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    Index string
    Which index events from this input should be stored in. Defaults to default.
    Name string
    The file or directory path to monitor on the system.
    Recursive bool
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    RenameSource string
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    Sourcetype string
    The value to populate in the sourcetype field for incoming events.
    TimeBeforeClose int
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    Whitelist string
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl InputsMonitorAcl
    The app/user context that is the namespace for the resource
    blacklist String
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crcSalt String
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled Boolean
    Indicates if input monitoring is disabled.
    followTail Boolean
    If set to true, files that are seen for the first time is read from the end.
    host String
    The value to populate in the host field for events from this data input.
    hostRegex String
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    hostSegment Integer
    Use the specified slash-separate segment of the filepath as the host field value.
    ignoreOlderThan String
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index String
    Which index events from this input should be stored in. Defaults to default.
    name String
    The file or directory path to monitor on the system.
    recursive Boolean
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    renameSource String
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype String
    The value to populate in the sourcetype field for incoming events.
    timeBeforeClose Integer
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist String
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl InputsMonitorAcl
    The app/user context that is the namespace for the resource
    blacklist string
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crcSalt string
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled boolean
    Indicates if input monitoring is disabled.
    followTail boolean
    If set to true, files that are seen for the first time is read from the end.
    host string
    The value to populate in the host field for events from this data input.
    hostRegex string
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    hostSegment number
    Use the specified slash-separate segment of the filepath as the host field value.
    ignoreOlderThan string
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index string
    Which index events from this input should be stored in. Defaults to default.
    name string
    The file or directory path to monitor on the system.
    recursive boolean
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    renameSource string
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype string
    The value to populate in the sourcetype field for incoming events.
    timeBeforeClose number
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist string
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl InputsMonitorAclArgs
    The app/user context that is the namespace for the resource
    blacklist str
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crc_salt str
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled bool
    Indicates if input monitoring is disabled.
    follow_tail bool
    If set to true, files that are seen for the first time is read from the end.
    host str
    The value to populate in the host field for events from this data input.
    host_regex str
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    host_segment int
    Use the specified slash-separate segment of the filepath as the host field value.
    ignore_older_than str
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index str
    Which index events from this input should be stored in. Defaults to default.
    name str
    The file or directory path to monitor on the system.
    recursive bool
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    rename_source str
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype str
    The value to populate in the sourcetype field for incoming events.
    time_before_close int
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist str
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl Property Map
    The app/user context that is the namespace for the resource
    blacklist String
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crcSalt String
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled Boolean
    Indicates if input monitoring is disabled.
    followTail Boolean
    If set to true, files that are seen for the first time is read from the end.
    host String
    The value to populate in the host field for events from this data input.
    hostRegex String
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    hostSegment Number
    Use the specified slash-separate segment of the filepath as the host field value.
    ignoreOlderThan String
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index String
    Which index events from this input should be stored in. Defaults to default.
    name String
    The file or directory path to monitor on the system.
    recursive Boolean
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    renameSource String
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype String
    The value to populate in the sourcetype field for incoming events.
    timeBeforeClose Number
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist String
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the InputsMonitor 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 InputsMonitor Resource

    Get an existing InputsMonitor 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?: InputsMonitorState, opts?: CustomResourceOptions): InputsMonitor
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acl: Optional[InputsMonitorAclArgs] = None,
            blacklist: Optional[str] = None,
            crc_salt: Optional[str] = None,
            disabled: Optional[bool] = None,
            follow_tail: Optional[bool] = None,
            host: Optional[str] = None,
            host_regex: Optional[str] = None,
            host_segment: Optional[int] = None,
            ignore_older_than: Optional[str] = None,
            index: Optional[str] = None,
            name: Optional[str] = None,
            recursive: Optional[bool] = None,
            rename_source: Optional[str] = None,
            sourcetype: Optional[str] = None,
            time_before_close: Optional[int] = None,
            whitelist: Optional[str] = None) -> InputsMonitor
    func GetInputsMonitor(ctx *Context, name string, id IDInput, state *InputsMonitorState, opts ...ResourceOption) (*InputsMonitor, error)
    public static InputsMonitor Get(string name, Input<string> id, InputsMonitorState? state, CustomResourceOptions? opts = null)
    public static InputsMonitor get(String name, Output<String> id, InputsMonitorState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Acl InputsMonitorAcl
    The app/user context that is the namespace for the resource
    Blacklist string
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    CrcSalt string
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    Disabled bool
    Indicates if input monitoring is disabled.
    FollowTail bool
    If set to true, files that are seen for the first time is read from the end.
    Host string
    The value to populate in the host field for events from this data input.
    HostRegex string
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    HostSegment int
    Use the specified slash-separate segment of the filepath as the host field value.
    IgnoreOlderThan string
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    Index string
    Which index events from this input should be stored in. Defaults to default.
    Name string
    The file or directory path to monitor on the system.
    Recursive bool
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    RenameSource string
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    Sourcetype string
    The value to populate in the sourcetype field for incoming events.
    TimeBeforeClose int
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    Whitelist string
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    Acl InputsMonitorAclArgs
    The app/user context that is the namespace for the resource
    Blacklist string
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    CrcSalt string
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    Disabled bool
    Indicates if input monitoring is disabled.
    FollowTail bool
    If set to true, files that are seen for the first time is read from the end.
    Host string
    The value to populate in the host field for events from this data input.
    HostRegex string
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    HostSegment int
    Use the specified slash-separate segment of the filepath as the host field value.
    IgnoreOlderThan string
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    Index string
    Which index events from this input should be stored in. Defaults to default.
    Name string
    The file or directory path to monitor on the system.
    Recursive bool
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    RenameSource string
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    Sourcetype string
    The value to populate in the sourcetype field for incoming events.
    TimeBeforeClose int
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    Whitelist string
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl InputsMonitorAcl
    The app/user context that is the namespace for the resource
    blacklist String
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crcSalt String
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled Boolean
    Indicates if input monitoring is disabled.
    followTail Boolean
    If set to true, files that are seen for the first time is read from the end.
    host String
    The value to populate in the host field for events from this data input.
    hostRegex String
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    hostSegment Integer
    Use the specified slash-separate segment of the filepath as the host field value.
    ignoreOlderThan String
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index String
    Which index events from this input should be stored in. Defaults to default.
    name String
    The file or directory path to monitor on the system.
    recursive Boolean
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    renameSource String
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype String
    The value to populate in the sourcetype field for incoming events.
    timeBeforeClose Integer
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist String
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl InputsMonitorAcl
    The app/user context that is the namespace for the resource
    blacklist string
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crcSalt string
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled boolean
    Indicates if input monitoring is disabled.
    followTail boolean
    If set to true, files that are seen for the first time is read from the end.
    host string
    The value to populate in the host field for events from this data input.
    hostRegex string
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    hostSegment number
    Use the specified slash-separate segment of the filepath as the host field value.
    ignoreOlderThan string
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index string
    Which index events from this input should be stored in. Defaults to default.
    name string
    The file or directory path to monitor on the system.
    recursive boolean
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    renameSource string
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype string
    The value to populate in the sourcetype field for incoming events.
    timeBeforeClose number
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist string
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl InputsMonitorAclArgs
    The app/user context that is the namespace for the resource
    blacklist str
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crc_salt str
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled bool
    Indicates if input monitoring is disabled.
    follow_tail bool
    If set to true, files that are seen for the first time is read from the end.
    host str
    The value to populate in the host field for events from this data input.
    host_regex str
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    host_segment int
    Use the specified slash-separate segment of the filepath as the host field value.
    ignore_older_than str
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index str
    Which index events from this input should be stored in. Defaults to default.
    name str
    The file or directory path to monitor on the system.
    recursive bool
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    rename_source str
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype str
    The value to populate in the sourcetype field for incoming events.
    time_before_close int
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist str
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.
    acl Property Map
    The app/user context that is the namespace for the resource
    blacklist String
    Specify a regular expression for a file path. The file path that matches this regular expression is not indexed.
    crcSalt String
    A string that modifies the file tracking identity for files in this input. The magic value invokes special behavior.
    disabled Boolean
    Indicates if input monitoring is disabled.
    followTail Boolean
    If set to true, files that are seen for the first time is read from the end.
    host String
    The value to populate in the host field for events from this data input.
    hostRegex String
    Specify a regular expression for a file path. If the path for a file matches this regular expression, the captured value is used to populate the host field for events from this data input. The regular expression must have one capture group.
    hostSegment Number
    Use the specified slash-separate segment of the filepath as the host field value.
    ignoreOlderThan String
    Specify a time value. If the modification time of a file being monitored falls outside of this rolling time window, the file is no longer being monitored.
    index String
    Which index events from this input should be stored in. Defaults to default.
    name String
    The file or directory path to monitor on the system.
    recursive Boolean
    Setting this to false prevents monitoring of any subdirectories encountered within this data input.
    renameSource String
    The value to populate in the source field for events from this data input. The same source should not be used for multiple data inputs.
    sourcetype String
    The value to populate in the sourcetype field for incoming events.
    timeBeforeClose Number
    When Splunk software reaches the end of a file that is being read, the file is kept open for a minimum of the number of seconds specified in this value. After this period has elapsed, the file is checked again for more data.
    whitelist String
    Specify a regular expression for a file path. Only file paths that match this regular expression are indexed.

    Supporting Types

    InputsMonitorAcl, InputsMonitorAclArgs

    App string
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    CanChangePerms bool
    Indicates if the active user can change permissions for this object. Defaults to true.
    CanShareApp bool
    Indicates if the active user can change sharing to app level. Defaults to true.
    CanShareGlobal bool
    Indicates if the active user can change sharing to system level. Defaults to true.
    CanShareUser bool
    Indicates if the active user can change sharing to user level. Defaults to true.
    CanWrite bool
    Indicates if the active user can edit this object. Defaults to true.
    Owner string
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    Reads List<string>
    Properties that indicate resource read permissions.
    Removable bool
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    Sharing string
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    Writes List<string>
    Properties that indicate write permissions of the resource.
    App string
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    CanChangePerms bool
    Indicates if the active user can change permissions for this object. Defaults to true.
    CanShareApp bool
    Indicates if the active user can change sharing to app level. Defaults to true.
    CanShareGlobal bool
    Indicates if the active user can change sharing to system level. Defaults to true.
    CanShareUser bool
    Indicates if the active user can change sharing to user level. Defaults to true.
    CanWrite bool
    Indicates if the active user can edit this object. Defaults to true.
    Owner string
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    Reads []string
    Properties that indicate resource read permissions.
    Removable bool
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    Sharing string
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    Writes []string
    Properties that indicate write permissions of the resource.
    app String
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    canChangePerms Boolean
    Indicates if the active user can change permissions for this object. Defaults to true.
    canShareApp Boolean
    Indicates if the active user can change sharing to app level. Defaults to true.
    canShareGlobal Boolean
    Indicates if the active user can change sharing to system level. Defaults to true.
    canShareUser Boolean
    Indicates if the active user can change sharing to user level. Defaults to true.
    canWrite Boolean
    Indicates if the active user can edit this object. Defaults to true.
    owner String
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads List<String>
    Properties that indicate resource read permissions.
    removable Boolean
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing String
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes List<String>
    Properties that indicate write permissions of the resource.
    app string
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    canChangePerms boolean
    Indicates if the active user can change permissions for this object. Defaults to true.
    canShareApp boolean
    Indicates if the active user can change sharing to app level. Defaults to true.
    canShareGlobal boolean
    Indicates if the active user can change sharing to system level. Defaults to true.
    canShareUser boolean
    Indicates if the active user can change sharing to user level. Defaults to true.
    canWrite boolean
    Indicates if the active user can edit this object. Defaults to true.
    owner string
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads string[]
    Properties that indicate resource read permissions.
    removable boolean
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing string
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes string[]
    Properties that indicate write permissions of the resource.
    app str
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    can_change_perms bool
    Indicates if the active user can change permissions for this object. Defaults to true.
    can_share_app bool
    Indicates if the active user can change sharing to app level. Defaults to true.
    can_share_global bool
    Indicates if the active user can change sharing to system level. Defaults to true.
    can_share_user bool
    Indicates if the active user can change sharing to user level. Defaults to true.
    can_write bool
    Indicates if the active user can edit this object. Defaults to true.
    owner str
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads Sequence[str]
    Properties that indicate resource read permissions.
    removable bool
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing str
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes Sequence[str]
    Properties that indicate write permissions of the resource.
    app String
    The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
    canChangePerms Boolean
    Indicates if the active user can change permissions for this object. Defaults to true.
    canShareApp Boolean
    Indicates if the active user can change sharing to app level. Defaults to true.
    canShareGlobal Boolean
    Indicates if the active user can change sharing to system level. Defaults to true.
    canShareUser Boolean
    Indicates if the active user can change sharing to user level. Defaults to true.
    canWrite Boolean
    Indicates if the active user can edit this object. Defaults to true.
    owner String
    User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
    reads List<String>
    Properties that indicate resource read permissions.
    removable Boolean
    Indicates whether an admin or user with sufficient permissions can delete the entity.
    sharing String
    Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
    writes List<String>
    Properties that indicate write permissions of the resource.

    Package Details

    Repository
    Splunk pulumi/pulumi-splunk
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the splunk Terraform Provider.
    splunk logo
    Splunk v1.2.6 published on Thursday, Mar 21, 2024 by Pulumi