All Posts

Find Answers
Ask questions. Get answers. Find technical product solutions from passionate members of the Splunk community.

All Posts

There is no "search for specific values in any field" - where you have placed the token, it effectively searches the _raw field, and there doesn't appear to be anything wrong here. You have already ... See more...
There is no "search for specific values in any field" - where you have placed the token, it effectively searches the _raw field, and there doesn't appear to be anything wrong here. You have already got a "token-related condition". Please provide examples where this is not working for you, particularly with events which should have been found for a particular token value, or events which were found which shouldn't have been.
Hey Experts, I am encountering an issue  with using filter tokens in specific row on my dashboard. I have two filters named ABC and DEF, tokens represented for ABC is $abc$ and DEF is $def$.  I... See more...
Hey Experts, I am encountering an issue  with using filter tokens in specific row on my dashboard. I have two filters named ABC and DEF, tokens represented for ABC is $abc$ and DEF is $def$.  I want to pass these tokens only to one specific row, while for others, I want to reject them.  For the rows where i need to pass the tokens, I've used the following syntax:  <row depends="$abc$ $def$"></row> For the row where i don't want to use the token, I've used the following syntax;  <row rejects="$abc$ $def$"></row>. However when i use the rejects condition, the rows are hidden. I want these rows to still be visible. Any help or example queries would be greatly appreciated. Thank You!
You are reading his request backwards.  That git project is for SENDING TO OpenCTI.  He (and I) need to RECEIVE FROM OpenCTI.  I cannot find anything that does this.
Hi @phanikumarcs , you have to declare the field that you want to use for the value in the text input, otherwise it willsearch in the raw text, and e.g. the host field usually isn't in the raw event... See more...
Hi @phanikumarcs , you have to declare the field that you want to use for the value in the text input, otherwise it willsearch in the raw text, and e.g. the host field usually isn't in the raw event, but in metadata. but this add to your dashboard an additional issue: if the eventId field isn't present in all the events, adding event_Id=* will exclude from the results all the events without this field, so beware to how you use this input. Ciao. Giuseppe
@gcusello great, understood. Suppose when i want to search the Server field value (goo1) in the EventID Textbox, it will display the results of goo1, similar to other fields as well (Message, Seve... See more...
@gcusello great, understood. Suppose when i want to search the Server field value (goo1) in the EventID Textbox, it will display the results of goo1, similar to other fields as well (Message, Severity)
This is the sample stats command for my log.  index=company app=abc | stats count by component I don't have field for volume. We have to calculate volume from the stats count. 
@ITWhisperer No, its not about the search  | where _time=$eventid$ OR EventID=$eventid$ OR Server=$eventid$ OR Message=$eventid$ OR Severity=$eventid$ Make it as simple, when you search for... See more...
@ITWhisperer No, its not about the search  | where _time=$eventid$ OR EventID=$eventid$ OR Server=$eventid$ OR Message=$eventid$ OR Severity=$eventid$ Make it as simple, when you search for specific values in any field (for example, EventID, Server, Message, or Severity) in the search input "Textbox", the system will display relevant data related to those fields. This allows for easy and straightforward searching based on the criteria. Reference Image: In the code I provided earlier, what changes are necessary for token-related conditions?
Hi @phanikumarcs , at first, if you want o use the text input only on eventid input, you should modify your search in : <row> <panel> <title>EventID-Severity Matrix</title> <input ty... See more...
Hi @phanikumarcs , at first, if you want o use the text input only on eventid input, you should modify your search in : <row> <panel> <title>EventID-Severity Matrix</title> <input type="text" token="eventid" searchWhenChanged="true"> <label>Search EventID</label> <prefix>EventID="</prefix> <suffix>"</suffix> </input> <table> <search> <query> index IN ("foo1", "foo2", "foo3") host IN ("goo1", "goo2", "goo3", "goo4") EventID IN ("1", "1021", "1069") Name=* $eventid$ | fields EventID Name host | eval Severity=case( EventID="1", "Information", EventID="1021", "Warning", EventID="1069", "Critical",) | rename Name as Message, host as Server | table _time, EventID, Server, Message, Severity</query> <earliest>$time.earliest$</earliest> <latest>$time.latest$</latest> </search> <option name="drilldown">none</option> <option name="refresh.display">progressbar</option> </table> </panel> </row> otherwise the token will search on the raw text instead on the EventID field. Then is eventid a field present in all the events or only in part of them? if you use * in the text box, you exclude from the results the events without the EventID field. Ciao. Giuseppe
At first glance, there doesn't appear to be anything wrong with your search as you have shown it. Please can you give some examples of events which are not found and the search string used which fail... See more...
At first glance, there doesn't appear to be anything wrong with your search as you have shown it. Please can you give some examples of events which are not found and the search string used which failed to find the events?
Since you didn't provide any sample events I had to guess - since you still haven't provided any sample events I can only guess whether this is right or not. Since it apparently isn't giving what you... See more...
Since you didn't provide any sample events I had to guess - since you still haven't provided any sample events I can only guess whether this is right or not. Since it apparently isn't giving what you want, I would guess it isn't right. In your search, what is count? Is it a field in your events?
@gcusello Here is the code <row> <panel> <title>EventID-Severity Matrix</title> <input type="text" token="eventid" searchWhenChanged="true"> <label>Search EventID</label> </input> <table> <... See more...
@gcusello Here is the code <row> <panel> <title>EventID-Severity Matrix</title> <input type="text" token="eventid" searchWhenChanged="true"> <label>Search EventID</label> </input> <table> <search> <query>index IN ("foo1", "foo2", "foo3") host IN ("goo1", "goo2", "goo3", "goo4") EventID IN ("1", "1021", "1069") Name=* $eventid$ |fields EventID Name host | eval Severity=case( EventID="1", "Information", EventID="1021", "Warning", EventID="1069", "Critical",) | rename Name as Message, host as Server | table _time, EventID, Server, Message, Severity</query> <earliest>$time.earliest$</earliest> <latest>$time.latest$</latest> </search> <option name="drilldown">none</option> <option name="refresh.display">progressbar</option> </table> </panel> </row>
  What is the field used as "volume" ? Is it similar to "count" in stats to get volume ?  I tried this but not working and tried a portion of your query  | bin _time span=1h | stats sum(count) as... See more...
  What is the field used as "volume" ? Is it similar to "count" in stats to get volume ?  I tried this but not working and tried a portion of your query  | bin _time span=1h | stats sum(count) as volume by _time component Its not reporting anything under volume
| where _time=$eventid$ OR EventID=$eventid$ OR Server=$eventid$ OR Message=$eventid$ OR Severity=$eventid$
Hi @phanikumarcs, the input code you share isn't complete, could you share the complete form code? with special attention to the panel's search that uses the text input token. Ciao. Giuseppe
| bin _time span=1h | stats sum(volume) as volume by _time component | bin _time span=1mon | chart max(volume) as volume by component _time | addtotals | eval Average=Total/3
Hi All,  @ITWhisperer @renjith_nair @woodcock  From the above "Textbox" input and panel for (_time, EventID, Server, Message, Severity) "Textbox" Settings:             <input type="text... See more...
Hi All,  @ITWhisperer @renjith_nair @woodcock  From the above "Textbox" input and panel for (_time, EventID, Server, Message, Severity) "Textbox" Settings:             <input type="text" token="eventid" searchWhenChanged="true">             <label>Search EventID</label>             </input> When I search in the "Textbox" using an "EventID", it only displays results based on the EventID values. However, when I search using other parameters such as "_time", "Server", "Message", or "Severity", it does not retrieve any results. Can anyone assist me with creating a conditional search for any of the following fields in a above  table: _time, EventID, Server, Message, or Severity? When I search for any value in these fields, I want the corresponding records to be displayed. Either in UI or Source need the settings.  
So, why is Lat/Long included as a data point? Even the tutorial I'm following has the same result, but surely there is a way to not show these since its sort of meaningless? (And don't call me Shirle... See more...
So, why is Lat/Long included as a data point? Even the tutorial I'm following has the same result, but surely there is a way to not show these since its sort of meaningless? (And don't call me Shirley!)  
Hi Team, I want to calculate peak hourly volume of each month for each service. Each service can have different peak times and first need to calculate peak hour of each component for the month. Like... See more...
Hi Team, I want to calculate peak hourly volume of each month for each service. Each service can have different peak times and first need to calculate peak hour of each component for the month. Likewise calculate for last 3 months. Then calculate the average of 3 months peak hourly volume. Below table is the sample requirement.   January-24 February-24 March-24 Avg Volume service1 20 50 20 30 service2 4 3 8 5 service3 20 30 40 30 service4 30000 30000 9000 23000 service5 200 300 400 300
Good lord. that was too easy. Appreciate the help. I keep forgetting I'm in a 'Nix world now. Thank goodness PowerShell doesn't mind capitalization rule breakage.
Hi Team, Please help me for the below information/question. Thanks