March 2018
Beginner to intermediate
576 pages
13h 29m
English
When you upload an app, you should move everything out of local and into default. This is important because all changes that a user makes will be stored in local.
When your app is upgraded, all files in the app (except local files) will be replaced, and the user's changes will be lost. The following Unix commands illustrate what needs to be done:
cp -r $SPLUNK_HOME/etc/apps/is_app_one /tmp/
cd /tmp/is_app_one mv local/data/ui/nav/*.xml ...
Read now
Unlock full access