You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.7 KiB
40 lines
1.7 KiB
# This file will contain possible attribute/value pairs for configuring scoring methods.
|
|
|
|
# There is an scorings.conf in $SPLUNK_HOME/etc/apps/Splunk_ML_Toolkit/default/. You must restart
|
|
# Splunk to enable configurations.
|
|
|
|
# To learn more about configuration files (including precedence) please see the
|
|
# documentation located at
|
|
# http://docs.splunk.com/Documentation/Splunk/latest/Admin/Aboutconfigurationfiles
|
|
|
|
# GLOBAL SETTINGS
|
|
# Use the [default] stanza to define any global settings.
|
|
# * You can also define global settings outside of any stanza, at the top of
|
|
# the file.
|
|
# * Each conf file should have at most one default stanza. If there are
|
|
# multiple default stanzas, attributes are combined. In the case of
|
|
# multiple definitions of the same attribute, the last definition in the
|
|
# file wins.
|
|
# * If an attribute is defined at both the global level and in a specific
|
|
# stanza, the value in the specific stanza takes precedence.
|
|
|
|
[<STANZA_NAME>]
|
|
* Each stanza represents an ML-SPL scoring method; the scoring method name is the stanza name.
|
|
* Set the following attributes/values for the command. Otherwise, Splunk uses
|
|
the defaults.
|
|
* Implementation of scoring methods should be placed in an appropriate subpackage in
|
|
$SPLUNK_HOME/etc/apps/Splunk_ML_Toolkit/bin/scorings/.
|
|
|
|
package = <string>
|
|
* Package specifies the location of the directory that contains all scoring subpackages
|
|
|
|
subpackage = <string>
|
|
* Subpackage specifies the location of the directory that contains a group of (related) scoring modules
|
|
|
|
module = <string>
|
|
* The file name of the Python script that contains the scoring method.
|
|
|
|
class = <string>
|
|
* The class name of the scoring method in the Python script.
|
|
|