最新版無料体験を掴み取れ!Splunk SPLK-1002問題集PDFは更新されたのは2025年
最新リリースのSPLK-1002問題集はSplunk Core Certified Power User認証済みです
Splunk Coreは、機械で生成されたデータから洞察と価値を抽出するために、組織によって広く使用されています。 SPLK-1002認定試験は、Splunk Coreの個人の理解と、それを効果的に使用する能力の証です。この認定は、雇用市場の競争力を提供し、Splunk Coreにおける個人の専門知識を検証します。さらに、個人がデータ分析とセキュリティの分野でキャリアを前進させるパスを提供します。
質問 # 93
A user wants to convert numeric field values to strings and also to sort on those values.
Which command should be used first, theevalor thesort?
- A. Use sort first, then convert the numeric to a string with eval.
- B. It doesn't matter whether eval or sort is used first.
- C. You cannot use the sort command and the eval command on the same field.
- D. Convert the numeric to a string with eval first, then sort.
正解:A
解説:
The eval command is used to create new fields or modify existing fields based on an expression2. The sort
command is used to sort the results by one or more fields in ascending or descending order2. If you want to
convert numeric field values to strings and also sort on those values, you should use the sort command first,
then use the eval command to convert the values to strings2. This way, the sort command will use the original
numeric values for sorting, rather than the converted string values which may not sort correctly. Therefore,
option C is correct, while options A, B and D are incorrect.
質問 # 94
This function of the stats command allows you to identify the number of values a field has.
- A. distinct_count
- B. max
- C. count
- D. fields
正解:C
質問 # 95
Which tool uses data models to generate reports and dashboard panels without using SPL?
- A. Visualization tab
- B. Pivot
- C. Datasets
- D. splunk CIM
正解:B
解説:
The correct answer isB. Pivot1.
In Splunk, Pivot is a tool that uses data models to generate reports and dashboard panels without the need for
users to write or understand Splunk's Search Processing Language (SPL)1.Data models enable users of Pivot
to create compelling reports and dashboards1.When a Pivot user designs a pivot report, they select the data
model that represents the category of event data that they want to work with1.Then they select a dataset within
that data model that represents the specific dataset on which they want to report1.This makes Pivot a powerful
tool for users who need to create visualizations but do not have a deep understanding of SPL1.
質問 # 96
When using a field value variable with a Workflow Action, which punctuation mark will escape the data
- A. ^
- B. !
- C. #
- D. *
正解:B
解説:
When using a field value variable with a Workflow Action, the exclamation mark (!) will escape the data. A
Workflow Action is a custom action that performs a task when you click on a field value in your search
results. A Workflow Action can be configured with various options, such as label name, base URL, URI
parameters, post arguments, app context, etc. A field value variable is a placeholder for the field value that will
be used to replace the variable in the URL or post argument of the Workflow Action. A field value variable is
written as fieldname, where field_name is the name of the field whose value will be used. However, if the field
value contains special characters that need to be escaped, such as spaces, commas, etc., you can use the
exclamation mark (!) before and after the field value variable to escape the data. For example, if you have a
field value variable host, you can write it as !$host! to escape any special characters in the host field value.
Therefore, option B is the correct answer.
質問 # 97
Data model are composed of one or more of which of the following datasets? (select all that apply.)
- A. Any child of event, transaction, and search datasets
- B. Transaction datasets
- C. Search datasets
- D. Events datasets
正解:B、C、D
解説:
Reference: https://docs.splunk.com/Documentation/Splunk/8.0.3/Knowledge/Aboutdatamodels
質問 # 98
How does a user display a chart in stack mode?
- A. By turning on the Use Trellis Layout option.
- B. You cannot display a chart in stack mode, only a timechart.
- C. By changing Stack Mode in the Format menu.
- D. By using the stack command.
正解:C
解説:
A chart is a graphical representation of your search results that shows the relationship between two or more fields2. You can display a chart in stack mode by changing the Stack Mode option in the Format menu2. Stack mode allows you to stack multiple series on top of each other in a chart to show the cumulative values of each series2. Therefore, option C is correct, while options A, B and D are incorrect because they are not ways to display a chart in stack mode.
質問 # 99
A data model consists of which three types of datasets?
- A. Field extraction, regex, delimited.
- B. Events, searches, transactions.
- C. Transaction, session ID, metadata.
- D. Constraint, field, value.
正解:B
解説:
The building block of a data model. Each data model is composed of one or more data model datasets. Each
dataset within a data model defines a subset of the dataset represented by the data model as a whole.
Data model datasets have a hierarchical relationship with each other, meaning they have parent-child
relationships. Data models can contain multiple dataset hierarchies. There are three types of dataset
hierarchies: event, search, and transaction.
https://docs.splunk.com/Splexicon:Datamodeldataset
質問 # 100
Calculated fields can be based on which of the following?
- A. Tags
- B. Fields generated from a search string
- C. Extracted fields
- D. Output fields for a lookup
正解:C
解説:
Reference:
https://docs.splunk.com/Documentation/Splunk/8.0.3/Knowledge/definecalcfields
質問 # 101
Where are the descriptions of the data models that come with the Splunk Common Information Model (CIM) Add-on documented?
- A. Pivot users manual.
- B. CIM Add-on manual.
- C. Datamodel command reference guide.
- D. Search and reporting user manual.
正解:B
質問 # 102
Which of the following statements describe GET workflow actions?
- A. GET workflow actions must be configured with POST arguments.
- B. Label names for GET workflow actions must include a field name surrounded by dollar signs.
- C. GET workflow actions can be configured to open the URT link in the current window or in a new window
- D. Configuration of GET workflow actions includes choosing a sourcetype.
正解:C
解説:
GET workflow actions are custom actions that open a URL link when you click on a field value in your search
results. GET workflow actions can be configured with various options, such as label name, base URL, URI
parameters, app context, etc. One of the options is to choose whether to open the URL link in the current
window or in a new window. GET workflow actions do not have to be configured with POST arguments, as
they use GET method to send requests to web servers. Configuration of GET workflow actions does not
include choosing a sourcetype, as they do not generate any data in Splunk. Label names for GET workflow
actions must include a field name surrounded by dollar signs, as this indicates the field value that will be used
to replace the variable in the URL link.
質問 # 103
What are the expected results for a search that contains the command | where A=B?
- A. Events where values of field are equal to values of field B.
- B. Events where field A contains the string value B.
- C. Events that contain the string value A=B.
- D. Events that contain the string value where A=B.
正解:A
解説:
The correct answer is C. Events where values of field A are equal to values of field B.
The where command is used to filter the search results based on an expression that evaluates to true or false.
The where command can compare two fields, two values, or a field and a value. The where command can also use functions, operators, and wildcards to create complex expressions1.
The syntax for the where command is:
| where <expression>
The expression can be a comparison, a calculation, a logical operation, or a combination of these. The expression must evaluate to true or false for each event.
To compare two fields with the where command, you need to use the field names without any quotation marks. For example, if you want to find events where the values for the field A match the values for the field B, you can use the following syntax:
| where A=B
This will return only the events where the two fields have the same value.
The other options are not correct because they use different syntax or fields that are not related to the where command. These options are:
* A. Events that contain the string value where A=B: This option uses the string value where A=B as a search term, which is not valid syntax for the where command. This option will return events that have the literal text "where A=B" in them.
* B. Events that contain the string value A=B: This option uses the string value A=B as a search term, which is not valid syntax for the where command. This option will return events that have the literal text
"A=B" in them.
* D. Events where field A contains the string value B: This option uses quotation marks around the value B, which is not valid syntax for comparing fields with the where command. Quotation marks are used to enclose phrases or exact matches in a search2. This option will return events where the field A contains the string value "B".
References:
* where command usage
* Search command cheatsheet
質問 # 104
The macro weekly_sales (2) contains the search string:
index-games I eval Product Sales = $price$ $AmountS01d$
Which of the following will return results?
- A. 'weekly_sales(3.99, 10) '
- B. 'weekly_sales(3)
- C. 'weekly_sales (3.99, 10)
- D. 'weekly_sales($3.99$, $10$)
正解:C
解説:
Explanation
The correct answer is C. 'weekly_sales (3.99, 10)'. This is because search macros accept arguments without quotation marks or dollar signs, and the number of arguments must match the number of parameters defined in the macro. The other options are incorrect because they either use quotation marks or dollar signs around the arguments, or they provide a different number of arguments than the macro expects. You can learn more about how to use search macros in searches from the Splunk documentation1.
質問 # 105
Which of the following commands support the same set of functions?
- A. search, where, eval
- B. stats, chart, timechart
- C. transaction, chart, timechart
- D. stats, eval, table
正解:B
質問 # 106
When would transaction be used instead of stats?
- A. To see results of a calculation.
- B. To have a faster and more efficient search.
- C. To group events based on a single field value.
- D. To group events based on start/end values.
正解:D
解説:
The transaction command is used to group events that are related by some common fields or conditions, such
as start/end values, time span, or pauses. The stats command is used to calculate statistics on a group of events
by a common field value.
References
Splunk Community
Splunk Transaction - Exact Details You Need
質問 # 107
Which of the following searches will return events containing a tag named Privileged?
- A. tag=priv*
- B. tag=Priv*
- C. tag=privileged
- D. tag=Priv
正解:B
解説:
Explanation/Reference: https://docs.splunk.com/Documentation/PCI/4.1.0/Install/PrivilegedUserActivity
質問 # 108
What does the following search do?
- A. Creates a table of the total count of mysterymeat corndogs split by user.
- B. Creates a table of the total count of users and split by corndogs.
- C. Creates a table that groups the total number of users by vegetarian corndogs.
- D. Creates a table with the count of all types of corndogs eaten split by user.
正解:D
質問 # 109
Data models are composed of one or more of which of the following datasets? (select all that apply)
- A. Any child of event, transaction, and search datasets
- B. Transaction datasets
- C. Search datasets
- D. Events datasets
正解:B、C、D
解説:
Data model datasets have a hierarchical relationship with each other, meaning they have parent-child
relationships. Data models can contain multiple dataset hierarchies. There are three types of dataset
hierarchies: event, search, and transaction.
https://docs.splunk.com/Splexicon:Datamodeldataset
質問 # 110
Data model are composed of one or more of which of the fo-owing datasets? (select all that apply.)
- A. Any child of event, transaction, and search datasets
- B. Transaction datasets
- C. Search datasets
- D. Events datasets
正解:B、C、D
解説:
Reference:https://docs.splunk.com/Documentation/Splunk/8.0.3/Knowledge/Aboutdatamodels
質問 # 111
......
最新のSPLK-1002試験問題集でSplunk試験問題にトレーニング:https://www.passtest.jp/Splunk/SPLK-1002-shiken.html
更新された検証済みのSPLK-1002問題集と解答で100%合格させる:https://drive.google.com/open?id=1Lm2e73nrOtPjLH83z7LMLgzcBcFtihPT