Grid CompuAng AnalyAcs with Splunk Finnbar Cunningham

Size: px
Start display at page:

Download "Grid CompuAng AnalyAcs with Splunk Finnbar Cunningham"

Transcription

1 Copyright 2014 Splunk Inc. Grid CompuAng AnalyAcs with Splunk Finnbar Cunningham Head of Grid CompuAng OperaAons & Support Credit Suisse

2 Disclaimer During the course of this presentaaon, we may make forward- looking statements regarding future events or the expected performance of the company. We cauaon you that such statements reflect our current expectaaons and esamates based on factors currently known to us and that actual events or results could differ materially. For important factors that may cause actual results to differ from those contained in our forward- looking statements, please review our filings with the SEC. The forward- looking statements made in the this presentaaon are being made as of the Ame and date of its live presentaaon. If reviewed arer its live presentaaon, this presentaaon may not contain current or accurate informaaon. We do not assume any obligaaon to update any forward- looking statements we may make. In addiaon, any informaaon about our roadmap outlines our general product direcaon and is subject to change at any Ame without noace. It is for informaaonal purposes only, and shall not be incorporated into any contract or other commitment. Splunk undertakes no obligaaon either to develop the features or funcaonality described or to include any such feature or funcaonality in a future release. 2

3 SeTng the Context

4 ! Integrated bank: Private Banking & Wealth Management Investment banking! Founded in 1856! OperaAons in over 50 countries! 530 Offices and branches! 45,100 Employees! Client focused business approach

5 A Bit About Me! Long term interest in Distributed CompuAng! Compute Science Degree! 9 Years at Credit Suisse working on evolving Grid Plaborm! Heavy SQL User pre- Splunk! Discovered Splunk in 2011! Splunk evangelist ever since! 5

6 Agenda! IntroducAon to Grid Credit Suisse! User Dashboards: Search scripts to interact with the Grid ApplicaAon Usage Stats InteracAon between ApplicaAons Grid- wide CPU UAlisaAon CPU Usage by Grid App ApplicaAon Efficiency Tuning (SAtching Grid & OS Metrics together) Cost Transparency! Grid Team Dashboards System Health Checks! Splunk as Component of SoRware Deployment System 6

7 Compute Grid Mock- up Compute The Grid Grid 7

8 Grid CompuAng at Credit Suisse! Purpose: Performs complex risk & pricing calculaaons for financial products! How? Work divided into tasks which are executed on mulaple hosts in parallel! Scale: >100 Years of CPU Ame used daily ~1 Billion tasks processed daily 1000s Of dedicated servers 1000s Of workstaaons join grid when idle 100s Of applicaaons sharing the grid ApplicaAons guaranteed certain capacity but can borrow more if it s available

9 My Job: Head of Grid OperaAons & Support Responsible for:! System health! Incident resoluaon & problem invesagaaon! OperaAons: sorware deployment etc.! Efficiency & capacity management! Driving system evoluaon

10 Grid Glossary Grid! CollecAon of hosts working together to process work! Typically 1 ProducAon Grid per region Resource Group! Grouping of hosts e.g. Servers, WorkstaAons etc Resource Plan! Defines % of Resource Group guaranteed to each applicaaon Slot! Subdivision of a compute host e.g. 1 slot per CPU / GB of RAM Alloca:on! Number of slots currently allocated to an applicaaon Consumer! Grouping of grid applicaaons, generally by business line

11 Our Splunk Topology

12 Splunk Topology Searching ReporAng AlerAng Dashboards Global Search Head 12 Regional Indexers 1000s of Forwarders

13 Data Sources Logs from: Grid Daemons Grid ApplicaAons OS Performance Counters: CPU, Memory, Network AcAvity etc. Scripted Inputs: Grid API calls DB Queries 13

14 User Dashboards

15 User Dashboards for Interac:ng with Grid script soamclient /grid:ea_dev /ViewSessions /AppName:MC_bladefarm_dev_tuscan /SessionState:Open script soamclient /grid:ea_dev /AppName:MC_bladefarm_dev_griffith /SessionID: /Terminate

16 sourcetype="grid- Symphony:consumer_demand" CLUSTER_NAME="$cluster$" CONSUMER_NAME="$consumer$" dedup _:me, CONSUMER_NAME join type=outer CONSUMER_NAME [ search earliest=- 24hr latest=now sourcetype=grid- Symphony:egoclient_ViewResourcePlan CLUSTER_NAME="$cluster$" CONSUMER_NAME="$consumer$" eval Guarantee=IF(SHARE_LIMIT<PLANNED_OWN,SHARE_LIMIT,PLANNED_OWN) stats sum(guarantee) as Guarantee by CONSUMER_NAME ] :mechart span=5min sum(used) as Alloca:on, sum(max_requested) as Demand, sum(guarantee) as Guarantee! Grid Scheduler metrics, retrieved via frequent API call (script) executed by Splunk Forwarder! Subsearch to retrieve Guarantee from resource plan data

17 sourcetype="grid- Symphony:consumer_resource_allocaAon" CLUSTER_NAME="$cluster$ RESOURCE_GROUP="$resourcegroup$" CONSUMER_NAME="$consumer$" Amechart span=5m max(allocated) as AllocaAon by CONSUMER_NAME! Grid Scheduler metrics, retrieved via frequent API call (script) executed by Splunk Forwarder

18 sourcetype="wmi:cputime" lookup grid_inventory host OUTPUT Grid ResourceGroup WHERE Grid="LON.PROD" AND ResourceGroup="ComputeHostsCSW5" timechart avg(percentprocessortime)! OS metrics, retrieved via Splunk Forwarder WMI input! 100s of hosts, ~100,000 events runs in <10s

19 sourcetype=grid- ProcMetrics CPUUAl<=100 APP_NAME=$appname$ eval host=upper(host) lookup grid_inventory host OUTPUT Grid Resource- Group as ResourceGroup WHERE Grid="$grid$" AND ResourceGroup="$resourcegroup$" bucket _Ame span=5min eval NumHosts=[ inputlookup grid_inventory rename Resource- Group as ResourceGroup WHERE Grid="$grid$" AND ResourceGroup="$resourcegroup$" stats count as query ] stats sum(eval(cpuual/numhosts)) as CPUUAl by _Ame,host,APP_NAME Amechart limit=12 span=5min sum(cpuual) as CPUUAl by APP_NAME! Process metrics, retrieved via Splunk Forwarder scripted input running custom exe.! 100s Of hosts, 10s of apps, ~2,000,000 events, runs in ~30s.! Subsearch to get number of hosts for Resource Group, used as denominator.

20 sourcetype=grid- ProcMetrics CPUUAl<=100 APP_NAME=*$appname$ eval host=upper(host) lookup grid_inventory host OUTPUT Grid Resource- Group as ResourceGroup WHERE Grid="$grid$" AND ResourceGroup="$resourcegroup$" eval Grid_ResourceGroup=Grid."_".ResourceGroup bucket _Ame span=5min eval NumHosts=[ inputlookup grid_inventory rename Resource- Group as ResourceGroup WHERE Grid="$grid$" AND ResourceGroup="$resourcegroup$" stats count as query ] stats sum(eval(cpuual/numhosts)) as CPUUAl by _Ame,Grid_ResourceGroup join _Ame, Grid_ResourceGroup [ search sourcetype="grid- Symphony:egoclient_ViewAllocaAons" [ inputlookup cluster2grid WHERE GridName="$grid$" return CLUSTER_NAME ] RESOURCE_GROUP="$resourcegroup$" APP_NAME="*$appname$" lookup cluster2grid CLUSTER_NAME OUTPUT GridName as Grid eval Grid_ResourceGroup=Grid."_".RESOURCE_GROUP eval AllAlloc=(unassigned + USED) join type=outer Grid_ResourceGroup [ search earliest=- 24hr latest=now sourcetype=grid- Symphony:egoclient_ViewResourcePlan RESOURCE_GROUP="$resourcegroup$" CONSUMER_NAME="/" eval numslots=planned_own*- 1 lookup AdminGridName2InvGridName AdminGridName as CLUSTER_ALIAS OUTPUT InvGridName eval Grid_ResourceGroup=InvGridName."_".RESOURCE_GROUP stats first(numslots) as TotalSlots by Grid_ResourceGroup ] eval Allocated=(AllAlloc/TotalSlots)*100 eval Used=(USED/TotalSlots)*100 bucket _Ame span=5m stats avg(allocated) as Allocated, avg(used) as Used by _Ame, Grid_ResourceGroup ] Amechart span=5mins avg(allocated) as Allocated, avg(used) as Used, avg(cpuual) as CPUU:l! Join between Process Metrics & Grid Scheduler Metrics! Subsearches to retrieve details from Hardware Inventory & Resource Plan! Extremely valuable as used to analyse & improve Grid App efficiency

21 Cost Transparency! System Usage Metrics converted into $ via unit cost lookup table! Helps business managers idenafy inefficiencies 21

22 Grid Team Dashboards

23 SoRware Consistency Checks! Scripted input on forwarders run regular md5sum checks of key folders! Lookup against a table which maps known md5sums to versions! Crucial to ensure we re running the grid sorware we think we are!

24 Infrastructure Health! Based on indexed data and reconciliaaon against Inventory lookup table! Dashboard checked every morning! Helps us maintain health of 1000s of hosts spread around the globe 24

25 Data Centre Temperatures! HW Temperatures collected by Splunk forwarders using WMI! Lookup against server locaaon table to add Data Centre and Cabinet info

26 Component of SoRware Deployment System

27 Grid Package Deployment! Many Grid Apps => Many SoRware Packages deployed! Needed Self Service & Fully AutomaAc SoRware Deployment! App Teams deliver packages to drop- off folder! Automated Change Control review! Fully Automated deployment to 1000s of hosts globally! >20TB Per week

28 Architecture! Deployment triggered using MulAcast message! Agents report status to Splunk via UDP! Deployment System Daemon queries Splunk using REST API! Proceeds to next step when 80% of hosts have downloaded package PACKAGE MANAGER DAEMON REST API: Runs Search Macro MulAcast Trigger Grid Hosts (1000s) UDP Message 28

29 29

30 Advice 30

31 Advice! Use lookups to enrich your data! Graph data together Get your data into the same units, for example % Dual Axis Chart Overlay! Make good use of Scripted Inputs! Make good use of Custom Search Scripts! Think outside the box You re only limited by your own imaginaaon!

32 THANK YOU

Exploratory AnalyAcs for Shared- service Hadoop Clusters

Exploratory AnalyAcs for Shared- service Hadoop Clusters Copyright 2014 Splunk Inc. Exploratory AnalyAcs for Shared- service Hadoop Clusters Sagi Zelnick Principal Architect, Yahoo Disclaimer During the course of this presentaaon, we may make forward- looking

More information

This chapter introduces you to Microso2 Office Access 2013. The chapter focuses on what a database is, the components of a database, what a database

This chapter introduces you to Microso2 Office Access 2013. The chapter focuses on what a database is, the components of a database, what a database This chapter introduces you to Microso2 Office Access 2013. The chapter focuses on what a database is, the components of a database, what a database can do and how to create a database. 1 The objecaves

More information

Building a cloud- based SIEM with Splunk Cloud and AWS

Building a cloud- based SIEM with Splunk Cloud and AWS Copyright 2014 Splunk Inc. Building a cloud- based SIEM with Splunk Cloud and AWS Joe Goldberg Product MarkeAng, Splunk Gary Mikula Senior Director InformaAon Security, FINRA Sivakanth Mundru Product Manager,

More information

BBM467 Data Intensive ApplicaAons

BBM467 Data Intensive ApplicaAons Hace7epe Üniversitesi Bilgisayar Mühendisliği Bölümü BBM467 Data Intensive ApplicaAons Dr. Fuat Akal akal@hace7epe.edu.tr Overview What is Cloud CompuAng? VirtualizaAon Service Oriented CompuAng What is

More information

IOmark Suite. Benchmarking Storage with Applica4on Workloads August, 2013. 2013 Evaluator Group, Inc.

IOmark Suite. Benchmarking Storage with Applica4on Workloads August, 2013. 2013 Evaluator Group, Inc. IOmark Suite Benchmarking Storage with Applica4on Workloads August, 2013 1 What is IOmark Suite?! A storage specific benchmark for applicaaon workloads Tests storage only Supports VDI and Virtual Machine

More information

Real World Big Data Architecture - Splunk, Hadoop, RDBMS

Real World Big Data Architecture - Splunk, Hadoop, RDBMS Copyright 2015 Splunk Inc. Real World Big Data Architecture - Splunk, Hadoop, RDBMS Raanan Dagan, Big Data Specialist, Splunk Disclaimer During the course of this presentagon, we may make forward looking

More information

Keeping Splunk in Check: Tools to BeGer Manage Your Investment

Keeping Splunk in Check: Tools to BeGer Manage Your Investment Copyright 2015 Splunk Inc. Keeping Splunk in Check: Tools to BeGer Manage Your Investment Aaron Kornhauser Sr. Professional Services Consultant, Splunk, Inc. Vladimir Skoryk Sr. Professional Services Consultant,

More information

HP OO 10.X - SiteScope Monitoring Templates

HP OO 10.X - SiteScope Monitoring Templates HP OO Community Guides HP OO 10.X - SiteScope Monitoring Templates As with any application continuous automated monitoring is key. Monitoring is important in order to quickly identify potential issues,

More information

Technology Partners. Acceleratio Ltd. is a software development company based in Zagreb, Croatia, founded in 2009.

Technology Partners. Acceleratio Ltd. is a software development company based in Zagreb, Croatia, founded in 2009. Acceleratio Ltd. is a software development company based in Zagreb, Croatia, founded in 2009. We create innovative software solutions for SharePoint, Office 365, MS Windows Remote Desktop Services, and

More information

Capacity Planning for Microsoft SharePoint Technologies

Capacity Planning for Microsoft SharePoint Technologies Capacity Planning for Microsoft SharePoint Technologies Capacity Planning The process of evaluating a technology against the needs of an organization, and making an educated decision about the configuration

More information

User Reports. Time on System. Session Count. Detailed Reports. Summary Reports. Individual Gantt Charts

User Reports. Time on System. Session Count. Detailed Reports. Summary Reports. Individual Gantt Charts DETAILED REPORT LIST Track which users, when and for how long they used an application on Remote Desktop Services (formerly Terminal Services) and Citrix XenApp (known as Citrix Presentation Server). These

More information

About Me: Brent Ozar. Perfmon and Profiler 101

About Me: Brent Ozar. Perfmon and Profiler 101 Perfmon and Profiler 101 2008 Quest Software, Inc. ALL RIGHTS RESERVED. About Me: Brent Ozar SQL Server Expert for Quest Software Former SQL DBA Managed >80tb SAN, VMware Dot-com-crash experience Specializes

More information

xassets Hosted Services Microsoft SAM Assist Audits with xassets

xassets Hosted Services Microsoft SAM Assist Audits with xassets xassets Hosted Services Microsoft SAM Assist Audits with xassets 2007-2010 xassets.com Limited Introduction... 2 Preparation... 2 Implementation... 3 Execution of Discovery... 3 Reporting Phase... 3 Information

More information

How To Set Up Foglight Nms For A Proof Of Concept

How To Set Up Foglight Nms For A Proof Of Concept Page 1 of 5 Foglight NMS Overview Foglight Network Management System (NMS) is a robust and complete network monitoring solution that allows you to thoroughly and efficiently manage your network. It is

More information

Splunk Operational Visibility

Splunk Operational Visibility Copyright 2015 Splunk Inc. Splunk Operational Visibility Matthias Maier Sales Engineer, CISSP Safe Harbor Statement During the course of this presentation, we may make forward looking statements regarding

More information

Big Data Use Case. How Rackspace is using Private Cloud for Big Data. Bryan Thompson. May 8th, 2013

Big Data Use Case. How Rackspace is using Private Cloud for Big Data. Bryan Thompson. May 8th, 2013 Big Data Use Case How Rackspace is using Private Cloud for Big Data Bryan Thompson May 8th, 2013 Our Big Data Problem Consolidate all monitoring data for reporting and analytical purposes. Every device

More information

Scaling out a SharePoint Farm and Configuring Network Load Balancing on the Web Servers. Steve Smith Combined Knowledge MVP SharePoint Server

Scaling out a SharePoint Farm and Configuring Network Load Balancing on the Web Servers. Steve Smith Combined Knowledge MVP SharePoint Server Scaling out a SharePoint Farm and Configuring Network Load Balancing on the Web Servers Steve Smith Combined Knowledge MVP SharePoint Server Scaling out a SharePoint Farm and Configuring Network Load Balancing

More information

Automated Performance Testing of Desktop Applications

Automated Performance Testing of Desktop Applications By Ostap Elyashevskyy Automated Performance Testing of Desktop Applications Introduction For the most part, performance testing is associated with Web applications. This area is more or less covered by

More information

Leveraging Machine Data to Deliver New Insights for Business Analytics

Leveraging Machine Data to Deliver New Insights for Business Analytics Copyright 2015 Splunk Inc. Leveraging Machine Data to Deliver New Insights for Business Analytics Rahul Deshmukh Director, Solutions Marketing Jason Fedota Regional Sales Manager Safe Harbor Statement

More information

Running custom scripts which allow you to remotely and securely run a script you wrote on Windows, Mac, Linux, and Unix devices.

Running custom scripts which allow you to remotely and securely run a script you wrote on Windows, Mac, Linux, and Unix devices. About Foglight NMS Foglight NMS is a comprehensive device, application, and traffic monitoring and troubleshooting solution. It is capable of securely monitoring single and multi-site networks of all sizes,

More information

Server & Application Monitor

Server & Application Monitor Server & Application Monitor agentless application & server monitoring SolarWinds Server & Application Monitor provides predictive insight to pinpoint app performance issues. This product contains a rich

More information

Deploying the Splunk App for Microso> Exchange

Deploying the Splunk App for Microso> Exchange Copyright 2014 Splunk Inc. Deploying the Splunk App for Microso> Exchange Jeff Bernt SDET Disclaimer During the course of this presentahon, we may make forward- looking statements regarding future events

More information

Simplified Forwarder Deployment and Deployment Server Techniques

Simplified Forwarder Deployment and Deployment Server Techniques Copyright 2015 Splunk Inc. Simplified Forwarder Deployment and Deployment Server Techniques Cary Pe;erborg Sr. Monitoring Eng., LDS Church Disclaimer During the course of this presentalon, we may make

More information

System Aware Cyber Security Architecture

System Aware Cyber Security Architecture System Aware Cyber Security Architecture Rick A. Jones October, 2011 Research Topic DescripAon System Aware Cyber Security Architecture Addresses supply chain and insider threats Embedded into the system

More information

End- to- End Monitoring Unified Performance Dashboard (UPD)

End- to- End Monitoring Unified Performance Dashboard (UPD) Calvin Smith Project Solution Architect Rich Galloway Systems Integration Engineer Michael Rodriguez Splunk Analytics Engineer Karen Wilson Program Manager Northrop Grumman Information Systems (NGIS) Copyright

More information

SolarWinds Database Performance Analyzer (DPA) or OEM?

SolarWinds Database Performance Analyzer (DPA) or OEM? SolarWinds Database Performance Analyzer (DPA) or OEM? The DBA Says the Answer Is Both! By Confio Software Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Did you know 90%

More information

GigaSpaces XAP.NET 10.1.1 Administration Training ADMINISTRATION, MONITORING AND TROUBLESHOOTING GIGASPACES XAP.NET DISTRIBUTED SYSTEMS

GigaSpaces XAP.NET 10.1.1 Administration Training ADMINISTRATION, MONITORING AND TROUBLESHOOTING GIGASPACES XAP.NET DISTRIBUTED SYSTEMS GigaSpaces XAP.NET 10.1.1 Administration Training ADMINISTRATION, MONITORING AND TROUBLESHOOTING GIGASPACES XAP.NET DISTRIBUTED SYSTEMS Learn about GigaSpaces XAP internal protocols, its configuration,

More information

Splunk Enterprise in the Cloud Vision and Roadmap

Splunk Enterprise in the Cloud Vision and Roadmap Copyright 2013 Splunk Inc. Splunk Enterprise in the Cloud Vision and Roadmap Alex Munk PM Cloud #splunkconf Ledio Ago Director of Engineering Cloud Legal NoJces During the course of this presentajon, we

More information

Case Study - I. Industry: Social Networking Website Technology : J2EE AJAX, Spring, MySQL, Weblogic, Windows Server 2008.

Case Study - I. Industry: Social Networking Website Technology : J2EE AJAX, Spring, MySQL, Weblogic, Windows Server 2008. Case Study - I Industry: Social Networking Website Technology : J2EE AJAX, Spring, MySQL, Weblogic, Windows Server 2008 Challenges The scalability of the database servers to execute batch processes under

More information

Introduction to Splunk Dashboards for Service Oriented Architecture Monitoring at SurveyMonkey Michael Sela, Engineering Manager.

Introduction to Splunk Dashboards for Service Oriented Architecture Monitoring at SurveyMonkey Michael Sela, Engineering Manager. Introduction to Splunk Dashboards for Service Oriented Architecture Monitoring at SurveyMonkey Michael Sela, Engineering Manager #splunkconf Agenda Introduction! Current Applications Architecture and Challenges!

More information

Planning Successful AnalyBcs Projects

Planning Successful AnalyBcs Projects Copyright 2014 Splunk Inc. Planning Successful AnalyBcs Projects Mackenzie Kosut Director of Technical OperaBons, Oscar Health Pete Sicilia Director Technical Services, Splunk Disclaimer During the course

More information

Introduction. Part I: Finding Bottlenecks when Something s Wrong. Chapter 1: Performance Tuning 3

Introduction. Part I: Finding Bottlenecks when Something s Wrong. Chapter 1: Performance Tuning 3 Wort ftoc.tex V3-12/17/2007 2:00pm Page ix Introduction xix Part I: Finding Bottlenecks when Something s Wrong Chapter 1: Performance Tuning 3 Art or Science? 3 The Science of Performance Tuning 4 The

More information

Microsoft Dynamics NAV 2013 R2 Sizing Guidelines for Multitenant Deployments

Microsoft Dynamics NAV 2013 R2 Sizing Guidelines for Multitenant Deployments Microsoft Dynamics NAV 2013 R2 Sizing Guidelines for Multitenant Deployments February 2014 Contents Microsoft Dynamics NAV 2013 R2 3 Test deployment configurations 3 Test results 5 Microsoft Dynamics NAV

More information

GigaSpaces XAP 9.7 Administration Training ADMINISTRATION, MONITORING AND TROUBLESHOOTING GIGASPACES XAP DISTRIBUTED SYSTEMS

GigaSpaces XAP 9.7 Administration Training ADMINISTRATION, MONITORING AND TROUBLESHOOTING GIGASPACES XAP DISTRIBUTED SYSTEMS GigaSpaces XAP 9.7 Administration Training ADMINISTRATION, MONITORING AND TROUBLESHOOTING GIGASPACES XAP DISTRIBUTED SYSTEMS Learn about GigaSpaces XAP internal protocols, its configuration, monitoring

More information

Understand Your SAP HR and Payroll Reporting Options In A Cloud, On-Premise and Hybrid World

Understand Your SAP HR and Payroll Reporting Options In A Cloud, On-Premise and Hybrid World Understand Your SAP HR and Payroll Reporting Options In A Cloud, On-Premise and Hybrid World SpinifexIT Webinar Danielle Larocca, SpinifexIT Copyright 2014 SpinifexIT Pty Ltd. Questions How to submit a

More information

Accelera'ng Your Solu'on Development with Splunk Reference Apps

Accelera'ng Your Solu'on Development with Splunk Reference Apps Copyright 2015 Splunk Inc. Accelera'ng Your Solu'on Development with Splunk Reference Apps Grigori Melnik Principal Product Manager Developer PlaAorm, Splunk @gmelnik Disclaimer During the course of this

More information

Database Services for Physics @ CERN

Database Services for Physics @ CERN Database Services for Physics @ CERN Deployment and Monitoring Radovan Chytracek CERN IT Department Outline Database services for physics Status today How we do the services tomorrow? Performance tuning

More information

Mobile Application Performance

Mobile Application Performance Mobile Application Performance Tips & Tricks to Significantly Boost App Performance Ray Bennett Director, Microstrategy - Mobile Service Line 11km/s (7mps) Escape Velocity Performance Definition What is

More information

Implementing Internet Storage Service Using OpenAFS. Sungjin Chun(chunsj@embian.com) Dongguen Choi(eastroot@embian.com) Arum Yoon(toy7777@embian.

Implementing Internet Storage Service Using OpenAFS. Sungjin Chun(chunsj@embian.com) Dongguen Choi(eastroot@embian.com) Arum Yoon(toy7777@embian. Implementing Internet Storage Service Using OpenAFS Sungjin Chun(chunsj@embian.com) Dongguen Choi(eastroot@embian.com) Arum Yoon(toy7777@embian.com) Overview Introduction Implementation Current Status

More information

Best Practices for Monitoring Databases on VMware. Dean Richards Senior DBA, Confio Software

Best Practices for Monitoring Databases on VMware. Dean Richards Senior DBA, Confio Software Best Practices for Monitoring Databases on VMware Dean Richards Senior DBA, Confio Software 1 Who Am I? 20+ Years in Oracle & SQL Server DBA and Developer Worked for Oracle Consulting Specialize in Performance

More information

Building a Splunk-based Lumber Mill. Turning a bunch of logs into useful products

Building a Splunk-based Lumber Mill. Turning a bunch of logs into useful products Building a Splunk-based Lumber Mill Turning a bunch of logs into useful products About us - Bob Bregant - Senior IT Security Engineer - Takes top billing when he can - Joe Barnes - Interim CISO - Puts

More information

Quick Service Data for Quick Service Restaurants

Quick Service Data for Quick Service Restaurants Copyright 2015 Splunk Inc. Quick Service Data for Quick Service Restaurants Brandon Burk, Juan Gomez Sonic Drive- In Disclaimer During the course of this presentahon, we may make forward looking statements

More information

Splunk implementa-on. Our experiences throughout the 3 year journey

Splunk implementa-on. Our experiences throughout the 3 year journey Splunk implementa-on Our experiences throughout the 3 year journey About us Harvard University University Network Services Group Serving over 2500 faculty and more than 18,000 students Jim Donn Management

More information

What s Up With That Airplane? Visualizing DoD Knowledge Using Splunk Dashboards. Ken Mattern

What s Up With That Airplane? Visualizing DoD Knowledge Using Splunk Dashboards. Ken Mattern What s Up With That Airplane? Visualizing DoD Knowledge Using Splunk Dashboards Ken Mattern Ken Mattern Senior Systems Analyst Data Miner Aranea Solutions, Inc. Huntsville, Alabama Department of Defense

More information

Maintaining Non-Stop Services with Multi Layer Monitoring

Maintaining Non-Stop Services with Multi Layer Monitoring Maintaining Non-Stop Services with Multi Layer Monitoring Lahav Savir System Architect and CEO of Emind Systems lahavs@emindsys.com www.emindsys.com The approach Non-stop applications can t leave on their

More information

How To Test For Performance And Scalability On A Server With A Multi-Core Computer (For A Large Server)

How To Test For Performance And Scalability On A Server With A Multi-Core Computer (For A Large Server) Scalability Results Select the right hardware configuration for your organization to optimize performance Table of Contents Introduction... 1 Scalability... 2 Definition... 2 CPU and Memory Usage... 2

More information

ITPS AG. Aplication overview. DIGITAL RESEARCH & DEVELOPMENT SQL Informational Management System. SQL Informational Management System 1

ITPS AG. Aplication overview. DIGITAL RESEARCH & DEVELOPMENT SQL Informational Management System. SQL Informational Management System 1 ITPS AG DIGITAL RESEARCH & DEVELOPMENT SQL Informational Management System Aplication overview SQL Informational Management System 1 Contents 1 Introduction 3 Modules 3 Aplication Inventory 4 Backup Control

More information

SharePoint 2010 Performance and Capacity Planning Best Practices

SharePoint 2010 Performance and Capacity Planning Best Practices Information Technology Solutions SharePoint 2010 Performance and Capacity Planning Best Practices Eric Shupps SharePoint Server MVP About Information Me Technology Solutions SharePoint Server MVP President,

More information

Deploying Splunk on Amazon Web Services

Deploying Splunk on Amazon Web Services Copyright 2014 Splunk Inc. Deploying Splunk on Amazon Web Services Simeon Yep Senior Manager, Business Development Technical Services Roy Arsan Senior SoHware Engineer Disclaimer During the course of this

More information

32-bit and 64-bit BarTender. How to Select the Right Version for Your Needs WHITE PAPER

32-bit and 64-bit BarTender. How to Select the Right Version for Your Needs WHITE PAPER 32-bit and 64-bit BarTender How to Select the Right Version for Your Needs WHITE PAPER Contents Overview 3 The Difference Between 32-bit and 64-bit 3 Find Out if Your Computer is Capable of Running 64-bit

More information

WEB HELP DESK GETTING STARTED GUIDE

WEB HELP DESK GETTING STARTED GUIDE WEB HELP DESK GETTING STARTED GUIDE TABLE OF CONTENTS Install Web Help Desk (Windows)..... 3 Set Up Technician & Client Accounts 6 Configuring Ticket. 9 Configuring IT Asset..... 13 Useful Links 15 Use

More information

Stream Deployments in the Real World: Enhance Opera?onal Intelligence Across Applica?on Delivery, IT Ops, Security, and More

Stream Deployments in the Real World: Enhance Opera?onal Intelligence Across Applica?on Delivery, IT Ops, Security, and More Copyright 2015 Splunk Inc. Stream Deployments in the Real World: Enhance Opera?onal Intelligence Across Applica?on Delivery, IT Ops, Security, and More Stela Udovicic Sr. Product Marke?ng Manager Clayton

More information

Mohammed Khan SUMMARY

Mohammed Khan SUMMARY Mohammed Khan E-mail: Mohammedrkhn@gmail.com Phone: 347-878-1170 SUMMARY Over 5 years of diversified experience as a. Experience includes requirement analysis, manual testing and automation and quality

More information

Automating Big Data Benchmarking for Different Architectures with ALOJA

Automating Big Data Benchmarking for Different Architectures with ALOJA www.bsc.es Jan 2016 Automating Big Data Benchmarking for Different Architectures with ALOJA Nicolas Poggi, Postdoc Researcher Agenda 1. Intro on Hadoop performance 1. Current scenario and problematic 2.

More information

SafePeak Case Study: Large Microsoft SharePoint with SafePeak

SafePeak Case Study: Large Microsoft SharePoint with SafePeak SafePeak Case Study: Large Microsoft SharePoint with SafePeak The benchmark was conducted in an Enterprise class organization (>2, employees), in the software development business unit, unit that widely

More information

vrealize Operations Manager User Guide

vrealize Operations Manager User Guide vrealize Operations Manager User Guide vrealize Operations Manager 6.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

G DATA TechPaper #0275. G DATA Network Monitoring

G DATA TechPaper #0275. G DATA Network Monitoring G DATA TechPaper #0275 G DATA Network Monitoring G DATA Software AG Application Development May 2016 Contents Introduction... 3 1. The benefits of network monitoring... 3 1.1. Availability... 3 1.2. Migration

More information

Splunk for VMware Virtualization. Marco Bizzantino marco.bizzantino@kiratech.it Vmug - 05/10/2011

Splunk for VMware Virtualization. Marco Bizzantino marco.bizzantino@kiratech.it Vmug - 05/10/2011 Splunk for VMware Virtualization Marco Bizzantino marco.bizzantino@kiratech.it Vmug - 05/10/2011 Collect, index, organize, correlate to gain visibility to all IT data Using Splunk you can identify problems,

More information

ILMT Central Team. Performance tuning. IBM License Metric Tool 9.0 Questions & Answers. 2014 IBM Corporation

ILMT Central Team. Performance tuning. IBM License Metric Tool 9.0 Questions & Answers. 2014 IBM Corporation ILMT Central Team Performance tuning IBM License Metric Tool 9.0 Questions & Answers ILMT Central Team Contact details LMTHelp@us.ibm.com https://ibm.biz/ilmt_forum https://ibm.biz/ilmt_wiki https://ibm.biz/ilmt_youtube

More information

Tuning Microsoft SQL Server for SharePoint. Daniel Glenn

Tuning Microsoft SQL Server for SharePoint. Daniel Glenn Tuning Microsoft SQL Server for SharePoint Daniel Glenn Daniel Glenn @DanielGlenn http://knowsp.com SharePoint and Collaboration Practice Leader @ InfoWorks, Inc. www.infoworks-tn.com PASS Nashville Business

More information

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com Why Standardize on Oracle Database 11g Next Generation Database Management Thomas Kyte http://asktom.oracle.com Top Challenges Performance Management Change Management Ongoing Administration Storage Backup

More information

Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager. Best Practices and Reference Architecture

Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager. Best Practices and Reference Architecture Optimizing Business Continuity Management with NetIQ PlateSpin Protect and AppManager Best Practices and Reference Architecture WHITE PAPER Table of Contents Introduction.... 1 Why monitor PlateSpin Protect

More information

Scality RING High performance Storage So7ware for Email pla:orms, StaaS and Cloud ApplicaAons

Scality RING High performance Storage So7ware for Email pla:orms, StaaS and Cloud ApplicaAons Scality RING High performance Storage So7ware for Email pla:orms, StaaS and Cloud ApplicaAons Friday, March 18, 2011 MARKET ExponenAal Storage Demand The Digital Universe: Growing by a factor of 44 in

More information

Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3

Citrix EdgeSight Administrator s Guide. Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for XenApp 5.3 Citrix EdgeSight Administrator s Guide Citrix EdgeSight for Endpoints 5.3 Citrix EdgeSight for enapp 5.3 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior

More information

Business Case Development for Credit and Debit Card Fraud Re- Scoring Models

Business Case Development for Credit and Debit Card Fraud Re- Scoring Models Business Case Development for Credit and Debit Card Fraud Re- Scoring Models Kurt Gutzmann Managing Director & Chief ScienAst GCX Advanced Analy.cs LLC www.gcxanalyacs.com October 20, 2011 www.gcxanalyacs.com

More information

Telemetry: The Customer Experience

Telemetry: The Customer Experience Copyright 2014 Splunk Inc. Telemetry: The Customer Experience Simon Warrington Senior Program Manager, Microso@ Disclaimer During the course of this presentagon, we may make forward- looking statements

More information

Installation Guide. Help Desk Manager. Version v12.1.0

Installation Guide. Help Desk Manager. Version v12.1.0 Installation Guide Help Desk Manager Version v12.1.0 Documentation published: March 12, 2014 Contents Introduction to Help Desk Manager 3 Help Desk Manager Key Features 3 Do-It-Yourself Installation and

More information

Data Center Reference Architectures. Manish Karir Merit Network Inc.

Data Center Reference Architectures. Manish Karir Merit Network Inc. Data Center Reference Architectures Manish Karir Merit Network Inc. Outline Background Generalized data center architecture Data center variaaons Factors affecang data design Generalizing scale and workload

More information

Tableau Server Scalability Explained

Tableau Server Scalability Explained Tableau Server Scalability Explained Author: Neelesh Kamkolkar Tableau Software July 2013 p2 Executive Summary In March 2013, we ran scalability tests to understand the scalability of Tableau 8.0. We wanted

More information

Encore Software Solutions (V3) Identity Lifecycle Management and Federated Security Suite (ILM/FSS) Overview and Technical Requirements

Encore Software Solutions (V3) Identity Lifecycle Management and Federated Security Suite (ILM/FSS) Overview and Technical Requirements Encore Software Solutions (V3) Identity Lifecycle Management and Federated Security Suite (ILM/FSS) Overview and Technical Requirements Encore Software Solutions (V3) provides a holistic Identity Lifecycle

More information

Sisense. Product Highlights. www.sisense.com

Sisense. Product Highlights. www.sisense.com Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze

More information

MySQL Enterprise Monitor

MySQL Enterprise Monitor MySQL Enterprise Monitor Lynn Ferrante Principal Sales Consultant 1 Program Agenda MySQL Enterprise Monitor Overview Architecture Roles Demo 2 Overview 3 MySQL Enterprise Edition Highest Levels of Security,

More information

Cloud Control Panel (CCP) Billing User Guide

Cloud Control Panel (CCP) Billing User Guide Cloud Control Panel (CCP) Billing User Guide Version 1.0: 01.01.11 Copyright 2011 DNS Europe Ltd. All rights reserved. Cloud Control Panel (CCP) Billing User Guide v1.0 Table of Contents 1 Introduction

More information

The Jiffy Lube Quick Tune- up for your Splunk Environment

The Jiffy Lube Quick Tune- up for your Splunk Environment Copyright 2014 Splunk Inc. The Jiffy Lube Quick Tune- up for your Splunk Environment Sean Delaney Client Architect, Splunk Disclaimer During the course of this presentaion, we may make forward looking

More information

Oracle Enterprise Manager 12c Microsoft SQL Server Plug-in version 12.1.0.6

Oracle Enterprise Manager 12c Microsoft SQL Server Plug-in version 12.1.0.6 Oracle Enterprise Manager 12c Microsoft SQL Server Plug-in version 12.1.0.6 July 2015 Heterogeneous Datacenter Management Oracle s Philosophy Productize our deep understanding of the Oracle stack to provide

More information

Asynchronous Provisioning Platform (APP)

Asynchronous Provisioning Platform (APP) Service Catalog Manager - IaaS Integration Asynchronous Provisioning Platform (APP) 0 Overview Implementing an asynchronous provisioning service (e.g. for IaaS) most often requires complex implementation

More information

Hardware Recommendations

Hardware Recommendations Hardware Recommendations Alpha Anywhere is a Windows based system that will run on various Windows versions. The minimum requirement is Windows XP SP3 or Server 2003. However, it is recommended that at

More information

From the Datacenter to the Dean s office

From the Datacenter to the Dean s office Copyright 2013 Splunk Inc. From the Datacenter to the Dean s office Mark Runals Sr Security Engineer, The Ohio State University #splunkconf About Me! Started at OSU July 12 = 14 months using Splunk! Splunk

More information

August 2014 San Antonio Texas The Power of Embedded Analytics with SAP BusinessObjects

August 2014 San Antonio Texas The Power of Embedded Analytics with SAP BusinessObjects August 2014 San Antonio Texas The Power of Embedded Analytics with SAP BusinessObjects Speaker: Kevin McManus Founder, LaunchWorks Learning Points Eliminate effort and delay of moving data to the cloud

More information

Scalability and Performance Report - Analyzer 2007

Scalability and Performance Report - Analyzer 2007 - Analyzer 2007 Executive Summary Strategy Companion s Analyzer 2007 is enterprise Business Intelligence (BI) software that is designed and engineered to scale to the requirements of large global deployments.

More information

Deployment Best PracHces for Splunk Apps Monitoring MicrosoK- based Infrastructure

Deployment Best PracHces for Splunk Apps Monitoring MicrosoK- based Infrastructure Copyright 2013 Splunk Inc. Deployment Best PracHces for Splunk Apps Monitoring MicrosoK- based Infrastructure Sharad Kylasam Sr. Product Manager Jeff Bernt - SDET #splunkconf Legal NoHces During the course

More information

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4 Pcounter Web Report 3.x Installation Guide - v2014-11-30 Pcounter Web Report Installation Guide Version 3.4 Table of Contents Table of Contents... 2 Installation Overview... 3 Installation Prerequisites

More information

Where Mobile meets In- Store & Point of Sale: Data Collides

Where Mobile meets In- Store & Point of Sale: Data Collides Copyright 2015 Splunk Inc. Where Mobile meets In- Store & Point of Sale: Data Collides Jon Thies - CTO, Qwasi ScoB Hall - Sr. Technical Manager, NCR Disclaimer During the course of this presentapon, we

More information

Caching SMB Data for Offline Access and an Improved Online Experience

Caching SMB Data for Offline Access and an Improved Online Experience Caching SMB Data for Offline Access and an Improved Online Experience Agenda What is Offline Files How does Offline Files interact with SMB Offline Files enhancements for Windows 7 Questions 2 What is

More information

The Complete Performance Solution for Microsoft SQL Server

The Complete Performance Solution for Microsoft SQL Server The Complete Performance Solution for Microsoft SQL Server Powerful SSAS Performance Dashboard Innovative Workload and Bottleneck Profiling Capture of all Heavy MDX, XMLA and DMX Aggregation, Partition,

More information

Deep Dive Monitoring Servers using BI 4.1. Alan Mayer Solid Ground Technologies SESSION CODE: 0305

Deep Dive Monitoring Servers using BI 4.1. Alan Mayer Solid Ground Technologies SESSION CODE: 0305 Deep Dive Monitoring Servers using BI 4.1 Alan Mayer Solid Ground Technologies SESSION CODE: 0305 AGENDA Introduction Definitions and Architecture Configuration Metrics Watches and Alerts Probes Reporting

More information

Deployment Planning Guide

Deployment Planning Guide Deployment Planning Guide August 2011 Copyright: 2011, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form or by any means,

More information

TL 9000 Measurements Handbook, Release 5.0

TL 9000 Measurements Handbook, Release 5.0 Logo or heading here TL 9000 Measurements Handbook, Release 5.0 Changes from Release 4.5 Overview Measurements Handbook Changes R4.5 to R 5.0 Input from Sub- teams and IniAaAves tasked with developing

More information

More Comprehensive Digital Intelligence - CorrelaFng Client and Server- side Data

More Comprehensive Digital Intelligence - CorrelaFng Client and Server- side Data Copyright 2013 Splunk Inc. More Comprehensive Digital Intelligence - CorrelaFng Client and Server- side Data Allan, Mike, Rahul, Sondra #splunkconf About Us! Allan Tomkinson Senior Developer @Lincoln Financial

More information

CA IT Client Manager Asset Inventory and Discovery

CA IT Client Manager Asset Inventory and Discovery DATA SHEET: ASSET INVENTORY AND DISCOVERY CA IT Client Manager Asset Inventory and Discovery CA IT CLIENT MANAGER DELIVERS EXTENSIVE ASSET INVENTORY AND DISCOVERY CAPABILITIES THAT HELP YOU MAINTAIN ACCURATE

More information

Managing the PowerPivot for SharePoint Environment

Managing the PowerPivot for SharePoint Environment Managing the PowerPivot for SharePoint Environment Melissa Coates Blog: sqlchick.com Twitter: @sqlchick SharePoint Saturday 3/16/2013 About Melissa Business Intelligence & Data Warehousing Developer Architect

More information

Installation Process

Installation Process Installation Process Aivika One Lite New Dynamic Solutions BVBA Contents Contents... 2 Introduction... 3 Aivika One Lite introduction... 4 Concept... 4 Components... 4 Deploying Aivika One Lite... 5 Supported

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

Smart Business Architecture for Midsize Networks Network Management Deployment Guide

Smart Business Architecture for Midsize Networks Network Management Deployment Guide Smart Business Architecture for Midsize Networks Network Management Deployment Guide Introduction: Smart Business Architecture for Mid-sized Networks, Network Management Deployment Guide With the Smart

More information

Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides

Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides HP OO Community Guides Monitoring HP OO 10 This document describes the specifications of components we want to monitor, and the means to monitor them, in order to achieve effective monitoring of HP Operations

More information

Transitioning from a Physical to Virtual Production Environment. Ryan Miller Middle Tennessee Electric Membership Corp

Transitioning from a Physical to Virtual Production Environment. Ryan Miller Middle Tennessee Electric Membership Corp Transitioning from a Physical to Virtual Production Environment Ryan Miller Middle Tennessee Electric Membership Corp Introduction MTEMC Distribute electricity to ~200,000 residential & business members

More information

Scaling Graphite Installations

Scaling Graphite Installations Scaling Graphite Installations Graphite basics Graphite is a web based Graphing program for time series data series plots. Written in Python Consists of multiple separate daemons Has it's own storage backend

More information

SapphireIMS 4.0 Asset Management Feature Specification

SapphireIMS 4.0 Asset Management Feature Specification SapphireIMS 4.0 Asset Management Feature Specification v1.4 All rights reserved. COPYRIGHT NOTICE AND DISCLAIMER No parts of this document may be reproduced in any form without the express written permission

More information

ProSystem fx Engagement. Deployment Planning Guide

ProSystem fx Engagement. Deployment Planning Guide ProSystem fx Engagement Deployment Planning Guide September 2011 Copyright: 2011, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted

More information

PANDORA FMS OFFICIAL TRAINING

PANDORA FMS OFFICIAL TRAINING / Administrator training PAT-2014 CHARACTERISTICS AND REQUIREMENTS 1. Characteristics - Length of the face-to-face program: 15 hours. - Length of the online program: 12 hours. 2. Requirements - Intermediate

More information