Skip to main content

Travis H Hutchings Resume 2021 General

J Travis H Hutchings | Senior Systems Engineer, Lead | name@yourdomain.com

Travis H Hutchings

Senior Systems Engineer

Profile

Progressively evolve cross-platform ideas in Information System Engineering to Monitoring and Automated Solutions.

Skills

Information System Engineering

A long history in successful Information System Engineering projects.

Virtualization Engineering

From building virtualized systems and migrating, designing and manged virtualized solutions.

Enterprise Monitoring Engineering

Proven ability to lead and manage a wide variety of design and development projects in team and independent situations. Provide implementation and design of monitoring technologies.

Technical Enterprise Monitoring

  • SiteScope
  • Dynatrace
  • SolarWinds
  • WhatsUp Gold
  • Splunk Products
  • CA Spectrum
  • NXLog
  • Graylog
  • Qradar
  • Balabit
  • Extrahop
  • OmniPeak
  • CatchPoint
  • CVS / Subversion

Networking and Firewall Engineering Solutions

  • Cisco Routers and Switches
  • Cisco ASA
  • Cisco LAN Works
  • Cisco Wireless
  • CheckPoint
  • Palo Alto Networking
  • Aruba Wireless

System Engineering Solutions

  • Windows
  • IIS
  • SCCM
  • SCOM
  • Active Directory
  • Exchange
  • Office 365
  • ADFS
  • Virtualization Engineering
  • VMware
  • KVM
  • XEN
  • Yahoo Cloud
  • Amazon AWS
  • Oracle Solaris Zones, Oracle RAC
  • IBM LPAR/WPAR
  • Linux/OpenSource/Automation
  • Apache, Tomcat, JavaServer
  • Websphere/Weblogic
  • Puppet, Ansible, CHEF, CFEngine, AutoSys
  • Mongo, Oracle SQL, Postgres,MySQL
  • LDAP, Centrify

Experience

Optiv-Disney

Senior Monitoring Systems Engineer

May 2019 - July 2021

SIEM Monitoring Architect/Engineer Logsource management, remediation, and design. SIEM reporting and System reporting, alert and reporting implmentation and process remediation. Log Source strategy, implementation and remediation.

Mosaic451 - Portland General Electric

Senior Monitoring Systems Engineer

August 2018 - January 2019

Qradar had performance issues and lack of log sources reporting in on WinCollect agents. System Log forwarding specialist expertise in Syslog, SyslogNG, SNMP, and NetFlow technologies. Review log forwarding process and make corrections as needed. Demonstrated and utilized monitoring technologies to determine what the core issues were. Implemented

Low Latency Recruiting - Warn Automotive

Lead System and Monitoring Engineer

January 2018 - July 2018

Demonstrated advanced knowledge and experience, serving as a systems administrator for Windows servers, VMWare ESX, Active Directory, Cisco switches and routers, Palo Alto firewalls, ShoreTel phone system, and Commvault backups.

ArcheTypes SC - BostonIT

Senior Systems Consultant

January 2016 - June 2017

Provided solutions for several key solutions with monitoring project ts as well as Splunk, ELK, Centrify projects within the consulting practice for a services and solution provider for IBM. KVM IBM based solution for their cloud technologies group. SolarWinds and ExtraHop solutions for evaluation and testing as directed by IBM clients for multiple customers..

Education

Palomar College - San Macros , California

Undergraduate Studies Computer Science and Information Systems —


Ramona Highschool- Ramona , California

High School Degree and Graduate —

Travis H Hutchings — thutch901@gmail.com — (971) - 226-6732

LinkedIn Travis Hutchings

BlogSpot Link Travis Hutchings Project and Script Examples

Comments

Popular posts from this blog

Qradar Scripts and Results Part 1. Disk Space and Qradar Persistent Queue

______________________________________________________________________________________________________ Script examples written by Travis Hutchings thutch901@gmail.com 971.226.6732 _______________________________________________________ Disk Space and Alerting Results specific to Qradar servers and environments. General Linux script concepts can also be applied to system administration concepts. This disk space script utilizes a few Qradar support functions. 1. Disk Space Alerting and results in /store volume List disk space for all Qradar servers: df- h /opt/qradar/support/all_servers.sh -a '15%' 'df -h /store' >> $listFile List the top of the directory to see file dates and times to determine if Persistent Queue is processing: /opt/qradar/support/all_servers.sh -a '15%' 'ls -l /store/persistent_queue/ecs-ec-ingress.ecs-ec-ingress | head -6' >> $listFile Bottom of the Persistent Queue and seeing if results are processing: /opt/qradar/suppor...

Qradar- PSQL Report Development for EPS by log source result

EPS by logsource with QRADAR PSQL query tests and research By Travis Hutchings thutch901@gmail.com 971.226.6732  psql -A -F"," -U qradar -c "select sensordevice.id, sensordevice.hostname, sensordevice.devicename, sensordevicetype.devicetypename, to_timestamp(sensordevice.timestamp_last_seen/1000) from sensordevice, sensordevicetype where sensordevice.devicetypeid = sensordevicetype.id and sensordevice.deviceenabled = 't' and sensordevice.devicename not ilike '%wincollect%' and to_timestamp(sensordevice.timestamp_last_seen/1000) > now() - interval '30 days' order by to_timestamp(timestamp_last_seen/1000) desc" psql -A -F"," -U qradar -c "select sensordevice.id, sensordevice.hostname, sensordevice.devicename, sensordevicetype.devicetypename, to_timestamp(sensordevice.timestamp_last_seen/1000), to_timestamp(round(sensordevice.creationdate/1000) from sensordevice, sensordevicetype where sensordevice.devicetypeid = sensordevicety...

Splunk Log Forwarding Configuration Steps

Splunk Log Forwarding Configuration Steps: There are multiple ways to send linux logs to splunk like using splunk linux app, splunk universal forwarder or syslog. Best and performance reliable way is to install splunk universal forwarder on linux machines for which you wish to forward data.Splunk universal forwarder will act as agent for log collection.It will collect logs and will forward to indexer.We can  also use syslog for log collection and then install splunk forwarder on it and then forward data from syslog server to splunk indexer.Below we have provided steps for most reliable method to add linux logs to splunk For syslog installation and configuration follow steps give at below link: Refer below steps to add linux logs to splunk Step 1: On Splunk server (receiver) Download/install Splunk TA for Unix and Linux to the Splunk server (receiver) and enabled it by going to Manager|Apps|Enable Step 2: On host you want to collect data from (sender) Download and install the Splu...