Getting Hitachi Performance Data into Splunk

I’ve been Splunk’ing A LOT recently and one of the most recent accomplishments was getting Hitachi Performance Data out of a USP (Universal Storage Platform) and in to Splunk. So I thought I’d write quickly on how it can be done.

Hitachi has a tool called “Export Tool” which basically connects to the SVP of your Hitachi USP as a given user, collects all of the data you tell it to (Port stats, LUN/LDEV stats, etc…) and output’s it into numerous CSV files. All of the options (SVP IP, user/pass, data to collect, etc…) can be configured within the Export Tool command file. This tool comes on the software package with your USP or if your microcode has been upgraded then you’ll need to obtain the correct copy from your Hitachi CE.

Resetting a JIRA Project’s Ticket Counter

Here are a few simple steps to resetting the ticket counter in a JIRA project.

1. Stop the JIRA instance from running by executing the shutdown.sh script found in $JIRA_HOME/bin

2. Log into the local mysql instance that is running and change the working database to ‘jira’

3. Execute the command:

select * from project where pkey=’PROJECTKEY’

…For example if your Project Key is ‘HELPDESK’ then you would execute the command:

select * from project where pkey=’HELPDESK’

…The output of this command gives you the the project ID as it’s stored in the database.

4. Now using the project ID we obtained in the previous step, execute the following command: