Splunk App Development Tips - Working with Splunk

This is a collection of useful tips and resources for developing Splunk apps. For an explanation of the available app types please see my earlier article on the topic.

Splunk Search References and Guides

Splunk publishes two excellent resources for learning and working with its search processing language (SPL):

Splunk App Development

Character Encoding

The default character encoding is UTF-8. When indexing content with different encodings configure props.conf (on the forwarder) accordingly, e.g. for UTF-16:

[source::uberAgent_log]
CHARSET = utf-16le

(Example taken from the uberAgent Log Collector app)

Reindex Files

In order to make the Universal Forwarder forget what it already processed and index files again delete the index fishbucket ($SPLUNK_HOME\var\lib\splunk\fishbucket).

Development Masterplan by Elliott Brown under CC
Development Masterplan by Elliott Brown under CC

REST API Permissions

The minimum permissions for posting data via the Splunk REST API: edit_tcp

Deleting Events

To delete all events from Splunk:

$SPLUNK_HOME/bin ./splunk stop
$SPLUNK_HOME/bin ./splunk clean all -f

Alternatively you can simply delete index directories after stopping splunkd. Index directories are stored in $SPLUNK_HOME\var\lib\splunk.

Deleting User State

The state of many modules (e.g. TimeRangePicker) is stored per user and app in the file viewstates.conf located in $SPLUNK_HOME\etc\users\USERNAME\APPNAME\local. Delete if you want the defaults back.

Advanced XML and Simple XML

Make Splunk Reload Changed Files

In many cases when you have edited source files you need to tell Splunk to reload. Otherwise you will see the old state and wonder why your edits have no effect.

  • Navigation: http://SPLUNK_SERVER:8000/en-US/debug/refresh?entity=/data/ui/nav
  • Views: http://SPLUNK_SERVER:8000/en-US/debug/refresh?entity=/data/ui/views
  • Everything (except deployment server): http://SPLUNK_SERVER:8000/en-US/debug/refresh
  • Deployment server: $SPLUNK_HOME\bin\splunk.exe reload deploy-server

Localization

Translate

Follow these steps when you need to translate an app to another language.

  1. Develop the original in English.

  2. Create a POT file:

    $SPLUNK_HOME\bin\splunk extract i18n -app APPNAME
    

    Unfortunately the splunk extract command fails when it encounters Unicode files with a BOM. Neither does it process Django template files.

  3. Translate the POT file
    Use Poedit to translate the POT file to your target language (e.g. German). This step creates .po and .mo files.

  4. Add the translations to your app
    The .po and .mo files go into the corresponding locale\LANG subdirectory of your app’s directory, e.g. locale\de.

  5. Test
    To test a translation manually replace the default (English) language code in the URL, e.g.:
    http://SPLUNKSERVER:8000/en-US/app/uberAgent –> http://SPLUNKSERVER:8000/de/app/uberAgent

Update

Updating an existing translation works like this:

  1. Create a new POT file (see above)
  2. Open the PO file (without a T) of the target language in Poedit
  3. Click menu Catalog -> Update from POT file
  4. Translate new or changed phrases
  5. Save

HTML

In order to translate HTML files copy the original (English) file and rename it by appending the locale name, e.g.: application_detail.html –> application_detail-de**_DE**.html. Translate the new file. Splunk automatically uses the translated file for DE locales.

Comments

Related Posts

Why Sizing for Averages is a Bad Idea

Why Sizing for Averages is a Bad Idea
When sizing a new environment it is tempting to use averages. It seems the logical thing to do. But it also guarantees a bad user experience. Example: Sizing an RDS or XenApp Farm Let’s say you’re tasked with building a new Citrix XenApp farm. Being a diligent IT person you set up a pilot: one or two machines with all the right software and settings. Then you carefully select a group of pilot users in such a way that they represent the organization’s employee types statistically correctly. Then you let them work on the new platform, ironing out bugs and such. At the end of that period, you have a great new platform. But there is one big question left: how many servers to buy?!
Logs & Metrics

Latest Posts