icon/x Created with Sketch.

Splunk Cookie Policy

We use our own and third-party cookies to provide you with a great online experience. We also use these cookies to improve our products and services, support our marketing campaigns, and advertise to you on our website and other websites. Some cookies may continue to collect information after you have left our website. Learn more (including how to update your settings) here.
Accept Cookie Policy

We are working on something new...

A Fresh New Splunkbase
We are designing a New Splunkbase to improve search and discoverability of apps. Check out our new and improved features like Categories and Collections. New Splunkbase is currently in preview mode, as it is under active development. We welcome you to navigate New Splunkbase and give us feedback.

Accept License Agreements

This app is provided by a third party and your right to use the app is in accordance with the license provided by that third-party licensor. Splunk is not responsible for any third-party apps and does not provide any warranty or support. If you have any questions, complaints or claims with respect to this app, please contact the licensor directly.

Thank You

Downloading Custom REST Command (crest)
SHA256 checksum (custom-rest-command-crest_212-beta.tgz) 959883a8c8141807d6ecf6acf163a265f94e46793a4e4f87c06f906ca20b6471 SHA256 checksum (custom-rest-command-crest_211-beta.tgz) 38d51bf8598329ef45d513290fddf263bdc95dfae8f0e15baf60f61e4eff4179 SHA256 checksum (custom-rest-command-crest_201-beta.tgz) 5bed1a83544cc74f59e7c8ecdb8790ec82f1f6939fa802205bb4040dbfe4cc46 SHA256 checksum (custom-rest-command-crest_200-beta.tgz) 745740baee4f27140b04203bf35be8cd63fde17048eace8feda226098e2166f7
To install your download
For instructions specific to your download, click the Details tab after closing this window.

Flag As Inappropriate

splunk

Custom REST Command (crest)

Splunk Cloud
Overview
Details
The Custom REST Command (crest) app is designed to streamline and enhance your Splunk environment by enabling direct interaction with RESTful APIs through Splunk searches. Modern IT operations often require insights from multiple systems, making API integrations critical but often cumbersome. Traditional methods can involve external tools, additional scripts, or manual processes that disrupt workflows and slow down decision-making.

The crest command addresses this by providing a seamless, native way to send HTTP requests (GET, POST, DELETE) directly from Splunk. This empowers users to fetch, update, or delete data from external systems in real time, fully leveraging Splunk’s data visualization and analysis capabilities. Whether you're integrating with third-party services, automating repetitive tasks, or interacting with internal APIs, crest ensures efficiency, speed, and simplicity.

Why You Need This App
1. Simplifies API Workflows: No need for external scripts—execute HTTP requests within Splunk searches.
2. Real-Time Integration: Fetch or modify data from external systems on the fly, staying updated without manual effort.
3. Enhanced Debugging: Built-in debug mode lets you validate configurations before executing, saving time and reducing errors.
4. Flexibility & Security: With support for custom headers, SSL verification, and session authentication, crest adapts to your security and operational needs.
5. Optimized Decision-Making: Consolidate external data with Splunk insights to enable faster, more informed decisions.

By combining the power of Splunk with direct RESTful API interaction, Custom REST Command transforms your data workflows into an agile, integrated system. Try it today to experience streamlined API management and enriched data analysis.

Custom REST Command (crest)

The crest command is a custom Splunk search command that allows you to send HTTP requests directly from your Splunk searches. It supports GET, POST, and DELETE methods, allowing you to interact with RESTful APIs and web services within your Splunk environment.

This command is shipped with the Custom REST Command app.

Table of Contents


Syntax

| crest url=<string> method=<string> [data=<string>] [headers=<string>] [debug=<boolean>] [verify=<boolean>] [timeout=<int>]

  • Note: Square brackets [] denote optional parameters.

Parameters

  • url (required): The endpoint URL to send the HTTP request to.
  • method (required): The HTTP method to use. Supported methods are get, post, and delete.
  • data (optional): The payload to send with a POST request. Should be a JSON-formatted string.
  • headers (optional): Custom headers to include in the request. Should be a JSON-formatted string.
  • debug (optional): Set to true to enable debug mode, which displays request details without executing the request.
  • verify (optional): Set to false to disable SSL verification in your REST calls. Be careful with this option!
  • timeout (optional): Default is 10s, but you can change it according to your needs..

Usage

Example 1: GET Request

Send a GET request to http://example.com/api.

| crest url="http://example.com/api" method="get"

Explanation: This command sends a GET request to the specified URL and returns the response data in the search results.

Example 2: POST Request

Send a POST request with a data payload to http://example.com/api.

| crest url="http://example.com/api" method="post" data="{'key':'value'}"

Explanation: This command sends a POST request to the specified URL with the provided JSON data as the payload.

Example 3: DELETE Request

Send a DELETE request to http://example.com/api/resource.

| crest url="http://example.com/api/resource" method="delete"

Explanation: This command sends a DELETE request to remove the specified resource at the given URL.


Notes

  • SSL Verification: SSL verification is enabled by default. Ensure that your Splunk instance can verify the SSL certificates of the endpoints you are accessing. If you need to disable SSL verification (not recommended due to security risks), you can include the option verify="false" in the command.
  • Session Authorization: When making requests to localhost, the command automatically includes the Splunk session key in the Authorization header. This uses your user to authenticate the internal request.
  • Timeouts: The command uses a default timeout of 10 seconds for HTTP requests. You can change this using the timeout option if necessary.

License

This app is licensed under the MIT License.


Disclaimer: Use this command responsibly. Make sure you have permission to access the URLs you are querying, and be aware of the load and security implications of sending HTTP requests from your Splunk instance.

Release Notes

Version 2.1.2-beta
Nov. 22, 2024

Stopped loading data option as JSON. Leaving as String.

Version 2.1.1-beta
Nov. 22, 2024

Debug mode fixed.

Version 2.0.1-beta
Nov. 22, 2024

README update.

Version 2.0.0-beta
Nov. 22, 2024

Custom REST Command (crest)

The crest command is a custom Splunk search command that allows you to send HTTP requests directly from your Splunk searches. It supports GET, POST, and DELETE methods, allowing you to interact with RESTful APIs and web services within your Splunk environment.

This command is shipped with the Custom REST Command app.

Table of Contents


Installation

To install the Custom REST Command app and use the crest command:

  1. Download the App: Obtain the app package from Splunkbase.
  2. Access Splunk Web: Log in to your Splunk instance.
  3. Navigate to Manage Apps:
    • Click on the Apps menu.
    • Select Manage Apps.
  4. Install the App:
    • Click on Install app from file.
    • Upload the app package.
    • Click Upload and follow the prompts.
  5. Restart Splunk: Some installations may require a restart. If prompted, restart your Splunk instance to complete the installation.

Syntax

| crest url=<string> method=<string> [data=<string>] [headers=<string>] [debug=<boolean>] [verify=<boolean>] [timeout=<int>]

  • Note: Square brackets [] denote optional parameters.

Parameters

  • url (required): The endpoint URL to send the HTTP request to.
  • method (required): The HTTP method to use. Supported methods are get, post, and delete.
  • data (optional): The payload to send with a POST request. Should be a JSON-formatted string.
  • headers (optional): Custom headers to include in the request. Should be a JSON-formatted string.
  • debug (optional): Set to true to enable debug mode, which displays request details without executing the request.
  • verify (optional): Set to false to disable SSL verification in your REST calls. Be careful with this option!
  • timeout (optional): Default is 10s, but you can change it according to your needs..

Usage

Example 1: GET Request

Send a GET request to http://example.com/api.

| crest url="http://example.com/api" method="get"

Explanation: This command sends a GET request to the specified URL and returns the response data in the search results.

Example 2: POST Request

Send a POST request with a data payload to http://example.com/api.

| crest url="http://example.com/api" method="post" data="{'key':'value'}"

Explanation: This command sends a POST request to the specified URL with the provided JSON data as the payload.

Example 3: DELETE Request

Send a DELETE request to http://example.com/api/resource.

| crest url="http://example.com/api/resource" method="delete"

Explanation: This command sends a DELETE request to remove the specified resource at the given URL.


Debug Mode

Use the debug parameter to display the request details without executing the actual HTTP request. This is useful for verifying the request configuration.

| crest url="http://example.com/api" method="get" debug="true"

Explanation: When debug is set to true, the command outputs the request details (such as url, method, headers, and data) without sending the HTTP request.


Notes

  • SSL Verification: SSL verification is enabled by default. Ensure that your Splunk instance can verify the SSL certificates of the endpoints you are accessing. If you need to disable SSL verification (not recommended due to security risks), you can include the option verify="false" in the command.
  • Session Authorization: When making requests to localhost, the command automatically includes the Splunk session key in the Authorization header. This uses your user to authenticate the internal request.
  • Timeouts: The command uses a default timeout of 10 seconds for HTTP requests. You can change this using the timeout option if necessary.
  • Error Handling: The command includes error handling for network problems and invalid parameters.
  • Data Payloads: When sending JSON data in the data and header parameters, make sure it is properly formatted. For example:
    • data="{\"user\":\"matheus\",\"role\":\"admin\"}"

License

This app is licensed under the MIT License.


Disclaimer: Use this command responsibly. Make sure you have permission to access the URLs you are querying, and be aware of the load and security implications of sending HTTP requests from your Splunk instance.


Subscribe Share

Are you a developer?

As a Splunkbase app developer, you will have access to all Splunk development resources and receive a 10GB license to build an app that will help solve use cases for customers all over the world. Splunkbase has 1000+ apps from Splunk, our partners and our community. Find an app for most any data source and user need, or simply create your own with help from our developer portal.

Follow Us:
Splunk, Splunk>,Turn Data Into Doing, Data-to-Everything, and D2E are trademarks or registered trademarks of Splunk LLC in the United States and other countries. All other brand names,product names,or trademarks belong to their respective owners.