This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Splunk search macro to list all of the fields and their respective | |
# path / calling hierarchy within the passed datamodel | |
# (the $dm_name$ argument). This is useful for figuring | |
# out how to reference datamodel field names in tstats commands. | |
# Note, you need to prepend a leading pipe (|) to use this macro | |
# in a search, e.g., | `list_fields_by_datamodel_object("my_datamodel")` | |
[list_fields_by_datamodel_object(1)] | |
description = List of all fields in datamodel (arg1) | |
iseval = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* These settings will hide the Splunk-specific links, | |
.e.g, About, Support, etc., from the footer | |
of Splunk dashboards. It will not affect the | |
Splunk copyright that appears in the footer */ | |
/* hide footer links in Splunk 6.3 and 6.4 */ | |
.footer > div > ul { | |
display: none !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* These CSS settings will hide often unwanted time | |
period options from all time pickers in SimpleXML | |
dashboards for the app containing this file. | |
These settings are only visual changes, i.e., | |
users can still search using All-Time or Real-Time | |
settings if they know how to manually enter the | |
corresponding values */ | |
/* hide real-time accordion tab in time pickers */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Splunk's SimpleXML classes for text boxes, drop downs, and | |
multiselect inputs have some odd CSS settings that make | |
it difficult to change the width of the whole entity with | |
a single CSS setting. | |
The following adjustments to the child input elements | |
are intended to overcome this challenge by making the | |
internal elements conform to the width setting of the | |
top-level container. | |
Using these settings for an entire app will allow a developer | |
to resize these type of inputs by simple adjusting the |