Splunk Search

Can I display the variable concatenated in a table?

cgaete
Explorer

Hi, everyone

When I create a field concatenated with eval, example: |eval date = day. "/" .month." /". year. |
Can I display the variable date in a table?.

Note: I use Splunk 6.1.

Thanks

0 Karma
1 Solution

horsefez
Motivator

Hi cgaete,

if the fields
- day
- month
- year
are valid fields in your data you can do something like this.

| eval date = day + "/" + month + "/" + year | table date

View solution in original post

woodcock
Esteemed Legend

I don't understand; your question is so elemental that it should have taken you 10 times longer to post this question than it could have taken you to actually try it and see that it works. If you really do have a problem, then post samples events and your search.

0 Karma

horsefez
Motivator

Hi cgaete,

if the fields
- day
- month
- year
are valid fields in your data you can do something like this.

| eval date = day + "/" + month + "/" + year | table date

woodcock
Esteemed Legend

I would never use + for concatenation operator because it also the addition operator and the latter has higher precedence making an invisible land mine for somebody (maybe even yourself) later on. I think that the original problem was a lack of spaces around each . operator.

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...