- A
Define a field alias in props.conf: `FIELDALIAS-action = action as action`
This maps the vendor field 'action' to the CIM field 'action'.
- B
Use the 'calculatedfields' field in props.conf: `CALCULATED_action = if(action=="accept","allowed",if(action=="deny","blocked","dropped"))`
Why wrong: Calculated fields can create new fields but are not the standard way to map to CIM fields.
- C
Create a custom data model that includes the field 'action' with the vendor values.
Why wrong: Creating a custom data model is not required; CIM fields can be mapped via aliases.
- D
Add a tag 'action=accept' to events with action=accept, and similarly for deny and drop.
Why wrong: Tags are not used to map field values; they are used for event categorization.
Quick Answer
The answer is to define a field alias in props.conf using `FIELDALIAS-action = action as action`. This configuration is correct because the vendor’s ‘action’ field already contains values like ‘accept’, ‘deny’, and ‘drop’ that match the CIM field ‘action’ exactly, so no value transformation is needed—only a name mapping. A CIM field alias for data normalization works by telling Splunk to treat the vendor’s field as an alias of the CIM field, allowing the Common Information Model to recognize and normalize the data without additional lookups or transforms. On the SPLK-1003 exam, this question tests your understanding of when to use field aliases versus calculated fields or lookups; the common trap is overcomplicating the solution by choosing a transform when a simple alias suffices. Remember the memory tip: “Same name, same values? Just alias it.”
SPLK-1003 Macros, Saved Searches and CIM Practice Question
This SPLK-1003 practice question tests your understanding of macros, saved searches and cim. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
An organization uses Splunk CIM to normalize data from multiple sources. They have a custom data source that logs firewall events with a field 'action' containing values 'accept', 'deny', 'drop'. They want to map this to the CIM field 'action'. Which configuration is required?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Define a field alias in props.conf: `FIELDALIAS-action = action as action`
Option A is correct because the CIM field 'action' already exists in the CIM data model with the same name as the vendor field. A field alias in props.conf using `FIELDALIAS-action = action as action` simply creates an alias so that the vendor's 'action' field is recognized as the CIM 'action' field, allowing the CIM to normalize the data without any transformation. This is the simplest and most efficient method when the vendor field name and values already match the CIM field name and expected values.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Define a field alias in props.conf: `FIELDALIAS-action = action as action`
Why this is correct
This maps the vendor field 'action' to the CIM field 'action'.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Use the 'calculatedfields' field in props.conf: `CALCULATED_action = if(action=="accept","allowed",if(action=="deny","blocked","dropped"))`
Why it's wrong here
Calculated fields can create new fields but are not the standard way to map to CIM fields.
- ✗
Create a custom data model that includes the field 'action' with the vendor values.
Why it's wrong here
Creating a custom data model is not required; CIM fields can be mapped via aliases.
- ✗
Add a tag 'action=accept' to events with action=accept, and similarly for deny and drop.
Why it's wrong here
Tags are not used to map field values; they are used for event categorization.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often overcomplicate the solution by choosing a calculated field or custom data model, not realizing that when the vendor field name and values already align with the CIM field, a simple field alias is the correct and efficient approach.
Detailed technical explanation
How to think about this question
Under the hood, Splunk CIM normalization relies on field aliases, calculated fields, and lookups to map vendor-specific field names and values to the canonical CIM field names and values. The `FIELDALIAS` stanza in props.conf creates a lightweight, search-time alias that does not modify the raw data, making it ideal when the vendor field name already matches the CIM field name. A real-world scenario where this matters is when ingesting firewall logs from multiple vendors (e.g., Cisco ASA, Palo Alto, Check Point) that all use 'action' with values 'accept', 'deny', 'drop'; a simple alias ensures all data is normalized without costly field transformations.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A security administrator must allow nursing staff to reach a patient records server while blocking access from the guest Wi-Fi VLAN. After applying an extended ACL, traffic is still blocked from nursing workstations. The ACL was applied outbound instead of inbound on the wrong interface. Questions like this test ACL direction and placement rules.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Macros, Saved Searches and CIM — study guide chapter
Learn the concepts, then practise the questions
- →
Macros, Saved Searches and CIM practice questions
Targeted practice on this topic area only
- →
All SPLK-1003 questions
500 questions across all exam domains
- →
Splunk Core Certified Power User SPLK-1003 study guide
Full concept coverage aligned to exam objectives
- →
SPLK-1003 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SPLK-1003 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Advanced Searching and Statistics practice questions
Practise SPLK-1003 questions linked to Advanced Searching and Statistics.
Macros, Saved Searches and CIM practice questions
Practise SPLK-1003 questions linked to Macros, Saved Searches and CIM.
Advanced Visualization and Lookups practice questions
Practise SPLK-1003 questions linked to Advanced Visualization and Lookups.
Transactions and Event Correlation practice questions
Practise SPLK-1003 questions linked to Transactions and Event Correlation.
SPLK-1003 fundamentals practice questions
Practise SPLK-1003 questions linked to SPLK-1003 fundamentals.
SPLK-1003 scenario practice questions
Practise SPLK-1003 questions linked to SPLK-1003 scenario.
SPLK-1003 troubleshooting practice questions
Practise SPLK-1003 questions linked to SPLK-1003 troubleshooting.
Practice this exam
Start a free SPLK-1003 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this SPLK-1003 question test?
Macros, Saved Searches and CIM — This question tests Macros, Saved Searches and CIM — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Define a field alias in props.conf: `FIELDALIAS-action = action as action` — Option A is correct because the CIM field 'action' already exists in the CIM data model with the same name as the vendor field. A field alias in props.conf using `FIELDALIAS-action = action as action` simply creates an alias so that the vendor's 'action' field is recognized as the CIM 'action' field, allowing the CIM to normalize the data without any transformation. This is the simplest and most efficient method when the vendor field name and values already match the CIM field name and expected values.
What should I do if I get this SPLK-1003 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 11, 2026
This SPLK-1003 practice question is part of Courseiva's free Splunk certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SPLK-1003 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.