SlideShare a Scribd company logo
1 of 47
Download to read offline
Sumo Logic Confidential
QuickStart Webinar
Getting Started with Sumo Logic
Mario Sánchez
September 2015
Sumo Logic Confidential
Agenda
  What is Sumo Logic?
  Key Points Regarding Data Collection
  Searching, Parsing and Analyzing Data
  Visualizing and Monitoring - Dashboards
  Introduction to Library and Apps
  Introduction to Performance Tools
Sumo Logic Confidential
What is Sumo Logic?
Sumo Logic Confidential
From Data to Decisions
DEVOPS IT INFRASTRUCTURE
AND OPERATIONS
COMPLIANCE AND
SECURITY
DEVOPS
Streamline continuous
delivery
Monitor KPI’s and
Metrics
Accelerate
Troubleshooting
IT INFRASTRUCTURE
AND OPERATIONS
Monitor all workloads
Troubleshoot and
increase uptime
Simplify, Modernize,
and save costs
COMPLIANCE AND
SECURITY
Automate and
demonstrate compliance
Audit all systems
Think beyond rules
Sumo Logic Cloud Analytics Service
Sumo Logic Confidential
The Sumo Logic Service
DEVOPS
IT INFRASTRUCTURE
AND OPERATIONS
COMPLIANCE AND
SECURITY
Collect and Centralize: Effortlessly collect terabytes of data from anywhere
Search and Analyze: Run searches and correlate events in real-time
Detect and Predict: Detect outliers and deviations to uncover the unknowns
Monitor and Visualize: Easily monitor and visualize your data in real-time
Alert and Notify: Proactively notifies you when specific events are identified
Sumo Logic Confidential
Securing your Data
Compliance and Certifications on top of AWS Security
•  PCI/DSS 3.0 Service Provider Level 1 Certified
•  AES 256-bit encryption at rest
•  SSL encryption in transit
•  U.S. – E.U. Safe Harbor attestation
•  SOC 2, Type II attestation
•  HIPAA compliant
•  FIPS 140 compliant
Resource: https://www.sumologic.com/resource/white-paper/securing-the-sumo-logic-service/
Sumo Logic Confidential
Enterprise Logs are Everywhere
Custom App
Code
Server / OS
Virtual
Databases
Network
Open
Source
Middleware
Content
Delivery
IaaS,
PaaS
SaaS Security
Sumo Logic Confidential
High-Level Data Flow
Sumo Logic Confidential
Sumo Logic Data Flow
Data Collection Search & Analyze Visualize & Monitor
Alerts
Dashboards
Collectors
Sources
Operators
Charts
1 2 3
Sumo Logic Confidential
Data Collection
Sumo Logic Confidential
Host A
Collectors and Sources
Apache Security
Apache Performance
Collector
A Host B
Collector
B Host C
Collector
C
Apache Security
Apache Performance
IIS Logs
IIS W3C Logs
Sumo Logic Confidential
Metadata Fields
Name Description
_collector Name of the collector this data came from
_source Name of the source this data came through
_sourceHost Hostname of the server this data came from
_sourceName Name of the log file (including path)
_sourceCategory Category designation of source data
Tags added to your messages when data is collected
Host A
Apache Security
Apache Performance
Collector
A
Sumo Logic Confidential
Host A
Metadata Field Usage
Apache Security
_sourceCategory =
WS/Apache/Access
Apache Performance
_sourceCategory =
WS/Apache/Performance
Collector
A Host B
Collector
B Host C
Collector
C
Apache Security
_sourceCategory =
WS/Apache/Access
Apache Performance
_sourceCategory =
WS/Apache/Performance
IIS Logs
_sourceCategory =
WS/IIS
IIS W3C Logs
_sourceCategory =
WS/IIS/W3C
Sample Searches for
_sourceCategory:
= WS/Apache/Access
= WS/Apache/*
= WS/*
Sumo Logic Confidential
Source Category Naming Convention
  Simplifies Search Syntax and Scope Definitions
  Used for other Sumo Logic features
  Role-Based Access Control (Data Provisioning)
  Partitioning (Search Optimization Tool)
  Adopt a Robust Naming Convention Early
  Ex: Prod/Sumo/Apache/Access à Env/Customer/Device/MessageType
  Ex: OS/Windows/2012/Messages à Device/Vendor/Version/MessageType
Blog Post: Good SourceCategory, Bad SourceCategory
Sumo Logic Confidential
Search and Analyze
Sumo Logic Confidential
Set your
Preferences
Set your Session
Timeout
Query Editing
versus Running
Sumo Logic Confidential
Search Basics Overview
Time Range
Histogram
Search Bar
Search Results
Display Options
Sumo Logic Confidential
Enter keywords and operators (separated by |) that build on top of each other
Syntax:
keyword | parse | where | group by | sort | limit
Example:
_sourceCategory=Apache/Access and GET
| parse "GET * HTTP/1.1" * * "*"" as url, status_code, size, referrer
| where !(status_code = 200 and status_code=304)
| count by status_code
| sort by status_code asc
Search Syntax Flow
Results
where
metadata
keyword
Sumo Logic Confidential
Full-text search expressions enable you to search for multiple terms and logical expressions
–  Case insensitive
–  Wildcard support
–  Metadata field
–  Boolean logic
•  Complete (AND/OR)
•  Implicit AND
Keyword Expression
Sumo Logic Confidential
•  The data available to your search request is determined by the selected time range.
–  Pre-populated
•  Last 15 min, Last 3 Hrs, Today
–  Absolute
•  12:25 12:30
•  8/11 12:00 8/11 13:00
–  Relative
•  -5m
•  -2h
•  -2h -1h
Time Range
Sumo Logic Confidential
(Error* OR fail* OR except*) AND _sourceCategory=*apache*
Syntax Example 1: Boolean logic, wildcards and metadata
Sumo Logic Confidential
(_sourceCategory=Apache/Access AND !"Macintosh; Intel Mac OS X 10_6_8") AND
*GET
Syntax Example 2: Exact String Matching
Sumo Logic Confidential
Refining Results by Surrounding Messages
Sumo Logic Confidential
•  LogReduce uses fuzzy logic and soft matching to cluster messages providing quick
investigation view into your environment.
(Error OR fail*) | summarize
Looking for the Unknown
Sumo Logic Confidential
•  LogReduce uses fuzzy logic and soft matching to cluster messages providing quick
investigation view into your environment.
(Error OR fail*) | summarize
•  Influencing the outcome
Looking for the Unknown
Sumo Logic Confidential
Sumo Logic Confidential
•  Identify unexpectedly high or low values …
|timeslice 1m
|count by _timeslice
|outlier _count
Finding Outliers
Sumo Logic Confidential
–  Timeslices are required
–  Adjustable variables allow you to get the right sensitivity
•  Threshold
–  Number of rolling stddev above/below the moving average
–  Default: 3
•  Consecutive
–  Number of consecutive points above/below the threshold to trigger
–  Default: 1
•  Direction
–  Detect high values, low values or both
–  Default: Both
•  Window
–  Number of trailing timeslices used to calculate
–  Default: 10
Finding Outliers (continued)
Sumo Logic Confidential
•  Parsing enables a user to extract parts of a message and classify them as fields.
–  A specific key/value you want to extract
–  Enables you to perform additional operations
•  Logical/conditional – based on values
•  Mathematical – operations on value sets
•  Ways of defining fields
–  Parse anchor: leverages start and stop anchors
–  Parse regex: extracts nested information via regexField extraction
Extracting Additional Labels/Fields
Sumo Logic Confidential
•  Single field example
Parse Anchor Using the UI
Sumo Logic Confidential
•  The count Operator enables you to group messages that match a classification
–  No Group: provides a total message count
•  Ex: * | count
•  Ex: : * | count as mycount
The count operator
Sumo Logic Confidential
•  Dissecting your result sets using metadata fields
–  Ability to aggregate results sets and grouping them by metadata fields
•  EX: _collector=*apache* | count by _sourceCategory
–  Get a count of grouped result sets
•  Ex: (Error OR fail*)| count by _sourcecategory , _sourcehost
–  Organize Results by Count
•  Ex: _collector=*apache*| count by _sourceCategory | sort by _count
Leveraging Metadata for grouping
Sumo Logic Confidential
•  Timeslice operator enables you to segment your results by time buckets
–  Minute (timeslice by 5m)
–  Hour (timeslice by 1h)
–  Day (timeslice by 1d)
Time-based Grouping
Sumo Logic Confidential
Visualize and Monitor
Sumo Logic Confidential
•  Collection of Monitors that provide graphical representation of data
–  Each Monitor processes results of a search for display
–  Drilldown for additional analysis
•  Drill to another dashboard
•  Drill into the query behind the dashboard
Introduction to Dashboards
Sumo Logic Confidential
•  Chart Types
–  Table
–  Bar
–  Column
–  Line
–  Area
–  Pie
–  Box Plot
–  Google Maps
–  Single Value
Providing Context through Visualization
Sumo Logic Confidential
–  Live Dashboards
•  Provides a live stream of data
•  No back filling of data
–  Interactive Dashboards
•  Search based (On-Demand)
•  Backfilling of data
•  Support Filtering
Dashboard Types
No
Interaction
Ability to use
Pre-defined
filters
Sumo Logic Confidential
Live Dashboards versus Interactive Dashboards
Sumo Logic Confidential
Dashboards - Adding a Panel
1. Perform your
Search
2. Format your
Results
3. Create a
Panel
Sumo Logic Confidential
Jumpstart with Apps
Sumo Logic Confidential
Installing Applications
Sumo Logic Confidential
Managing Performance
Sumo Logic Confidential
Factors in Search Performance
  Query Structure
  Time range
  Data Selectivity (keywords, metadata, where statements)
  Heavy Operations (join, transaction, summarize)
  Overall Data Volume
  System load
  Improve search experience using Optimization Tools
Sumo Logic Confidential
Search Optimization Tools
  Partitions
 Separate index for searching over a smaller data set
  Scheduled Views
 Pre-aggregating data for fast counts/sums over longer time ranges
  Field Extraction Rules
 Parse the data on ingest rather than run-time; simplifies searches
 Take advantage of interactive dashboard filters
Sumo Logic Confidential
Questions?
Additional Resources
  Search Online Documentation
  Search/Post to Community Forums
  Search, post, respond
  Submit/vote for feature requests
  Submit Tips & Tricks
  Open a Support Case
  Sumo Logic Services
  Customer Success, Professional Services, Training
Sumo Logic Confidential
Helpful Links
Support Portal, Documentation, Community Forums, Feature Requests
https://support.sumologic.com/home (Help -> Support from SL Service)
Resources (Whitepapers, videos, screencasts)
https://www.sumologic.com/resource/
Blog Posts
https://www.sumologic.com/blog/
Services
customer-success@sumologic.com
Sumo Logic Confidential
Feature Spotlight Series:
How TuneIn uses Outlier Detection and Predictive Analytics
Sep 22, 2015, 10am Pacific
Register Now
“How To” Webinars:
Optimizing Your Search Experience
Sep 23, 2015, 10am Pacific
Register Now
Sumo Logic Confidential
Thank you!

More Related Content

What's hot

"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo Logic"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo LogicSumo Logic
 
Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018Sumo Logic
 
Sumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic
 
Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Sumo Logic
 
Welcome Webinar Slides
Welcome Webinar SlidesWelcome Webinar Slides
Welcome Webinar SlidesSumo Logic
 
Sumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic
 
Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018Sumo Logic
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic
 
Sumo Logic "How To" Webinar: Apps
Sumo Logic "How To" Webinar: AppsSumo Logic "How To" Webinar: Apps
Sumo Logic "How To" Webinar: AppsSumo Logic
 
Welcome Webinar PDF
Welcome Webinar PDFWelcome Webinar PDF
Welcome Webinar PDFSumo Logic
 
Setting Up Sumo Logic - Sep 2017
Setting Up Sumo Logic -  Sep 2017Setting Up Sumo Logic -  Sep 2017
Setting Up Sumo Logic - Sep 2017mariosany
 
Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic
 
How to Webinar: Sumo Logic Dashboards
How to Webinar: Sumo Logic DashboardsHow to Webinar: Sumo Logic Dashboards
How to Webinar: Sumo Logic DashboardsSumo Logic
 
Relevance in the Wild - Daniel Gomez Vilanueva, Findwise
Relevance in the Wild - Daniel Gomez Vilanueva, FindwiseRelevance in the Wild - Daniel Gomez Vilanueva, Findwise
Relevance in the Wild - Daniel Gomez Vilanueva, FindwiseLucidworks
 
Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...
Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...
Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...Lucidworks
 
Building a real time big data analytics platform with solr
Building a real time big data analytics platform with solrBuilding a real time big data analytics platform with solr
Building a real time big data analytics platform with solrTrey Grainger
 
Real Time Indexing and Search - Ashwani Kapoor & Girish Gudla, Trulia
Real Time Indexing and Search - Ashwani Kapoor & Girish Gudla, TruliaReal Time Indexing and Search - Ashwani Kapoor & Girish Gudla, Trulia
Real Time Indexing and Search - Ashwani Kapoor & Girish Gudla, TruliaLucidworks
 
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020Alex Thissen
 
Boosting Documents in Solr by Recency, Popularity, and User Preferences
Boosting Documents in Solr by Recency, Popularity, and User PreferencesBoosting Documents in Solr by Recency, Popularity, and User Preferences
Boosting Documents in Solr by Recency, Popularity, and User PreferencesLucidworks (Archived)
 

What's hot (20)

"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo Logic"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo Logic
 
Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018
 
Sumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get Certified
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016
 
Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018
 
Welcome Webinar Slides
Welcome Webinar SlidesWelcome Webinar Slides
Welcome Webinar Slides
 
Sumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics Mastery
 
Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016
 
Sumo Logic "How To" Webinar: Apps
Sumo Logic "How To" Webinar: AppsSumo Logic "How To" Webinar: Apps
Sumo Logic "How To" Webinar: Apps
 
Welcome Webinar PDF
Welcome Webinar PDFWelcome Webinar PDF
Welcome Webinar PDF
 
Setting Up Sumo Logic - Sep 2017
Setting Up Sumo Logic -  Sep 2017Setting Up Sumo Logic -  Sep 2017
Setting Up Sumo Logic - Sep 2017
 
Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016
 
How to Webinar: Sumo Logic Dashboards
How to Webinar: Sumo Logic DashboardsHow to Webinar: Sumo Logic Dashboards
How to Webinar: Sumo Logic Dashboards
 
Relevance in the Wild - Daniel Gomez Vilanueva, Findwise
Relevance in the Wild - Daniel Gomez Vilanueva, FindwiseRelevance in the Wild - Daniel Gomez Vilanueva, Findwise
Relevance in the Wild - Daniel Gomez Vilanueva, Findwise
 
Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...
Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...
Evolving The Optimal Relevancy Scoring Model at Dice.com: Presented by Simon ...
 
Building a real time big data analytics platform with solr
Building a real time big data analytics platform with solrBuilding a real time big data analytics platform with solr
Building a real time big data analytics platform with solr
 
Real Time Indexing and Search - Ashwani Kapoor & Girish Gudla, Trulia
Real Time Indexing and Search - Ashwani Kapoor & Girish Gudla, TruliaReal Time Indexing and Search - Ashwani Kapoor & Girish Gudla, Trulia
Real Time Indexing and Search - Ashwani Kapoor & Girish Gudla, Trulia
 
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
 
Boosting Documents in Solr by Recency, Popularity, and User Preferences
Boosting Documents in Solr by Recency, Popularity, and User PreferencesBoosting Documents in Solr by Recency, Popularity, and User Preferences
Boosting Documents in Solr by Recency, Popularity, and User Preferences
 

Similar to Sumo Logic QuickStart Webinar

Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic
 
Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic
 
Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic
 
Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016Sumo Logic
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic
 
Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic
 
Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Sumo Logic
 
Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Sumo Logic
 
Sumo Logic Cert Jam - Administration
Sumo Logic Cert Jam - AdministrationSumo Logic Cert Jam - Administration
Sumo Logic Cert Jam - AdministrationSumo Logic
 
Sumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - FundamentalsSumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - FundamentalsSumo Logic
 
Sumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic
 
Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)Sumo Logic
 
Sumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with KubernetesSumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with KubernetesSumo Logic
 
Microsoft Sentinel Deployment V1.pptx
Microsoft Sentinel Deployment V1.pptxMicrosoft Sentinel Deployment V1.pptx
Microsoft Sentinel Deployment V1.pptxsaadatali65
 
Observability with Spring-based distributed systems
Observability with Spring-based distributed systemsObservability with Spring-based distributed systems
Observability with Spring-based distributed systemsRakuten Group, Inc.
 
Log Data Analysis Platform by Valentin Kropov
Log Data Analysis Platform by Valentin KropovLog Data Analysis Platform by Valentin Kropov
Log Data Analysis Platform by Valentin KropovSoftServe
 
Log Data Analysis Platform
Log Data Analysis PlatformLog Data Analysis Platform
Log Data Analysis PlatformValentin Kropov
 
Machine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and MetricsMachine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and MetricsSumo Logic
 

Similar to Sumo Logic QuickStart Webinar (20)

Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016
 
Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016
 
Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016
 
Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017
 
Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016
 
Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017
 
Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017
 
Sumo Logic Cert Jam - Administration
Sumo Logic Cert Jam - AdministrationSumo Logic Cert Jam - Administration
Sumo Logic Cert Jam - Administration
 
Sumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - FundamentalsSumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - Fundamentals
 
Sumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & Compliance
 
Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)
 
Sumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with KubernetesSumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with Kubernetes
 
Microsoft Sentinel Deployment V1.pptx
Microsoft Sentinel Deployment V1.pptxMicrosoft Sentinel Deployment V1.pptx
Microsoft Sentinel Deployment V1.pptx
 
Internals of Presto Service
Internals of Presto ServiceInternals of Presto Service
Internals of Presto Service
 
Observability with Spring-based distributed systems
Observability with Spring-based distributed systemsObservability with Spring-based distributed systems
Observability with Spring-based distributed systems
 
Log Data Analysis Platform by Valentin Kropov
Log Data Analysis Platform by Valentin KropovLog Data Analysis Platform by Valentin Kropov
Log Data Analysis Platform by Valentin Kropov
 
Log Data Analysis Platform
Log Data Analysis PlatformLog Data Analysis Platform
Log Data Analysis Platform
 
Machine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and MetricsMachine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and Metrics
 

More from Sumo Logic

Sumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with KubernetesSumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with KubernetesSumo Logic
 
Sumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic
 
Sumo Logic Cert Jam - Security Analytics
Sumo Logic Cert Jam - Security AnalyticsSumo Logic Cert Jam - Security Analytics
Sumo Logic Cert Jam - Security AnalyticsSumo Logic
 
Sumo Logic Cert Jam - Search Mastery
Sumo Logic Cert Jam - Search MasterySumo Logic Cert Jam - Search Mastery
Sumo Logic Cert Jam - Search MasterySumo Logic
 
Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic
 
You Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOpsYou Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOpsSumo Logic
 
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic WebinarMaking the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic WebinarSumo Logic
 
Scaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern ApplicationScaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern ApplicationSumo Logic
 
Sumo Logic Search Job API
Sumo Logic Search Job APISumo Logic Search Job API
Sumo Logic Search Job APISumo Logic
 
Bring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo LogicBring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo LogicSumo Logic
 
Sumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic
 

More from Sumo Logic (11)

Sumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with KubernetesSumo Logic Cert Jam - Advanced Metrics with Kubernetes
Sumo Logic Cert Jam - Advanced Metrics with Kubernetes
 
Sumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics Mastery
 
Sumo Logic Cert Jam - Security Analytics
Sumo Logic Cert Jam - Security AnalyticsSumo Logic Cert Jam - Security Analytics
Sumo Logic Cert Jam - Security Analytics
 
Sumo Logic Cert Jam - Search Mastery
Sumo Logic Cert Jam - Search MasterySumo Logic Cert Jam - Search Mastery
Sumo Logic Cert Jam - Search Mastery
 
Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)
 
You Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOpsYou Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOps
 
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic WebinarMaking the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
 
Scaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern ApplicationScaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern Application
 
Sumo Logic Search Job API
Sumo Logic Search Job APISumo Logic Search Job API
Sumo Logic Search Job API
 
Bring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo LogicBring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo Logic
 
Sumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled Searches
 

Recently uploaded

The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaHanief Utama
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 

Recently uploaded (20)

The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
React Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief UtamaReact Server Component in Next.js by Hanief Utama
React Server Component in Next.js by Hanief Utama
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 

Sumo Logic QuickStart Webinar

  • 1. Sumo Logic Confidential QuickStart Webinar Getting Started with Sumo Logic Mario Sánchez September 2015
  • 2. Sumo Logic Confidential Agenda   What is Sumo Logic?   Key Points Regarding Data Collection   Searching, Parsing and Analyzing Data   Visualizing and Monitoring - Dashboards   Introduction to Library and Apps   Introduction to Performance Tools
  • 4. Sumo Logic Confidential From Data to Decisions DEVOPS IT INFRASTRUCTURE AND OPERATIONS COMPLIANCE AND SECURITY DEVOPS Streamline continuous delivery Monitor KPI’s and Metrics Accelerate Troubleshooting IT INFRASTRUCTURE AND OPERATIONS Monitor all workloads Troubleshoot and increase uptime Simplify, Modernize, and save costs COMPLIANCE AND SECURITY Automate and demonstrate compliance Audit all systems Think beyond rules Sumo Logic Cloud Analytics Service
  • 5. Sumo Logic Confidential The Sumo Logic Service DEVOPS IT INFRASTRUCTURE AND OPERATIONS COMPLIANCE AND SECURITY Collect and Centralize: Effortlessly collect terabytes of data from anywhere Search and Analyze: Run searches and correlate events in real-time Detect and Predict: Detect outliers and deviations to uncover the unknowns Monitor and Visualize: Easily monitor and visualize your data in real-time Alert and Notify: Proactively notifies you when specific events are identified
  • 6. Sumo Logic Confidential Securing your Data Compliance and Certifications on top of AWS Security •  PCI/DSS 3.0 Service Provider Level 1 Certified •  AES 256-bit encryption at rest •  SSL encryption in transit •  U.S. – E.U. Safe Harbor attestation •  SOC 2, Type II attestation •  HIPAA compliant •  FIPS 140 compliant Resource: https://www.sumologic.com/resource/white-paper/securing-the-sumo-logic-service/
  • 7. Sumo Logic Confidential Enterprise Logs are Everywhere Custom App Code Server / OS Virtual Databases Network Open Source Middleware Content Delivery IaaS, PaaS SaaS Security
  • 9. Sumo Logic Confidential Sumo Logic Data Flow Data Collection Search & Analyze Visualize & Monitor Alerts Dashboards Collectors Sources Operators Charts 1 2 3
  • 11. Sumo Logic Confidential Host A Collectors and Sources Apache Security Apache Performance Collector A Host B Collector B Host C Collector C Apache Security Apache Performance IIS Logs IIS W3C Logs
  • 12. Sumo Logic Confidential Metadata Fields Name Description _collector Name of the collector this data came from _source Name of the source this data came through _sourceHost Hostname of the server this data came from _sourceName Name of the log file (including path) _sourceCategory Category designation of source data Tags added to your messages when data is collected Host A Apache Security Apache Performance Collector A
  • 13. Sumo Logic Confidential Host A Metadata Field Usage Apache Security _sourceCategory = WS/Apache/Access Apache Performance _sourceCategory = WS/Apache/Performance Collector A Host B Collector B Host C Collector C Apache Security _sourceCategory = WS/Apache/Access Apache Performance _sourceCategory = WS/Apache/Performance IIS Logs _sourceCategory = WS/IIS IIS W3C Logs _sourceCategory = WS/IIS/W3C Sample Searches for _sourceCategory: = WS/Apache/Access = WS/Apache/* = WS/*
  • 14. Sumo Logic Confidential Source Category Naming Convention   Simplifies Search Syntax and Scope Definitions   Used for other Sumo Logic features   Role-Based Access Control (Data Provisioning)   Partitioning (Search Optimization Tool)   Adopt a Robust Naming Convention Early   Ex: Prod/Sumo/Apache/Access à Env/Customer/Device/MessageType   Ex: OS/Windows/2012/Messages à Device/Vendor/Version/MessageType Blog Post: Good SourceCategory, Bad SourceCategory
  • 16. Sumo Logic Confidential Set your Preferences Set your Session Timeout Query Editing versus Running
  • 17. Sumo Logic Confidential Search Basics Overview Time Range Histogram Search Bar Search Results Display Options
  • 18. Sumo Logic Confidential Enter keywords and operators (separated by |) that build on top of each other Syntax: keyword | parse | where | group by | sort | limit Example: _sourceCategory=Apache/Access and GET | parse "GET * HTTP/1.1" * * "*"" as url, status_code, size, referrer | where !(status_code = 200 and status_code=304) | count by status_code | sort by status_code asc Search Syntax Flow Results where metadata keyword
  • 19. Sumo Logic Confidential Full-text search expressions enable you to search for multiple terms and logical expressions –  Case insensitive –  Wildcard support –  Metadata field –  Boolean logic •  Complete (AND/OR) •  Implicit AND Keyword Expression
  • 20. Sumo Logic Confidential •  The data available to your search request is determined by the selected time range. –  Pre-populated •  Last 15 min, Last 3 Hrs, Today –  Absolute •  12:25 12:30 •  8/11 12:00 8/11 13:00 –  Relative •  -5m •  -2h •  -2h -1h Time Range
  • 21. Sumo Logic Confidential (Error* OR fail* OR except*) AND _sourceCategory=*apache* Syntax Example 1: Boolean logic, wildcards and metadata
  • 22. Sumo Logic Confidential (_sourceCategory=Apache/Access AND !"Macintosh; Intel Mac OS X 10_6_8") AND *GET Syntax Example 2: Exact String Matching
  • 23. Sumo Logic Confidential Refining Results by Surrounding Messages
  • 24. Sumo Logic Confidential •  LogReduce uses fuzzy logic and soft matching to cluster messages providing quick investigation view into your environment. (Error OR fail*) | summarize Looking for the Unknown
  • 25. Sumo Logic Confidential •  LogReduce uses fuzzy logic and soft matching to cluster messages providing quick investigation view into your environment. (Error OR fail*) | summarize •  Influencing the outcome Looking for the Unknown Sumo Logic Confidential
  • 26. Sumo Logic Confidential •  Identify unexpectedly high or low values … |timeslice 1m |count by _timeslice |outlier _count Finding Outliers
  • 27. Sumo Logic Confidential –  Timeslices are required –  Adjustable variables allow you to get the right sensitivity •  Threshold –  Number of rolling stddev above/below the moving average –  Default: 3 •  Consecutive –  Number of consecutive points above/below the threshold to trigger –  Default: 1 •  Direction –  Detect high values, low values or both –  Default: Both •  Window –  Number of trailing timeslices used to calculate –  Default: 10 Finding Outliers (continued)
  • 28. Sumo Logic Confidential •  Parsing enables a user to extract parts of a message and classify them as fields. –  A specific key/value you want to extract –  Enables you to perform additional operations •  Logical/conditional – based on values •  Mathematical – operations on value sets •  Ways of defining fields –  Parse anchor: leverages start and stop anchors –  Parse regex: extracts nested information via regexField extraction Extracting Additional Labels/Fields
  • 29. Sumo Logic Confidential •  Single field example Parse Anchor Using the UI
  • 30. Sumo Logic Confidential •  The count Operator enables you to group messages that match a classification –  No Group: provides a total message count •  Ex: * | count •  Ex: : * | count as mycount The count operator
  • 31. Sumo Logic Confidential •  Dissecting your result sets using metadata fields –  Ability to aggregate results sets and grouping them by metadata fields •  EX: _collector=*apache* | count by _sourceCategory –  Get a count of grouped result sets •  Ex: (Error OR fail*)| count by _sourcecategory , _sourcehost –  Organize Results by Count •  Ex: _collector=*apache*| count by _sourceCategory | sort by _count Leveraging Metadata for grouping
  • 32. Sumo Logic Confidential •  Timeslice operator enables you to segment your results by time buckets –  Minute (timeslice by 5m) –  Hour (timeslice by 1h) –  Day (timeslice by 1d) Time-based Grouping
  • 34. Sumo Logic Confidential •  Collection of Monitors that provide graphical representation of data –  Each Monitor processes results of a search for display –  Drilldown for additional analysis •  Drill to another dashboard •  Drill into the query behind the dashboard Introduction to Dashboards
  • 35. Sumo Logic Confidential •  Chart Types –  Table –  Bar –  Column –  Line –  Area –  Pie –  Box Plot –  Google Maps –  Single Value Providing Context through Visualization
  • 36. Sumo Logic Confidential –  Live Dashboards •  Provides a live stream of data •  No back filling of data –  Interactive Dashboards •  Search based (On-Demand) •  Backfilling of data •  Support Filtering Dashboard Types No Interaction Ability to use Pre-defined filters
  • 37. Sumo Logic Confidential Live Dashboards versus Interactive Dashboards
  • 38. Sumo Logic Confidential Dashboards - Adding a Panel 1. Perform your Search 2. Format your Results 3. Create a Panel
  • 42. Sumo Logic Confidential Factors in Search Performance   Query Structure   Time range   Data Selectivity (keywords, metadata, where statements)   Heavy Operations (join, transaction, summarize)   Overall Data Volume   System load   Improve search experience using Optimization Tools
  • 43. Sumo Logic Confidential Search Optimization Tools   Partitions  Separate index for searching over a smaller data set   Scheduled Views  Pre-aggregating data for fast counts/sums over longer time ranges   Field Extraction Rules  Parse the data on ingest rather than run-time; simplifies searches  Take advantage of interactive dashboard filters
  • 44. Sumo Logic Confidential Questions? Additional Resources   Search Online Documentation   Search/Post to Community Forums   Search, post, respond   Submit/vote for feature requests   Submit Tips & Tricks   Open a Support Case   Sumo Logic Services   Customer Success, Professional Services, Training
  • 45. Sumo Logic Confidential Helpful Links Support Portal, Documentation, Community Forums, Feature Requests https://support.sumologic.com/home (Help -> Support from SL Service) Resources (Whitepapers, videos, screencasts) https://www.sumologic.com/resource/ Blog Posts https://www.sumologic.com/blog/ Services customer-success@sumologic.com
  • 46. Sumo Logic Confidential Feature Spotlight Series: How TuneIn uses Outlier Detection and Predictive Analytics Sep 22, 2015, 10am Pacific Register Now “How To” Webinars: Optimizing Your Search Experience Sep 23, 2015, 10am Pacific Register Now