This file contains hidden or 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
.show-tokens { | |
background: white; | |
border-top: 1px solid #ccc; | |
} | |
.show-tokens h3 { | |
padding-left: 20px; | |
} | |
.show-tokens .token-name, .show-tokens .token-value { | |
font-family: monospace; | |
} |
This file contains hidden or 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
$("#my_dropdown .select2-container").css("min-width", "600px") |
This file contains hidden or 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
indexer, search peer | |
master node, cluster master | |
saved search, report | |
scheduled search, alert | |
forwarder management, deployment server | |
add-on, TA | |
dashboard, view | |
high performance analytics store (this is too wordy), accelerated data model | |
heavy forwarder (I don't like this term), full Splunk instance | |
owner, private |
This file contains hidden or 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
// ==UserScript== | |
// @name openair unsuck | |
// @version 0.1 | |
// @author [email protected] (revised by [email protected]) | |
// @description makes openair interaction better, by filling out "defaults". Tampermonkey chrome plugin script. | |
// @namespace https://www.openair.com | |
// @include https://www.openair.com/envelope.pl*action=edit_ticket* | |
This file contains hidden or 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
/* | |
!.gitignore | |
!deployment-apps/ | |
!master-apps/ | |
!apps/ | |
apps/*/* | |
!apps/*/local/ |
This file contains hidden or 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
// Create or Update | |
var record = { | |
"name": "bob", | |
"age": 23, | |
"sex": "male" | |
}; | |
var key = "560c3dacb3d2022e1f7be951"; | |
service.request( |
This file contains hidden or 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
[settings] | |
cacheEntriesLimit = 0 | |
minify_js = False | |
minify_css = False | |
ui_inactivity_timeout = 0 |
This file contains hidden or 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
#link_switcher_row .dashboard-panel { | |
background-color: #eee; | |
} | |
#link_switcher { | |
min-width: 100%; | |
} | |
#link_switcher .splunk-linklist { | |
padding-bottom: 0px; |
This file contains hidden or 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
require([ | |
'jquery', | |
'underscore', | |
'splunkjs/mvc', | |
'splunkjs/mvc/searchmanager', | |
'splunkjs/mvc/singleview', | |
'views/shared/results_table/renderers/BaseCellRenderer', | |
'splunkjs/mvc/simplexml/ready!' | |
], function( | |
$, |
This file contains hidden or 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
// WORK IN PROGRESS | |
// Issues: | |
// - Don't know how to position the popover | |
// - <a> inside the popover doesn't work | |
require([ | |
'jquery', | |
'underscore', | |
'splunkjs/mvc', | |
'views/shared/results_table/renderers/BaseCellRenderer', |