Splunk Search

How to get employee name in chart?

kumasaua
Explorer

Dear All,

I have one employee master csv that have employee name, departmentname, projectname.
If the employee is the group head then in project , it mention Group head, otherwise it mentions project name
like:

Name      DeptName       ProjectName
saurabh  softwaredept  skyject
gaurav     softwaredept  GroupHead
manish    rnd                    hrmanagement
rekesh     rnd                    GroupHead

I want to show data like Deptname , Name of the grophead of this dept, No of employees.

Result like:

softwaredept  gaurav   2
rnd                    rakesh   2

Requesting you to please provide query for this requirement.

0 Karma
1 Solution

niketn
Legend

@kumasaua, please try the following using eventstats

 <yourCurrentSearch>
| eventstats count by DeptName
| search ProjectName=GroupHead
| table DeptName count

Following is a run anywhere search based on the sample data provided:

| makeresults
| eval data="saurabh softwaredept skyject;gaurav softwaredept GroupHead;manish rnd hrmanagement;rekesh rnd GroupHead"
| makemv data delim=";"
| mvexpand data
| makemv data delim=" "
| eval Name=mvindex(data,0),DeptName=mvindex(data,1),ProjectName=mvindex(data,2)
| table Name DeptName ProjectName
| eventstats count by DeptName
| search ProjectName=GroupHead
| table DeptName count
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

0 Karma

harishalipaka
Motivator

@niketnilay answer will work or you can try with small change in count by like .

| eventstats count by ProjectName| search ProjectName=GroupHead
 | table DeptName Name count
Thanks
Harish
0 Karma

kumasaua
Explorer

Thank you.. it works..

0 Karma

niketn
Legend

@kumasaua, please try the following using eventstats

 <yourCurrentSearch>
| eventstats count by DeptName
| search ProjectName=GroupHead
| table DeptName count

Following is a run anywhere search based on the sample data provided:

| makeresults
| eval data="saurabh softwaredept skyject;gaurav softwaredept GroupHead;manish rnd hrmanagement;rekesh rnd GroupHead"
| makemv data delim=";"
| mvexpand data
| makemv data delim=" "
| eval Name=mvindex(data,0),DeptName=mvindex(data,1),ProjectName=mvindex(data,2)
| table Name DeptName ProjectName
| eventstats count by DeptName
| search ProjectName=GroupHead
| table DeptName count
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

kumasaua
Explorer

Dear Niketnilay,

When i use first query then it show result like
Departname count but i want to show Group name also like
Departname Groupheadname count.

Can you help me for this.

0 Karma

kumasaua
Explorer

Thank you , now it works.

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...