I have a generic catchall for syslog traffic that is breaking when i try and use an acceptFrom for a subnet. --- Generic Catchall ---- [udp://514] connection_host = ip index = syslog sourcety...
See more...
I have a generic catchall for syslog traffic that is breaking when i try and use an acceptFrom for a subnet. --- Generic Catchall ---- [udp://514] connection_host = ip index = syslog sourcetype = syslog The catch all functions correctly when using a single specific IP going to specified index : [udp://192.168.1.1:514] host = srv-lb-2 connection_host = none index = a10 sourcetype = syslog But if I try and add a new UDP input to capture a full /24 to shove it in a separate index, that overrides/disables the generic input from the first one. I do see messages in the checkpoint index however the [udp://514] from the first block stops. [udp://514] acceptFrom = 192.168.2.0/24 connection_host = ip index = checkpoint sourcetype = syslog Anyone know how to do this in a way that works please?? Thanks!
The "All" option would search beyond the available options, I have my groups(options) but I think would be helpful if the dashboard could search more options.
I need to change the value of the "Trigger" parameter from "Once" to "For each result" for multiple alerts. But I can't find the parameter where its stored to change it via API.
I noticed the tableView.table.render() Doesn't do anything if the table is already rendered. That means if it renders before you apply the cellrenderer well tough luck. A hacky fix that works f...
See more...
I noticed the tableView.table.render() Doesn't do anything if the table is already rendered. That means if it renders before you apply the cellrenderer well tough luck. A hacky fix that works for me is adding a eval to the search that created the table eval Update=$update_table$ And then just instead of the tableView.table.render() function invoking this in the JS mvc.Components.get('submitted').set('update_table', '1'); to force it to update.
Assuming some of your events have PROPOSALNUMBER and some events have PROPOSAL_NUMBER, you could try this | eval PROPOSAL_NUMBER=coalesce(PROPOSAL_NUMBER, PROPOSALNUMBER)
| dedup PROPOSAL_NUMBER
If should produce the following if the xrq_h_x-corapi-target-id e.g. contains IIDP099999 and this value is not found in the lookup. How do I get the contents of the variable and not the name of the ...
See more...
If should produce the following if the xrq_h_x-corapi-target-id e.g. contains IIDP099999 and this value is not found in the lookup. How do I get the contents of the variable and not the name of the variable itself? ProviderId ProviderName IIDP099999 IIDP099999 IIDP06300 My Bank AG
I have the following Query: index=obh_prod sourcetype=obh:edge:api proxy!="ow*" | lookup blink_six_providers ProviderId as pxrq_h_x-corapi-target-id OUTPUT ProviderId ProviderName | fillnull value...
See more...
I have the following Query: index=obh_prod sourcetype=obh:edge:api proxy!="ow*" | lookup blink_six_providers ProviderId as pxrq_h_x-corapi-target-id OUTPUT ProviderId ProviderName | fillnull value=target_id ProviderId ProviderName | dedup ProviderName ProviderId | table ProviderId ProviderName If no values are found ProviderId, ProviderName should both get the value of pxrq_h_x-corapi-target-id. If actually now produces: ProviderId ProviderName pxrq_h_x-corapi-target-id pxrq_h_x-corapi-target-id IIDP06300 Valiant Bank AG IIDP00761 Aargauische Kantonalbank If should produce the following if the xrq_h_x-corapi-target-id e.g. contains IIDP099999 and this value is not found in the lookup. How do I get the contents of the variable and not the name of the variable itself? ProviderId ProviderName IIDP099999 IIDP099999 IIDP06300 Valiant Bank AG IIDP00761 Aargauische Kantonalbank
I have a dashboard that show/hide panel whenever option/s in checkbox is ticked, which is already working. My problem is whenever I select the option as default value, the panel is still hidden whene...
See more...
I have a dashboard that show/hide panel whenever option/s in checkbox is ticked, which is already working. My problem is whenever I select the option as default value, the panel is still hidden whenever I open the dashboard. Any idea on this? or am I missing something Heres some part of my xml. <input type="checkbox" token="check"> <label>Category Type</label> <choice value="db_gc_wait">DB GC Waits</choice> <choice value="concurrent_manager">Concurrent Managers</choice> <choice value="blocking_session">Blocking Session</choice> <choice value="longrunning_job">Long Running Jobs</choice> <choice value="crm_top_request">CRM Top Requests</choice> <choice value="workflow_mailer">Workflow Mailer</choice> <change> <condition match="$check$ = "db_gc_wait""> <set token="show_db_gc_wait">1</set> <unset token="show_concurrent_manager"></unset> <unset token="show_blocking_session"></unset> <unset token="show_longrunning_job"></unset> <unset token="show_crm_top_request"></unset> <unset token="show_workflow_mailer"></unset> </condition> ... <condition match="$check$ = "db_gc_wait concurrent_manager blocking_session longrunning_job crm_top_request workflow_mailer""> <set token="show_db_gc_wait">1</set> <set token="show_concurrent_manager">1</set> <set token="show_blocking_session">1</set> <set token="show_longrunning_job">1</set> <set token="show_crm_top_request">1</set> <set token="show_workflow_mailer">1</set> </condition> <!-- Unset all tokens --> <condition> <unset token="show_db_gc_wait"></unset> <unset token="show_concurrent_manager"></unset> <unset token="show_blocking_session"></unset> <unset token="show_longrunning_job"></unset> <unset token="show_crm_top_request"></unset> <unset token="show_workflow_mailer"></unset> </condition> </change> ... <row> <panel depends="$show_db_gc_wait$"> <table> <title>Database GC Waits</title> <search> <query> MY QUERY</query> <earliest>$time_tok.earliest$</earliest> <latest>$time_tok.latest$</latest> </search> <option name="drilldown">cell</option> </table> </panel> </row>
100% -- this is causing all kinds of FUBAR in our organization. I get a half-dozen sales oriented announcements from Splunk -- but they couldn't be bothered to warn us about something that breaks all...
See more...
100% -- this is causing all kinds of FUBAR in our organization. I get a half-dozen sales oriented announcements from Splunk -- but they couldn't be bothered to warn us about something that breaks all the forwarders?
Hi @ViniciusMariano, I don't think that's possible without JS, also because it isn't useful to have the All choice whwn you have the choice of all checkboxes. Ciao. Giuseppe
Hello folks, I have a question about multiple checkbox, I'm using them to fill a "IN" command in my search and I have an "All option" and I was thinking if is it possible when I check this "All opt...
See more...
Hello folks, I have a question about multiple checkbox, I'm using them to fill a "IN" command in my search and I have an "All option" and I was thinking if is it possible when I check this "All option" the others will be unchecked like in this example below: 1: 2: and if possible only using XML (without JavaScript).
Use btool splunk btool --debug props list splunk-logs It will display all of the props for the sourcetype along with the file name in which the prop is defined. Remember, never change $SPLUN...
See more...
Use btool splunk btool --debug props list splunk-logs It will display all of the props for the sourcetype along with the file name in which the prop is defined. Remember, never change $SPLUNK_HOME/etc/system/default/props.conf and change $SPLUNK_HOME/etc/apps/*/default/props.conf only if it's your app. Otherwise, put the change in local/props.conf.
I have a windows server and it's OS got crashed but i have the splunk database in the another drive which is fine now the steps I have performed are in the new splunk installation are: 1. Copied th...
See more...
I have a windows server and it's OS got crashed but i have the splunk database in the another drive which is fine now the steps I have performed are in the new splunk installation are: 1. Copied the configurations of the previous splunk application from the backup i have in to the new application. 2. Changed the database location and created the database structure in another drive apart from C: drive. 3. Now from the earlier database i copied the indexed data in to the new data base where i have overwritten the already present indexes which are created as per the indexer configuration. 4. Now when i restart the splunk i am getting a "DIRTY_DATABASE File (.dirty_database)" file generated. 5. But i can see the data in the indexes when i ran a search So, the question is whether the procedure i followed is correct or is there any other way to do this Thanks, Your well wisher
I'm struggling to find documents on AppDynamics Saas for ingestion capability in an agentless approach. Basically, I know I have to find a way of monitoring SAP CPI (in the cloud) and no agent ca...
See more...
I'm struggling to find documents on AppDynamics Saas for ingestion capability in an agentless approach. Basically, I know I have to find a way of monitoring SAP CPI (in the cloud) and no agent can be installed there. I need a way of calling data from an external source and then gathering it in AppD or directly shipping the data to AppD.
Does a feature like this exist and where are they documented? Best regards