Splunk Certified Developer

Here you have the best Splunk SPLK-2001 practice exam questions

  • You have 70 total questions to study from
  • Each page has 5 questions, making a total of 14 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 22, 2024
Question 1 of 70

Suppose the following query in a Simple XML dashboard returns a table including hyperlinks:

index news sourcetype web_proxy | table sourcetype title link

Which of the following is a valid dynamic drilldown element to allow a user of the dashboard to visit the hyperlinks contained in the link field?

    Correct Answer: C

    To enable a dynamic drilldown that allows a user to visit hyperlinks contained in a link field, the correct element must correctly define a link that opens the target URL in a new tab. The option with the proper syntax for this functionality is '<drilldown> <link target="_blank">$row.link$</link> </drilldown>', which correctly references the field containing the hyperlink ('$row.link$') and specifies that the link should open in a new tab with 'target="_blank"'. This ensures that the user can click on the hyperlinks and navigate to the specified URLs.

Question 2 of 70

When updating a knowledge object via REST, which of the following are valid values for the sharing Access Control List property?

    Correct Answer: A, B, C, D

    When updating a knowledge object via REST in Splunk, valid values for the sharing Access Control List property include App, User, Global, and Nobody. These values enable you to specify the scope of accessibility and control for the object, ranging from specific applications to individual users, globally available resources, or to restrict access to nobody.

Question 3 of 70

Which of the following are ways to get a list of search jobs? (Select all that apply.)

    Correct Answer: A, B

    To get a list of search jobs, you can use multiple methods in Splunk. One approach is to access the jobs through the Splunk Web interface by going to Activity > Jobs. This will provide a list of search jobs associated with the user's account. Additionally, the Splunk REST API can be used to query the /services/search/jobs endpoint, which is specifically designed to list search jobs. This endpoint allows you to programmatically access and manage search jobs. While other REST endpoints like /services/saved/searches and /services/search/sid/results exist, they serve different purposes such as managing saved searches and retrieving specific search results, respectively, and are not intended for listing search jobs.

Question 4 of 70

Which of the following are benefits from using Simple XML Extensions? (Select all that apply.)

    Correct Answer: A, B, C

    Simple XML Extensions in Splunk allow for various customizations to dashboards. These include adding custom layouts, custom graphics, and custom behaviors. The ability to add custom layouts addresses the requirement to change the appearance and structure of the dashboard. Adding custom graphics enhances visual representation using new visual elements. Custom behaviors can be introduced to manage how the elements of dashboards react or interact. Limiting Splunk license consumption based on host is not a feature of Simple XML Extensions, as it pertains to licensing and usage monitoring, not dashboard customization.

Question 5 of 70

How can indexer acknowledgement be enabled for HTTP Event Collector (HEC)? (Select all that apply.)

    Correct Answer: B, C

    To enable indexer acknowledgement for HTTP Event Collector (HEC), it is necessary to either set the property for indexer acknowledgement to 1 when a REST request is sent to create a token, or to select the checkbox labeled 'Enable indexer acknowledgement' when creating a new HEC token in Splunk Web. These actions are required to ensure that indexer acknowledgement is properly configured.