Question 237 of 510
Creating Reports, Dashboards and VisualizationsmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is to create a summary index that pre-aggregates the sales metrics every hour and modify the dashboard to search this summary index. This is correct because summary indexing offloads the heavy computation of the `timechart` command from real-time searches by running a scheduled search that pre-aggregates data into a much smaller, optimized dataset; the dashboard then queries this pre-computed data instead of scanning all raw events, drastically reducing latency during peak hours while preserving data accuracy. On the SPLK-1002 exam, this question tests your understanding of using summary indexing to pre-aggregate data for dashboard performance, a key optimization technique for scaling Splunk in high-traffic environments. A common trap is choosing to reduce the time range or split searches, which only mask the problem or increase complexity without addressing the root cause of heavy computation. Memory tip: think "pre-compute, not re-compute" — summary indexing does the hard work once, so your dashboard doesn't have to.

SPLK-1002 Practice Question: Creating Reports, Dashboards and Visualizations

This SPLK-1002 practice question tests your understanding of creating reports, dashboards and visualizations. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.

You are a Splunk administrator for a large e-commerce company. The marketing team has a dashboard that displays daily sales metrics, including revenue, number of transactions, and average order value. The dashboard is built using a single search that runs a 'timechart' command across all events. Recently, the dashboard has been timing out and failing to load during peak hours (10 AM - 2 PM) when traffic is highest. The team needs the dashboard to be available with minimal latency. You have the following options:

A. Reduce the time range on the dashboard to the last hour instead of the default last 24 hours. B. Create a summary index that pre-aggregates the sales metrics every hour and modify the dashboard to search this summary index. C. Increase the search time limit in the Splunk settings to allow the search to run longer. D. Split the single search into multiple smaller searches, each for a different metric, and run them concurrently on separate panels.

Which option best addresses the performance issue while maintaining data accuracy?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "best"

    Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.

Question 1mediummultiple choice
Full question →

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

Create a summary index that pre-aggregates the sales metrics every hour and modify the dashboard to search this summary index.

Option C is correct because creating a summary index that pre-aggregates sales metrics every hour offloads the heavy computation from real-time searches. The dashboard then queries this smaller, pre-computed dataset, drastically reducing search time and avoiding timeouts during peak hours, while maintaining data accuracy since the aggregation is done on the raw data.

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.

  • Split the single search into multiple smaller searches.

    Why it's wrong here

    Multiple searches increase load and may still time out; not efficient.

  • Reduce the time range on the dashboard to the last hour.

    Why it's wrong here

    This limits data and may not meet the team's need for daily metrics.

  • Create a summary index that pre-aggregates the sales metrics every hour and modify the dashboard to search this summary index.

    Why this is correct

    This reduces the data volume to search, improving performance without losing accuracy.

    Clue confirmation

    The clue word "best" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Increase the search time limit in Splunk settings.

    Why it's wrong here

    This only delays the timeout; the underlying slow search still exists.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often choose splitting the search (Option B) thinking it improves parallelism, but Splunk's architecture means multiple concurrent searches on the same data can increase I/O and CPU contention, whereas summary indexing directly reduces the data volume scanned.

Detailed technical explanation

How to think about this question

Summary indexing in Splunk uses the `collect` command or scheduled reports to periodically run a timechart aggregation (e.g., `stats sum(revenue) by _time span=1h`) and store the results in a dedicated index. When the dashboard searches this summary index, it bypasses the need to scan the full raw data, leveraging the fact that pre-aggregated data is orders of magnitude smaller. A real-world scenario is a large e-commerce site where raw events exceed millions per hour; without summary indexing, a timechart over 24 hours would scan billions of events, causing timeouts even with optimized searches.

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 practitioner preparing for the SPLK-1002 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

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.

Related practice questions

Related SPLK-1002 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SPLK-1002 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-1002 question test?

Creating Reports, Dashboards and Visualizations — This question tests Creating Reports, Dashboards and Visualizations — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Create a summary index that pre-aggregates the sales metrics every hour and modify the dashboard to search this summary index. — Option C is correct because creating a summary index that pre-aggregates sales metrics every hour offloads the heavy computation from real-time searches. The dashboard then queries this smaller, pre-computed dataset, drastically reducing search time and avoiding timeouts during peak hours, while maintaining data accuracy since the aggregation is done on the raw data.

What should I do if I get this SPLK-1002 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "best". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on SPLK-1002

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. You are a Splunk administrator for a large e-commerce company. The operations team uses a dashboard to monitor server health, which includes a single-value panel showing the current number of active users, a bar chart of error counts by service, and a table of recent critical log entries. Recently, users have reported that the dashboard loads very slowly, sometimes taking over 30 seconds to display all panels. The dashboard uses base search and post-process searches to reduce duplication. The base search retrieves all logs from the last 24 hours, and each panel runs a post-process search to filter and aggregate data. The dashboard is scheduled to refresh every 60 seconds. There are approximately 10 million events per day. After investigating, you notice that the base search returns a large amount of data, and each post-process search still processes a significant subset. Which approach would most effectively improve dashboard performance without significantly altering the dashboard's functionality?

hard
  • A.Remove the table of critical log entries to reduce the number of post-process searches.
  • B.Change the base search to a real-time search so that the data is streamed continuously.
  • C.Increase the dashboard refresh interval to 300 seconds to reduce the frequency of searches.
  • D.Create a summary index that pre-aggregates logs by hour and service, then modify the base search to use the summary index and adjust post-process searches accordingly.

Why D: Option D is correct because creating a summary index that pre-aggregates logs by hour and service drastically reduces the volume of data the base search must process. Instead of scanning 10 million raw events per 60-second refresh, the base search queries pre-computed hourly summaries, and each post-process search operates on a much smaller, aggregated dataset. This approach preserves all dashboard panels and their functionality while addressing the root cause of slow performance: excessive data volume in the base search.

Keep practising

More SPLK-1002 practice questions

Last reviewed: Jun 11, 2026

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.

Loading comments…

Sign in to join the discussion.

This SPLK-1002 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-1002 exam.