Free Splunk Core Certified User Exam Flashcards
Memorize 50 essential terms and definitions for the Splunk Core Certified User Certification Exam. See the term, recall the definition, then flip to check yourself.
What are the three main Splunk processing components, and what does each one do?
Forwarders collect data at the source and send it on, indexers parse that data and store it in indexes, and search heads run your searches and present the results. In a small single-instance deployment, one Splunk installation performs all three roles.
Filter by Topic
Jump to Card
About These Splunk Core Certified User Flashcards
These 50 flashcards are designed to help you memorize key terms and definitions for the Splunk Core Certified User Certification Exam. Each card shows a term on the front and its definition on the back—the classic flashcard format for vocabulary memorization. Use these alongside our practice questions to build both recall and comprehension.
Topics Covered
Complete Flashcard Reference
Review every term in this set. Open any term to reveal its definition.
What are the three main Splunk processing components, and what does each one do?
Forwarders collect data at the source and send it on, indexers parse that data and store it in indexes, and search heads run your searches and present the results. In a small single-instance deployment, one Splunk installation performs all three roles.
What is a Splunk app, and which app do most users search from?
An app is a self-contained workspace bundling its own navigation, dashboards, and knowledge objects. Most searching happens in Search & Reporting, the default app. Switching apps changes which saved objects you can see, so a report saved in one app may not appear in another.
What is the default time range in the Search app's time range picker?
Last 24 hours. Time range is the single biggest lever on search speed, so narrow it before adding more filters. The preset list comes from times.conf and includes real-time windows, relative ranges, date ranges, and All time.
If your search bar sets earliest and latest but the time range picker says something different, which one applies?
The time modifiers typed in the search bar win. A range specified in the SPL, or saved with a saved search, overrides the picker. This is the usual explanation when a dashboard panel appears to ignore the time range you selected.
In a search that specifies earliest=-2h but no latest, what is the latest time?
It defaults to now. The reverse is not permitted: if you specify a latest time you must also specify an earliest time, or the search will not bound the range the way you intend.
What does the @ symbol do in a time modifier such as -1d@d?
It snaps the time back to the start of that unit. So -1d@d means go back 24 hours, then snap to midnight, giving you the beginning of yesterday rather than this time yesterday. Snapping always rounds down, never up.
Name Splunk's three search modes and identify the default.
Fast, Smart, and Verbose. Smart is the default: it acts like Verbose for event searches, discovering all fields, and like Fast when the search contains a transforming command. Fast mode turns field discovery off to gain speed.
What does the timeline above your search results show, and what happens when you click a bar?
It charts how many matching events occurred over each slice of the search's time range, making spikes and gaps obvious. Clicking a bar zooms the results into that slice. This filters what you are viewing without editing your SPL.
Why is the Statistics tab empty after running a search like index=web error?
Because that search returns raw events, not a results table. The Statistics and Visualization tabs only populate once a transforming command such as stats, top, rare, or chart has turned those events into rows and columns.
How long does an ad hoc search job survive, and how do you extend that?
An ad hoc job is retained for 10 minutes after it finishes. Sharing the job extends its lifetime to 7 days and grants read permission to Everyone. Viewing an active job resets its timer, and once the lifetime expires the job is deleted.
What is the difference between pausing, finalizing, and cancelling a running search?
Pause suspends the job so you can resume it. Finalize stops the search early but keeps every result gathered so far. Cancel stops the job and throws the results away. Finalize is the right choice when a long search has already found enough.
What happens when you click a field value in the fields sidebar or inside an event?
Splunk offers to add that field-value pair to your search, or to exclude it from the results. It rewrites the SPL for you, which is the quickest way to refine a search. The added term is ordinary SPL that you can then edit by hand.
What can you create from the Save As menu on the search page?
A Report, a Dashboard Panel, an Alert, or an Event Type. Saving as a report preserves the search string, time range, and display settings for reuse. Exporting results is separate and offers CSV, JSON, XML, or raw event output.
What do the three default fields host, source, and sourcetype each describe?
host is the machine an event came from, source is the file or input path it arrived through, and sourcetype describes the format of the data. They exist on every event, making them the fastest way to slice data by origin.
Which fields appear in the Selected Fields list when you first run a search?
host, source, and sourcetype. Selected fields are displayed beneath each event in the results list. You can promote any other field to selected, after which it appears under every event that actually contains it.
How often must a field appear in your results before it is listed under Interesting Fields?
In at least 20% of the events returned. That threshold explains why a field you know exists can be missing from the sidebar: it is present but too sparse in this result set. Search for it directly or add it as a selected field.
Are field names and search keywords case-sensitive in Splunk?
Field names are case-sensitive, but the terms you search for are not. status and Status are two different fields, while searching failed also matches FAILED. Boolean operators such as AND, OR, and NOT must be uppercase to work as operators.
At what point are most fields extracted from your data?
At search time, each time a search runs, rather than when the data was indexed. That is why a newly created field extraction immediately applies to data already sitting in the index, and why the original raw event text is never altered.
What is the practical difference between searching error and searching status=error?
The bare keyword scans the raw text of events for that string anywhere it occurs. The field-value pair matches only events where the extracted field status holds that value, so it is far more precise and normally faster.
Why does status!=200 return fewer events than NOT status=200?
The != form only returns events that actually have a status field at all. NOT additionally returns events where the field is missing entirely. Reach for NOT whenever the absence of a field should also count as a match.
Which comparison operators can you apply to a field in a search?
=, !=, <, <=, >, and >=. Comparisons only work against field-value pairs, never bare keywords, so bytes>1000 is valid while a naked >1000 is not. Numeric comparisons require the field to contain numeric values.
Where in a search term should you avoid putting a wildcard, and why?
At the beginning. A leading wildcard such as *error forces Splunk to scan far more data because the index cannot be used efficiently. Trailing wildcards like status=4* are fine and are used routinely.
How do you match several values of the same field without repeating OR?
Use the IN operator, as in status IN (401, 403, 404). It is functionally the same as chaining OR conditions on that one field, but it is shorter to type and much easier to read later.
What does the pipe character do in SPL, and which command is implied at the start of every search?
Each pipe feeds the results of the command on its left into the command on its right. The search command is implied at the very beginning, which is why you type index=web error instead of search index=web error.
In what order does the search command evaluate Boolean operators?
Parentheses first, then NOT, then OR, then AND. The eval and where commands reverse the last two, evaluating AND before OR. AND is implied between adjacent terms, and NOT applies only to the single term that follows it.
Why should a search begin by specifying an index?
Writing index=web restricts the search to one index rather than every index your role can read, which cuts the work enormously. Index, sourcetype, host, and time are the filters to place first, before the first pipe.
What do fields + status and fields - status each do?
The plus form keeps only the fields you list; the minus form removes them. Plus is the default when no sign is given. The internal fields _raw and _time survive the fields command unless you name them explicitly, as in fields - _raw.
How does the table command differ from the fields command?
Both select fields, but table also formats output as a table with columns in exactly the order you listed, and it is non-streaming. Put table at the end of a search, and use fields earlier in the pipeline to trim data as it flows.
How do you give a field a display name that contains a space?
Use rename with quotation marks around the new name: rename bytes AS "Bytes Sent". Do the renaming before piping into table, because table can only select fields that already exist under that name; it cannot rename anything.
What does dedup host keep, and how do you retain more than one event per value?
It keeps only the first event for each distinct host and discards the later duplicates. Supply a number to keep more, as in dedup 3 host. Add a sortby clause to control which event ends up counting as the first one.
How do you sort in descending order, and how many results does sort return by default?
Prefix the field with a minus sign: sort - bytes. A plus sign, or no sign at all, sorts ascending. When you give no count, sort returns at most 10000 results; sort 0 returns every result.
What makes a command a transforming command?
It converts individual events into a statistics table of rows and columns. stats, top, rare, and chart are the common examples. Only after a transforming command runs do the Statistics and Visualization tabs have anything to display.
How many rows does top user return by default, and which columns does it add?
Ten rows, holding the most common values of user. It adds a count column and a percent column showing each value's share of the events. The results arrive already sorted from most common to least common.
How do you make top return a different number of values, or all of them?
Give it a number, as in top 5 user, which is identical to top limit=5 user. Setting limit=0 returns every distinct value. Add showperc=false when you want the counts but not the percent column.
What does top 3 product BY category return?
The three most common product values within each individual category, not merely the three most common products overall. The BY clause splits the calculation into separate groups, which is how you compare leaders across segments.
What does the rare command do?
It returns the least common values of a field, the mirror image of top, and takes the same arguments including the default limit of 10. Use it to surface unusual values such as seldom-seen error codes or rarely active accounts.
How many rows does stats return with a BY clause, and how many without one?
Without BY it returns exactly one row, aggregating the entire result set. With BY it returns one row per distinct value of that field, or one row per unique combination when you list several fields.
What is the difference between stats count, stats count(status), and stats dc(status)?
count counts every event. count(status) counts only the events where status actually has a value. dc(status), short for distinct_count, counts how many different status values appeared rather than how many events did.
Name common stats functions and explain how to rename the output column.
count, sum, avg, min, max, plus values for distinct values and list for all values including duplicates. Use AS to name the resulting column, for example stats sum(bytes) AS "Total Bytes" BY host.
What exactly does saving a search as a report store?
The search string together with its time range and display settings, so it can be rerun without retyping any SPL. A report is the reusable building block you later schedule, share, or drop onto a dashboard as a panel.
Why might a report you just created be invisible to a colleague?
New reports are private to their owner by default. Sharing has to be changed to App or All apps in the report's permissions before anyone else can see it. The report also lives inside the app it was saved in.
Where do you change a saved report's description, permissions, or schedule?
On the Reports listing page, using the Edit menu for that report, which also offers clone and delete. Changing the underlying SPL is different: open the report in Search, adjust the search, and save your changes.
Why does a chart refuse to render for a plain event search?
Visualizations require numeric, time-based, or aggregated results. Pipe the events through a transforming command first, such as stats count BY status, and the Visualization tab will then offer chart types to choose from.
What are the two ways to get a panel onto a dashboard?
Save a search straight to a dashboard panel using Save As, or add an existing saved report to a dashboard. Either route lets you create a brand new dashboard or append the panel to a dashboard that already exists.
What is the advantage of backing a dashboard panel with a saved report rather than an inline search?
A report-backed panel stays linked to that report, so editing the report updates every dashboard using it. An inline search is a private copy living inside that one dashboard and has to be edited panel by panel.
What does a lookup add to your search results?
It matches a field in your events against a column in a table and then adds that table's other columns to those events as new fields. A CSV lookup is called a static lookup because its contents change only when you replace the file.
What are the steps to set up a CSV lookup in Splunk Web?
Upload the CSV as a lookup table file, create a lookup definition that names the file and sets the matching rules, then optionally configure it as an automatic lookup. Every lookup type requires a definition before it can be used.
How does an automatic lookup differ from using the lookup command?
An automatic lookup is applied to all matching searches at search time with no SPL required, while the lookup command applies it only where you type it. In the command, OUTPUT overwrites existing fields and OUTPUTNEW leaves them untouched.
What is the difference between a scheduled report and an alert?
A scheduled report runs on a schedule and delivers its results every single time. An alert runs on a schedule or in real time but acts only when its trigger condition is satisfied, such as the result count crossing a threshold.
What does throttling an alert do, and where do you review alerts that have fired?
Throttling suppresses further triggering for a set period so one noisy condition cannot flood you with actions. Fired alerts appear under Activity then Triggered Alerts, where severity (Info, Low, Medium, High, Critical; Medium by default) only groups them.
Frequently Asked Questions
How many questions are on the Splunk Core Certified User exam?
The official test blueprint lists 60 multiple-choice questions in 60 minutes of total seat time. Three of those minutes are reserved for reviewing and accepting the Splunk Certification Agreement, which leaves 57 minutes of actual assessment time. Do not confuse this with the Splunk Core Certified Power User exam, which is a different, higher-level exam with 65 questions.
What is the passing score for the Splunk Core Certified User exam?
Splunk does not publish a numeric passing score or a public pass rate for this exam. Results are reported as pass or fail immediately after you submit. Ignore third-party sites that claim a specific cut score such as 70% or 75%, because no official Splunk source states one. Candidates who do not pass can review section-level feedback in their Pearson VUE account, but never a question-by-question breakdown.
What does the official blueprint cover, and how is it weighted?
The blueprint has eight content areas: Splunk Basics 5%, Basic Searching 22%, Using Fields in Searches 20%, Search Language Fundamentals 15%, Using Basic Transforming Commands 15%, Creating Reports and Dashboards 12%, Creating and Using Lookups 6%, and Creating Scheduled Reports and Alerts 5%. Basic Searching and Using Fields together account for 42% of the exam, so weight your study time accordingly.
How much does the exam cost and how is it delivered?
Splunk lists $130 USD per exam attempt, with bulk vouchers of five registrations for $500 USD. Delivery is through Pearson VUE, either in person at an authorized test center or at home through the OnVUE online proctor. All Splunk certification exams are closed book: no notes, course materials, or access to Splunk Docs are permitted, and a violation results in automatic failure and forfeiture of your fee.
How long must I wait to retake the exam if I fail?
After a first failure you wait 7 days, and the wait begins the day after your attempt. After a second failure you wait 14 days. Subsequent waits are 28 days before the fourth attempt and 56 days before the fifth and sixth attempts. Retakes beyond the sixth attempt are considered case by case, and Splunk reserves the right to deny them. Each attempt costs another $130 USD.
How long is the certification valid and how do I renew it?
All Splunk certifications are valid for three years from the date earned, with a 90-day grace period after the cycle ends before the credential goes inactive. Since 1 March 2026 you can no longer recertify through coursework. You renew either by retaking and passing the same exam during the final year of your recertification window, or by earning a higher-level certification in the track, which for Core User means Splunk Core Certified Power User.
Explore More Splunk Certifications
Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.