- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

iiooiiooiioo
Explorer
04-07-2020
10:36 AM
I have this splunk search:
host=app-dev-001 terminating | convert timeformat="%Y-%m-%d" ctime(_time) AS date | sort term_user | rename term_user AS 'Terminated User'
When I run it I get this error:
Error in 'rename' command: Usage: rename [old_name AS/TO/-> new_name]+.
This search works:
host=app-dev-001 terminating | convert timeformat="%Y-%m-%d" ctime(_time) AS date | sort term_user | table term_user
I get results that look like:
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
04-07-2020
11:13 AM
Try rename term_user AS "Terminated User"
. Splunk has different uses for single and double quotes.
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
04-07-2020
11:13 AM
Try rename term_user AS "Terminated User"
. Splunk has different uses for single and double quotes.
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
