Copyright 2014 Splunk Inc. Splunk Mint SDK. Kostas Polychronis, George Taskos. Mint Team, Splunk

Size: px
Start display at page:

Download "Copyright 2014 Splunk Inc. Splunk Mint SDK. Kostas Polychronis, George Taskos. Mint Team, Splunk"

Transcription

1 Copyright 2014 Splunk Inc. Splunk Mint SDK Kostas Polychronis, George Taskos Mint Team, Splunk

2 Disclaimer During the course of this presentadon, we may make forward- looking statements regarding future events or the expected performance of the company. We caudon you that such statements reflect our current expectadons and esdmates 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 presentadon are being made as of the Dme and date of its live presentadon. If reviewed aqer its live presentadon, this presentadon may not contain current or accurate informadon. We do not assume any obligadon to update any forward looking statements we may make. In addidon, any informadon about our roadmap outlines our general product direcdon and is subject to change at any Dme without nodce. It is for informadonal purposes only, and shall not be incorporated into any contract or other commitment. Splunk undertakes no obligadon either to develop the features or funcdonality described or to include any such feature or funcdonality in a future release. 2

3 A litle bit of history

4 BugSense it was We love developers and developers love us back! 12 person company Based in Greece $100k seed investment SupporDng Android, ios, HTML5, WP7, WP8, Windows 8, Xamarin Running on hundreds of millions of devices, probably including yours J 4

5 splunk Mint it became! September 16, 2013 the day Splunk acquired BugSense Team moved to splunk s HQ New product line Combined BugSense s data collecdon with splunk s capabilides One target: Get mobile data into splunk! 5

6 splunk + BugSense

7 Splunk Mint + Can you imagine the possibilides? 7

8 Splunk MINT Product Update BUGSENSE A Splunk Company Cloud- only Crash detecdon, usage insights and retendon informadon Not integrated with Splunk Enterprise Splunk MINT Express: adds transacdons and network performance Splunk MINT Enterprise (Beta): connects to Splunk Enterprise, more features and analydcs Correlates infrastructure, applicadon and mobile data in Splunk Enterprise 8

9 Introducing Mint

10 Good old funcdonality SDll there! 10

11 Crash ReporDng Track your crashes automadcally in real Dme. One line of code! That s it :) Android ios Mint.initAndStartSession(Context, APIKEY ); [[Mint sharedinstance] initandstartsession@"api_key"]; 11

12 Crash ReporDng + Insights Track your crashes automadcally in real Dme. One line of code! Full analydcs and reports Mobdex Score REAL TIME ANALYTICS WITH ONLY ONE LINE OF CODE! Android ios

13 Log Handled ExcepDons What about Handled ExcepDons? We can report them as well! Android ios try{ String a = null; a.tostring(); } catch(excepdon ex) { ex.printstacktrace(); // in case you want to see the stacktrace in your log cat output Mint.sendExcepDon(ex); //OR Mint.sendExcepDonMessage( level, 2, ex); } MintLogExcepDon(NSExcepDon, LimitedCrashExtraDataList) // More in our website 13

14 Crash Extra Data* We offer the ability to get more informadon on your crashes, add your own data. * With a small twist in the new version ;) Android ios Mint.addCrashExtraData( level, 2 ); [[Mint sharedinstance] addcrashextradata:[[crashextradata alloc] initwithkey:@ level andvalue:@ 2 ]]; 14

15 Breadcrumbs Show me the path of the user through the applicadon Android ios Mint.leaveBreadcrumb( Login Screen ); [[Mint sharedinstance] Login Screen ]; 15

16 User IdenDfier If you know your user, you should be able to find him at Mint as well. You can use a name, , server id, etc. Find everything that the specific user experienced Android ios Mint.setUserIdenDfier( kp@splunk.com ); [Mint sharedinstance].useridendfier gtaskos@splunk.com ; 16

17 Logcat / Apple Logging System Support Lots of important informadon are included in the logcat output. Check the logcat output with all your crashes You can print messages to the console using the ALS (Apple Logging System). When in debug mode, all the messages will be printed in the console window but when in release mode only nodce messages and above will be printed in the device log, while all your messages will forwarded to the splunk server. Android ios Mint.setLogging(true); Mint.setLogging(lines, filter); [[Mint sharedinstance] enablelogging:yes]; A debug log ); 17

18 Last Breath You can do important things when you know the applicadon will crash, just before it crashes! Android public class MainAcDvity extends AcDvity implements ExcepDonCallback { public void lastbreath(excepdon ex) { //do or save stuff here } ios BugSenseHandler.setExcepDonCallback(this); Due to pla}orm nature and restricdons this feature is not supported 18

19 Events Get informed about anything users are doing in your applicadon with events! Android ios Mint.sendEvent( buton1pressed ); [[Mint sharedinstance] buton1pressed compledonblock:nil]; 19

20 New features! 20

21 Splunk MINT Data Types Crashes Sessions Crashes Sessions Errors Events Errors Events Network TransacDons SemanDc Logs LocaDon Tons of Metadata 21

22 Global Extra Data Add extra data to all your acdons to get beter informadon Android ios Mint.addExtraData( level, 2 ); //or Map<String, String> map = new HashMap<String,String>(); map.put( level, 2 ); Map.put( character, warrior ); Mint.addExtraData(map); [[Mint sharedinstance] addcrashextradata:[[crashextradata alloc] initwithkey:@ level andvalue:@ 2 ]]; 22

23 Advanced Events Get informed about anything users are doing in your applicadon with events! Break down events by app version, OS version, see the trend and stats. Android ios Mint.sendEvent( buton1pressed ); [[Mint sharedinstance] buton1pressed compledonblock:nil]; 23

24 TransacDons A transacdon is used to monitor cridcal funcdonality in your app like a purchase. It is basically an event with start and finish. Android ios Mint.transacDoStart( userlogin ); //start transacdon Mint.transacDonStop( userlogin ); //successfully end transacdon Mint.transacDonCancel( userlogin, user pressed back ); //cancel transacdon with a reason [[Mint sharedinstance] transacdonstart:@ userlogin andresultblock:nil]; [[Mint sharedinstance] transacdonstop:@ userlogin andresultblock:nil]; [[Mint sharedinstance] transacdoncancel:@ userlogin reason:@ user pressed back" andresultblock:nil]; 24

25 Developer Se ngs What if you could change your variables remotely? Set the difficulty of your game at Mint, retrieve the variable when the app starts. Android int level = Integer.parseInt(Mint.getDevSe ngs( level )); ios [[Splunk sharedinstance] initandstartsession@"api_key"]; 25

26 AutomaDcally keep track of all your applicadon s network requests! Network Monitoring Android ios

27 Everything available on splunk You have raw access to all the data through splunk, you can create your own dashboards and alerts 27

28 Dashboard Live Demo

29 Special Offer: Try Splunk MINT Express for Free! Splunk MINT offers a fast path to mobile intelligence. How fast? Find out with a 6- month trial* Register for your free trial: htp://mint.splunk.com/conf2014offer Download the Splunk MINT SDKs Add the Splunk MINT line of SDK code and publish** Start ge ng digital intelligence at your fingerdps! *Offer valid for.conf2014 a5endees and coworkers of a5endees only. **Trial allows monitoring of up to 750,000 monthly acdve users (MAUs). 29

30 THANK YOU

Sierra- Cedar s Best PracDces for Building a Security OperaDons Center

Sierra- Cedar s Best PracDces for Building a Security OperaDons Center Copyright 2015 Splunk Inc. Sierra- Cedar s Best PracDces for Building a Security OperaDons Center Robert Miller Manager Corporate Security, Sierra- Cedar, Inc. Disclaimer During the course of this presentadon,

More information

Search Language - Beginner Mitch Fleischman

Search Language - Beginner Mitch Fleischman Copyright 2013 Splunk Inc. Search Language - Beginner Mitch Fleischman Senior Instructor #splunkconf Legal NoDces During the course of this presentadon, we may make forward- looking statements regarding

More information

How to actually use Splunk Data Models

How to actually use Splunk Data Models Copyright 2014 Splunk Inc. How to actually use Splunk Data Models David Clawson SplunkYoda Disclaimer During the course of this presentadon, we may make forward- looking statements regarding future events

More information

Building Splunk VisualizaDons with the New Custom VisualizaDon API

Building Splunk VisualizaDons with the New Custom VisualizaDon API Copyright 2016 Splunk Inc. Building Splunk VisualizaDons with the New Custom VisualizaDon API Marshall Agnew Senior So>ware Engineer at Splunk Disclaimer During the course of this presentadon, we may make

More information

Capturing Mobile Experience in the Wild: A Tale of Two Apps

Capturing Mobile Experience in the Wild: A Tale of Two Apps Capturing Mobile Experience in the Wild: A Tale of Two Apps Ashish Patro* Shravan Rayanchu, Michael Griepentrog Yadi Ma, Suman Banerjee University of Wisconsin Madison *patro@cs.wisc.edu Deploying a mobile

More information

Learn How to Build Powerful Correla3on Searches in Splunk Enterprise Security With Extreme Search

Learn How to Build Powerful Correla3on Searches in Splunk Enterprise Security With Extreme Search Macy Cronkrite Professional Services, Splunk Copyright 2015 Splunk Inc. Learn How to Build Powerful Correla3on Searches in Splunk Enterprise Security With Extreme Search Jack Coates Product Management,

More information

Create Dashboards that People Love

Create Dashboards that People Love Create Dashboards that People Love Introducing Splunk Dashboard Design Guidelines Iryna Vogler User Experience Design September 26, 2017 Washington, DC Forward-Looking Statements During the course of this

More information

Visualizing the Health of Your Mobile App

Visualizing the Health of Your Mobile App Visualizing the Health of Your Mobile App Jay Tamboli ios Engineer, Capital One September 26, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking

More information

The IT Risk Environment and Data AnalyDcs

The IT Risk Environment and Data AnalyDcs The IT Risk Environment and Data AnalyDcs Parm Lalli, Director, Sunera LLC Michael Kano, Senior Manager, Sunera LLC Professional Strategies S23 2013 Fall Conference Sail to Success CRISC CGEIT CISM CISA

More information

FFIEC Cybersecurity Assessment Tool

FFIEC Cybersecurity Assessment Tool FFIEC Cybersecurity Assessment Tool Cybersecurity Controls & Incidence Mappings for Splunk Enterprise, Enterprise Security, User Behavior Analytics Curtis Johnson Senior Sales Engineer & Security SME September

More information

Java 9: Tips on MigraDon and Upgradability

Java 9: Tips on MigraDon and Upgradability Java 9: Tips on MigraDon and Upgradability Bernard Traversat Vice President of Development Java SE PlaJorm Oracle November, 2017 Copyright 2017, Oracle and/or its affiliates. All rights reserved. ConfidenDal

More information

Docker and Splunk Development

Docker and Splunk Development Docker and Splunk Development Empowering Splunk Development with Docker Ron Cooper & David Kraemer Booz Allen Hamilton 26 September 2017 Washington, DC Forward-Looking Statements During the course of this

More information

DB Connect Is Back. and it is better than ever. Tyler Muth Denis Vergnes. September 2017 Washington, DC

DB Connect Is Back. and it is better than ever. Tyler Muth Denis Vergnes. September 2017 Washington, DC DB Connect Is Back and it is better than ever Tyler Muth Denis Vergnes September 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking statements

More information

MOBILE CRASH REPORT URQA. 손영수, 서병선, 정문철 github.com/urqa

MOBILE CRASH REPORT URQA. 손영수, 서병선, 정문철 github.com/urqa MOBILE CRASH REPORT URQA 손영수, 서병선, 정문철 (chair@urqa.io) github.com/urqa Section 1 WHAT IS URQA Bug Informa tion 안드로이드마켓개발자현황 전체개발자중개인개발자 : 73% Free Application Paid Application 1 Person Developer Company

More information

Welcome to Tomorrow... Today

Welcome to Tomorrow... Today Copyright 2016 Splunk Inc. Welcome to Tomorrow... Today The need and benefit of merging of IT and Security in today's ever connected world of security and IT Tim Lee CISO, City of LA Ernie Welch Sales

More information

Metrics Analysis with the Splunk Platform

Metrics Analysis with the Splunk Platform Metrics Analysis with the Splunk Platform How to work with metrics for Monitoring, Alerting, and ad-hoc analysis at scale Michael Porath Product Management, Splunk Allan Yan Principal Software Engineer,

More information

Bringing Sweetness to Sour Patch Tuesday

Bringing Sweetness to Sour Patch Tuesday Bringing Sweetness to Sour Patch Tuesday Pacific Northwest National Laboratory Justin Brown & Arzu Gosney September 27, 2017 Washington, DC Forward-Looking Statements During the course of this presentation,

More information

Ge#ng Started with the RCE. Len Wisniewski

Ge#ng Started with the RCE. Len Wisniewski Ge#ng Started with the RCE Len Wisniewski First thing to do Sign up for an RCE account Send e- mail to support@help.hmdc.harvard.edu requesdng an RCE account IQSS system administrator will send you a quesdonnaire

More information

The Power of Data Normalization. A look at the Common Information Model

The Power of Data Normalization. A look at the Common Information Model The Power of Data Normalization A look at the Common Information Model Mark Bonsack, CISSP Vladimir Skoryk, CISSP, CCFE, CHFI, CISA, CISM, RGTT Staff Sales Engineer, Splunk PS Supreme Architect, Splunk

More information

Making the Most of the Splunk Scheduler

Making the Most of the Splunk Scheduler Making the Most of the Splunk Scheduler Paul J. Lucas Principal Software Engineer, Splunk September 25 28, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may

More information

Atlassian s Journey Into Splunk

Atlassian s Journey Into Splunk Atlassian s Journey Into Splunk The Building Of Our Logging Pipeline On AWS Tim Clancy Engineering Manager, Observability James Mackie Infrastructure Engineer, Observability September 2017 Washington,

More information

Data Onboarding. Where Do I begin? Luke Netto Senior Professional Services Splunk. September 26, 2017 Washington, DC

Data Onboarding. Where Do I begin? Luke Netto Senior Professional Services Splunk. September 26, 2017 Washington, DC Data Onboarding Where Do I begin? Luke Netto Senior Professional Services Consultant @ Splunk September 26, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may

More information

Bring Context To Your Machine Data With Hadoop, RDBMS & Splunk

Bring Context To Your Machine Data With Hadoop, RDBMS & Splunk Bring Context To Your Machine Data With Hadoop, RDBMS & Splunk Raanan Dagan and Rohit Pujari September 25, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may

More information

Dashboard Wizardry. Advanced Dashboard Interactivity. Siegfried Puchbauer Principal Software Engineer Yuxiang Kou Software Engineer

Dashboard Wizardry. Advanced Dashboard Interactivity. Siegfried Puchbauer Principal Software Engineer Yuxiang Kou Software Engineer Dashboard Wizardry Advanced Dashboard Interactivity Siegfried Puchbauer Principal Software Engineer Yuxiang Kou Software Engineer September 25, 2017 Washington, DC Brought To You By Siegfried Puchbauer

More information

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics How to Troubleshoot Databases and Exadata Using Oracle Log Analytics Nima Haddadkaveh Director, Product Management Oracle Management Cloud October, 2018 Copyright 2018, Oracle and/or its affiliates. All

More information

Dashboards & Visualizations: What s New

Dashboards & Visualizations: What s New Dashboards & Visualizations: What s New Nicholas Filippi Product Management, Splunk Patrick Ogdin Product Management, Splunk September 2017 Washington, DC Welcome Patrick Ogdin Product Management, Splunk

More information

Next Generation Dashboards

Next Generation Dashboards Next Generation Dashboards Stephen Luedtke Sr. Technical Marketing Manager September 27, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking

More information

Faster Splunk App Cer=fica=on with Splunk AppInspect

Faster Splunk App Cer=fica=on with Splunk AppInspect Copyright 2016 Splunk Inc. Faster Splunk App Cer=fica=on with Splunk AppInspect Andy Nortrup Product Manager, Splunk Grigori Melnik Director, Product Management, Splunk Disclaimer During the course of this

More information

Design Process of IT Infrastructures Requirements Analysis

Design Process of IT Infrastructures Requirements Analysis Mestrado em Engenharia InformáDca e de Computadores Master Degree (MSc) in InformaDon Systems and Computer Engineering Administração e Gestão de Infra-estruturas de IT IT Infrastructure Management and

More information

Splunk & AWS. Gain real-time insights from your data at scale. Ray Zhu Product Manager, AWS Elias Haddad Product Manager, Splunk

Splunk & AWS. Gain real-time insights from your data at scale. Ray Zhu Product Manager, AWS Elias Haddad Product Manager, Splunk Splunk & AWS Gain real-time insights from your data at scale Ray Zhu Product Manager, AWS Elias Haddad Product Manager, Splunk Forward-Looking Statements During the course of this presentation, we may

More information

Mobile Apps 2010 iphone and Android

Mobile Apps 2010 iphone and Android Mobile Apps 2010 iphone and Android March 9, 2010 Norman McEntire, Founder Servin Corporation - http://servin.com Technology Training for Technology ProfessionalsTM norman.mcentire@servin.com 1 Legal Info

More information

Building Your First Splunk App with the Splunk Web Framework

Building Your First Splunk App with the Splunk Web Framework Copyright 2013 Splunk Inc. Building Your First Splunk App with the Splunk Web Framework Itay Neeman Dev Manager, Splunk Sea@le #splunkconf Legal NoMces During the course of this presentamon, we may make

More information

Making Sense of Web Fraud With Splunk Stream

Making Sense of Web Fraud With Splunk Stream Making Sense of Web Fraud With Splunk Stream An in-depth look at Stream use cases and customer success stories with a focus on stream:http Jim Apger Minister of Mayhem Senior Security Architect Matthew

More information

Copyright 2014 Splunk Inc. Splunk for VMware. Architecture & Design. Michael Donnelly, Sr. Sales Engineer

Copyright 2014 Splunk Inc. Splunk for VMware. Architecture & Design. Michael Donnelly, Sr. Sales Engineer Copyright 2014 Splunk Inc. Splunk for VMware Architecture & Design Michael Donnelly, Sr. Sales Engineer Disclaimer During the course of this presentaeon, we may make forward looking statements regarding

More information

Splunk N Box. Splunk Multi-Site Clusters In 20 Minutes or Less! Mohamad Hassan Sales Engineer. 9/25/2017 Washington, DC

Splunk N Box. Splunk Multi-Site Clusters In 20 Minutes or Less! Mohamad Hassan Sales Engineer. 9/25/2017 Washington, DC Splunk N Box Splunk Multi-Site Clusters In 20 Minutes or Less! Mohamad Hassan Sales Engineer 9/25/2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking

More information

EMPLOYEE LOCATION TRACKING SERVICE

EMPLOYEE LOCATION TRACKING SERVICE WES T ST R EET AWE SOM E STR EET EMPLOYEE LOCATION TRACKING SERVICE Web & Android OVERVIEW GPS fleet tracking services have been on the market for some years now but with the explosion of smartphone usage,

More information

Advances in GIS help create Smarter Communities

Advances in GIS help create Smarter Communities Advances in GIS help create Smarter Communities POP(ovich) Quiz Who is a Desktop User? Who is an ArcGIS Online User? Who is a ArcGIS Server Admin? Who is a Programmer? Who works with or for a government

More information

Data Obfuscation and Field Protection in Splunk

Data Obfuscation and Field Protection in Splunk Data Obfuscation and Field Protection in Splunk Angelo Brancato Security Specialist Dirk Nitschke Senior Sales Engineer 28 September 2017 Washington, DC 2017 SPLUNK INC. Agenda Protect Your Machine Data

More information

Using Splunk Enterprise To Optimize Tailored Long-term Data Retention

Using Splunk Enterprise To Optimize Tailored Long-term Data Retention Using Splunk Enterprise To Optimize Tailored Long-term Data Retention Tomasz Bania Incident Response Lead, Dolby Eric Krieser Splunk Professional Services September 2017 Washington, DC Forward-Looking

More information

Light IT Up! Better Monitoring in Splunk with Custom Actions, Search Commands and Dashboards JUSTIN BROWN

Light IT Up! Better Monitoring in Splunk with Custom Actions, Search Commands and Dashboards JUSTIN BROWN Light IT Up! Better Monitoring in Splunk with Custom Actions, Search Commands and Dashboards JUSTIN BROWN Pacific Northwest National Laboratory NLIT 2018 Light IT Up! Better Monitoring in Splunk with Custom

More information

Replication of summary data in indexer cluster

Replication of summary data in indexer cluster Copyright 2016 Splunk Inc. Replication of summary data in indexer cluster Dhruva Kumar Bhagi Sr. Software engineer Splunk Inc. Disclaimer During the course of this presentation, we may make forward looking

More information

Dragons and Splunk Do Not Do Well In Captivity

Dragons and Splunk Do Not Do Well In Captivity Dragons and Splunk Do Not Do Well In Captivity Tame Splunk Dragons Before Winter Comes Kyle Prins & Keith Quebodeaux DellEMC Splunk Ninjas September 2017 Washington, DC Forward-Looking Statements During

More information

Modernizing InfoSec Training and IT Operations at USF

Modernizing InfoSec Training and IT Operations at USF Modernizing InfoSec Training and IT Operations at USF Goodbye Tedious Tasks! A Novel Automation Framework Leveraging Splunk Tim Ip, Senior Security Engineer Nicholas Recchia, Director & Information Security

More information

Running Splunk Enterprise within Docker

Running Splunk Enterprise within Docker Running Splunk Enterprise within Docker Michael Clayfield Partner Consultant 03/09/2017 1.1 Forward-Looking Statements During the course of this presentation, we may make forward-looking statements regarding

More information

Splunking with Multiple Personalities

Splunking with Multiple Personalities Splunking with Multiple Personalities Extending Role Based Access Control to achieve fine grain security of your data Sabrina Lea Senior Sales Engineer, Splunk Shaun C Splunk Customer September 2017 Forward-Looking

More information

Tracking Logs at Zillow with Lookups & JIRA

Tracking Logs at Zillow with Lookups & JIRA Tracking Logs at Zillow with Lookups & JIRA Seth Thomas, Jon Wentworth September 27 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking statements

More information

Link-OS SDK for Xamarin README

Link-OS SDK for Xamarin README Link-OS SDK for Xamarin README This readme is specific to the LinkOS Xamarin SDK. This SDK is a Xamarin PCL in the plugin format. Also included in the files is a sample app showing use of specific APIs.

More information

GeIng Deeper Insights into your and Storage with Splunk

GeIng Deeper Insights into your and Storage with Splunk Copyright 2014 Splunk Inc. GeIng Deeper Insights into your Virtualiza@on and Storage with Splunk Stela Udovicic Sr. Product Marke@ng Manager, Splunk Michael Donnelly Senior SE, Virtualiza@on Technologies

More information

Splunking Your z/os Mainframe Introducing Syncsort Ironstream

Splunking Your z/os Mainframe Introducing Syncsort Ironstream Copyright 2016 Splunk Inc. Splunking Your z/os Mainframe Introducing Syncsort Ironstream Ed Hallock Director of Product Management, Syncsort Inc. Disclaimer During the course of this presentation, we may

More information

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies

Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies Dynamic What? I m Dynamic, Aren t You? Andrew Chapman & Sam Knutson VP Product Management CA Technologies March 13, 2014 Dynamic Data Center: Business Solutions on Demand Continuous Delivery Bring Your

More information

Dashboard Time Selection

Dashboard Time Selection Dashboard Time Selection Balancing flexibility with a series of system-crushing searches Chuck Gilbert Analyst, chuck_gilbert@comcast.com September 2017 Washington, DC Forward-Looking Statements During

More information

Accelera'on A+acks on PBKDF2

Accelera'on A+acks on PBKDF2 Accelera'on A+acks on PBKDF2 Or, what is inside the black- box of oclhashcat? Andrew Ruddick, UK Dr. Jeff Yan, Lancaster University, UK andrew.ruddick@hotmail.co.uk, jeff.yan@lancaster.ac.uk What is PBKDF2?

More information

HomeAway Let s Stay Together

HomeAway Let s Stay Together Copyright 2014 Splunk Inc. Splunk @ HomeAway Let s Stay Together René X. Parra So>ware Architect, HomeAway Disclaimer During the course of this presentakon, we may make forward- looking statements regarding

More information

HTTP Event Collector in Splunk 6.5 More Super Powers!

HTTP Event Collector in Splunk 6.5 More Super Powers! Copyright 2016 Splunk Inc. HTTP Event Collector in Splunk 6.5 More Super Powers! Itay Neeman Director of Engineering, Splunk Shakeel Mohamed SoJware Engineer, Splunk Disclaimer During the course of this

More information

NetFlow Optimizer. Overview. Version (Build ) May 2017

NetFlow Optimizer. Overview. Version (Build ) May 2017 NetFlow Optimizer Overview Version 2.4.9 (Build 2.4.9.0.3) May 2017 Copyright 2013-2017 NetFlow Logic Corporation. All rights reserved. Patents both issued and pending. Contents About NetFlow Optimizer...

More information

A Trip Through The Splunk Data Ingestion And Retrieval Pipeline

A Trip Through The Splunk Data Ingestion And Retrieval Pipeline A Trip Through The Splunk Data Ingestion And Retrieval Pipeline Harold Murn Senior Systems Engineer 2017-09-27 Washington, DC Forward-Looking Statements During the course of this presentation, we may make

More information

THE BANKING & FINTECH APP MARKET IN THE UNITED STATES

THE BANKING & FINTECH APP MARKET IN THE UNITED STATES THE BANKING & FINTECH APP MARKET IN THE UNITED STATES BENCHMARKS & ANALYSES JULY 2016 In partnership with 1 INTRODUCTION Rankings and trends in the US banking & FinTech app market According to a Federal

More information

Need for Speed: Unleashing the Power of SecOps with Adaptive Response. Malhar Shah CEO, Crest Data Systems Meera Shankar Alliance Manager, Splunk

Need for Speed: Unleashing the Power of SecOps with Adaptive Response. Malhar Shah CEO, Crest Data Systems Meera Shankar Alliance Manager, Splunk Need for Speed: Unleashing the Power of SecOps with Adaptive Response Malhar Shah CEO, Crest Data Systems Meera Shankar Alliance Manager, Splunk September 27, 2017 Washington, DC Forward-Looking Statements

More information

Monitoring Docker Containers with Splunk

Monitoring Docker Containers with Splunk Monitoring Docker Containers with Splunk Marc Chéné Product Manager Sept 27, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may make forward-looking statements

More information

Measuring HEC Performance For Fun and Profit

Measuring HEC Performance For Fun and Profit Measuring HEC Performance For Fun and Profit Itay Neeman Director, Engineering, Splunk Clif Gordon Principal Software Engineer, Splunk September 2017 Washington, DC Forward-Looking Statements During the

More information

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in Oracle Enterprise Manager 12c Sybase ASE Database Plug-in May 2015 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Cloud Computing. An introduction using MS Office 365, Google, Amazon, & Dropbox.

Cloud Computing. An introduction using MS Office 365, Google, Amazon, & Dropbox. Cloud Computing An introduction using MS Office 365, Google, Amazon, & Dropbox. THIS COURSE Will introduce the benefits and limitations of adopting cloud computing for your business. Will introduce and

More information

RHM Presentation. Maas 360 Mobile device management

RHM Presentation. Maas 360 Mobile device management RHM Presentation Maas 360 Mobile device management Strong adoption in the enterprise Manufacturing Financial Consumer Healthcare Public Others 2 Trusted by over 9,000 customers Recognized Industry Leadership

More information

Textual Domain- specific languages. Budapes( Műszaki és Gazdaságtudományi Egyetem Méréstechnika és Információs Rendszerek Tanszék

Textual Domain- specific languages. Budapes( Műszaki és Gazdaságtudományi Egyetem Méréstechnika és Információs Rendszerek Tanszék Textual Domain- specific languages Budapes( Műszaki és Gazdaságtudományi Egyetem Méréstechnika és Információs Rendszerek Tanszék Designing modeling languages! Metamodel: a model of models o Abstract syntax

More information

INSIDE CYBER-BALANCE SHEETS: A RARE WINDOW ON DIGITAL RISK IN THE BOARDROOM

INSIDE CYBER-BALANCE SHEETS: A RARE WINDOW ON DIGITAL RISK IN THE BOARDROOM SESSION ID: CXO-R14 INSIDE CYBER-BALANCE SHEETS: A RARE WINDOW ON DIGITAL RISK IN THE BOARDROOM Yve$e Connor Chief Risk Officer Focal Point Data Risk @connoryk Wade Baker, Ph.D. Founder, CyenDa InsDtute

More information

Keep Learning with Oracle University

Keep Learning with Oracle University Keep Learning with Oracle University Classroom Training Learning SubscripDon Live Virtual Class Training On Demand Cloud Technology ApplicaDons Industries educa7on.oracle.com 2 Session Surveys Help us

More information

Splunk For Google Analytics

Splunk For Google Analytics Copyright 2016 Splunk Inc. Splunk For Google Analytics Charles Adriaenssens, Business Analytics Lead Rory Blake, Staff PS Consultant Disclaimer During the course of this presentation, we may make forward

More information

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in Oracle Enterprise Manager 12c IBM DB2 Database Plug-in May 2015 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Introduction to Xamarin Cross Platform Mobile App Development

Introduction to Xamarin Cross Platform Mobile App Development Introduction to Xamarin Cross Platform Mobile App Development Summary: In this document, we talk about the unique ability to create native ios, Android, Mac and Windows apps using C# making Xamarin, a

More information

Converged security. Gerben Verstraete, CTO, HP Software Services Colin Henderson, Managing Principal, Enterprise Security Products

Converged security. Gerben Verstraete, CTO, HP Software Services Colin Henderson, Managing Principal, Enterprise Security Products Converged security Gerben Verstraete, CTO, HP Software Services Colin Henderson, Managing Principal, Enterprise Security Products Increased risk and wasted resources Gartner estimates more than $1B in

More information

Android About.me/DavidCorrado Mobile Meetup Organizer

Android About.me/DavidCorrado Mobile Meetup Organizer Android Tips/Tricks @DavidCorrado About.me/DavidCorrado Mobile Meetup Organizer IDE Don t Use Eclipse Use either Android Studio/IntelliJ They are basically the same thing. They are both built off of IntelliJ

More information

Introduction to Visual Studio App Center. RYAN DAVIS Queensland C# Mobile Developers Meetup

Introduction to Visual Studio App Center. RYAN DAVIS Queensland C# Mobile Developers Meetup Introduction to Visual Studio App Center RYAN DAVIS Queensland C# Mobile Developers Meetup 2018 02 27 whoami Ryan Davis Hobby Developer,.NET and mobile Xamarin Microsoft MVP ryandavis.io rdavis_au rdavisau

More information

Kony MobileFabric. Release Notes. On-Premises. Release 6.5. Document Relevance and Accuracy

Kony MobileFabric. Release Notes. On-Premises. Release 6.5. Document Relevance and Accuracy Kony MobileFabric Release Notes On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on

More information

2 days - Seminar and Workshop DAY 1. Day 1 - Architecture of a Embedded/Real-time Systems Day 2 - Architecture Evolution in Products-Line

2 days - Seminar and Workshop DAY 1. Day 1 - Architecture of a Embedded/Real-time Systems Day 2 - Architecture Evolution in Products-Line אילטם - איגוד משתמשים בטכנולוגיות מתקדמות במערכות משולבות עתירות ידע )ע"ר ) 2 days - Seminar and Workshop DAY 1 Engineering Software and System Architectures Day 1 - Architecture of a Embedded/Real-time

More information

Introduction to Cloud Networking. Company and Product Overview

Introduction to Cloud Networking. Company and Product Overview Introduction to Cloud Networking Company and Product Overview About Meraki, part of Cisco Leader in cloud networking: 20,000+ customer networks deployed - Founded in 2006 at MIT - tradition of innovation

More information

Salesforce Get Started With Communities Adm271

Salesforce Get Started With Communities Adm271 We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with salesforce get started

More information

Distributed Systems. Peer- to- Peer. Rik Sarkar. University of Edinburgh Fall 2014

Distributed Systems. Peer- to- Peer. Rik Sarkar. University of Edinburgh Fall 2014 Distributed Systems Peer- to- Peer Rik Sarkar University of Edinburgh Fall 2014 Peer to Peer The common percepdon A system for distribudng (sharing?) files Using the computers of common users (instead

More information

Building Search Based Applications

Building Search Based Applications Building Search Based Applications Introduction Sushil Prabhu Chief Executive Officer, OpenCrowd Stephen Coursen Director of Engineering, OpenCrowd 2 Agenda What are Search Based Applications? How can

More information

Agilent GeneSpring Software

Agilent GeneSpring Software Agilent GeneSpring Software Installation Guide Quick Start Installation of Agilent GeneSpring 3 Detailed Instructions for Installing Agilent GeneSpring 5 Managing Licenses 19 Upgrading Agilent GeneSpring

More information

Understanding and Using Fields

Understanding and Using Fields Copyright 2015 Splunk Inc. Understanding and Using Fields Jesse Miller Product Manager, Splunk Clara Lee SoCware Engineer, Splunk Disclaimer During the course of this presentaion, we may make forward looking

More information

CS371m - Mobile Computing. Persistence - Web Based Storage CHECK OUT g/sync-adapters/index.

CS371m - Mobile Computing. Persistence - Web Based Storage CHECK OUT   g/sync-adapters/index. CS371m - Mobile Computing Persistence - Web Based Storage CHECK OUT https://developer.android.com/trainin g/sync-adapters/index.html The Cloud. 2 Backend No clear definition of backend front end - user

More information

Definitions English Version Axway Global. English Version. Definitions. Version 1.0 of Thursday, February 09, 2017 Status: final

Definitions English Version Axway Global. English Version. Definitions. Version 1.0 of Thursday, February 09, 2017 Status: final Definitions Version 1.0 of Thursday, February 09, 2017 Status: final Axway, 2017 / Version February 2017 Analytics Event Appcelerator Dashboard Application Arrow Admin seat Arrow Developper seat Arrow

More information

FAQ for Autodesk A360 and its tiers A360 Team, A360 Drive and the Tech Preview

FAQ for Autodesk A360 and its tiers A360 Team, A360 Drive and the Tech Preview Autodesk A360 FAQ for Autodesk A360 and its tiers A360 Team, A360 Drive and the Tech Preview Table of contents 1. General product information 2 1.1 What is Autodesk A360? 2 1.2 What is Autodesk A360 Team?

More information

TIBCO Spotfire Statement of Direction. Spotfire Product Management

TIBCO Spotfire Statement of Direction. Spotfire Product Management TIBCO Spotfire Statement of Direction Spotfire Product Management CONFIDENTIALITY The following information is confidential information of TIBCO Software Inc. Use, duplication, transmission, or republication

More information

Welcome to Applause! Table of Contents: Welcome to Mobile Beta Management

Welcome to Applause! Table of Contents: Welcome to Mobile Beta Management Welcome to Applause! Your success is our priority and we want to make sure Mobile Beta Management (MBM) enables you to execute successful beta programs. This Getting Started Guide is designed to familiarize

More information

Agilent GeneSpring Software

Agilent GeneSpring Software Agilent GeneSpring Software Installation Guide Quick Start Installation of Agilent GeneSpring 3 Detailed Instructions for Installing Agilent GeneSpring 5 Managing Licenses 16 Upgrading Agilent GeneSpring

More information

ITP 342 Mobile App Development. APIs

ITP 342 Mobile App Development. APIs ITP 342 Mobile App Development APIs API Application Programming Interface (API) A specification intended to be used as an interface by software components to communicate with each other An API is usually

More information

Mint Getting Started Guide for Financial Institutions. Financial Institution Support OFX Connectivity Group

Mint Getting Started Guide for Financial Institutions. Financial Institution Support OFX Connectivity Group Mint Getting Started Guide for Financial Institutions Financial Institution Support OFX Connectivity Group Table of Contents MINT GETTING STARTED GUIDE... 3 ABOUT THIS GUIDE... 3 ABOUT MINT... 4 WHAT IS

More information

Best Practices and Better Practices for Users

Best Practices and Better Practices for Users Best Practices and Better Practices for Users while you get settled Latest Slides: https://splunk.box.com/v/blueprints-practices-user Collaborate: #bestpractices Sign Up @ http://splk.it/slack Load Feedback

More information

Adding Depth to Dashboards

Adding Depth to Dashboards Copyright 2015 Splunk Inc. Adding Depth to Dashboards Pierre Brunel Splunk Disclaimer During the course of this presentacon, we may make forward looking statements regarding future events or the expected

More information

Oracle Mobile Hub. Complete Mobile Platform

Oracle Mobile Hub. Complete Mobile Platform Oracle Mobile Hub Mobile is everywhere and has changed nearly every facet of our lives. The way we work, play, socialize and interact with one another have all been revolutionized by mobile devices. More

More information

Inside Secrets From Support- How to Solve the Top 10 Support Issues

Inside Secrets From Support- How to Solve the Top 10 Support Issues Copyright 2014 Splunk Inc. Inside Secrets From Support- How to Solve the Top 10 Support Issues Barak Reeves Sales Engineer, Splunk Todd Gow Sales Engineer, Splunk Disclaimer During the course of this presentajon,

More information

Q: Where can we see the past recorded webinars? A: Much content of this nature may be found online at:

Q: Where can we see the past recorded webinars? A: Much content of this nature may be found online at: Q: Can I get a recording of the Webinar and / or a copy of the slides? A: Yes! Webinar and slides are both are available at: https://developer.salesforce.com/events/webinars/coding_in_app_cloud Q: Is there

More information

Amp Up Troubleshooting Effectiveness with Free Genesys Care Tools. Marc Picard & Zenon Marsh Genesys Care Infrastructure and Tools

Amp Up Troubleshooting Effectiveness with Free Genesys Care Tools. Marc Picard & Zenon Marsh Genesys Care Infrastructure and Tools Amp Up Troubleshooting Effectiveness with Free Genesys Care Tools Marc Picard & Zenon Marsh Genesys Care Infrastructure and Tools Information gathering Various data sources Genesys Care Tools and Services

More information

Citizen developer tools are not just for citizen developers!

Citizen developer tools are not just for citizen developers! Citizen developer tools are not just for citizen developers! a.k.a Using Azure Functions and Cognitive Services Text API to enrich a Flow that fills Metadata for new items in a Modern SharePoint Team Site

More information

RELEASE NOTES. Overview: Introducing ForeSee CX Suite

RELEASE NOTES. Overview: Introducing ForeSee CX Suite RELEASE NOTES Overview: Introducing ForeSee CX Suite FALL 2016 CONTENTS Overview of ForeSee CX Suite...4 First Release of CX Suite... 4 The Login Page... 4 Dashboards... 4 Surveys... 5 Cases... 5 Text

More information

What s New with SpaDal and Graph?

What s New with SpaDal and Graph? What s New with SpaDal and Graph? Technologies to Be.er Understand Complex Rela8onships Jim Steiner Vice President, Product Management Server Technologies January, 2016 Copyright 2014, Oracle and/or its

More information

Adobe Marketing Cloud Adobe Mobile Services

Adobe Marketing Cloud Adobe Mobile Services Adobe Marketing Cloud Adobe Mobile Services Contents Release Notes...5 Adobe Mobile Services...6 Getting Started...8 Roles and Permissions...11 Signing In...14 Report Types...15 Mobile Metrics...20 Display

More information

Essentials to creating your own Security Posture using Splunk Enterprise

Essentials to creating your own Security Posture using Splunk Enterprise Essentials to creating your own Security Posture using Splunk Enterprise Using Splunk to maximize the efficiency and effectiveness of the SOC / IR Richard W. McKee, MS-ISA, CISSP Principal Cyber Security

More information

What is Savvius Insight? Why Savvius Insight?

What is Savvius Insight? Why Savvius Insight? What is Savvius Insight?..................................................... 2 Why Savvius Insight?........................................................ 2 What software is inside Savvius Insight?.....................................

More information