SlideShare a Scribd company logo
1 of 37
Download to read offline
Sumo Logic Confidential
Optimizing Your Search Experience
August 2016
Customer Success
How-To Webinar
Sumo Logic Confidential
Agenda
  Basic Search Structure
  Setting Search Performance Expectations
  Search Optimization Tools
  Field Extraction Rules
  Partitions
  Scheduled Views
  Demo
  Q&A
Sumo Logic Confidential
Basic Search Structure
Sumo Logic Confidential
Search Structure
Keywords and operators (separated by pipes) that build on top of each other
Syntax:
metadata tags + keywords | parse | filter | aggregate | sort | limit
Example Search:
Results
where
metadata
keyword
Sumo Logic Confidential
Metadata Fields
  All messages are tagged during data ingest
  Metadata fields are configured as part of Collector and Source setup
  Properly categorizing your data leads to more efficient searches
Good Source Category, Bad Source Category
Sumo Logic Confidential
Keyword Search
  Case Insensitive unless string is in double quotes
  Wildcard Support (e.g. ERR*)
  Boolean Logic Support
  AND
  OR
  !(A OR B)
  Combine keywords with metadata fields for the best performance
  Bloom filters
  Using keywords helps bloom filters retrieve data very quickly
Sumo Logic Confidential
Processing Your Search Request
Initiate
•  Queries are rewritten automagically
•  The Sumo Logic service calls backend clusters to kickoff the request
Reduce
•  Sumo locates indices that contain data for search time-range
•  Bloom filters further eliminate indices where keywords are not contained
Data
Retrieval
•  Everything through the first pipe is retrieved
•  Data is carried forward
Parallelize
•  Remaining operations are conducted
•  If aggregation is involved, we look for opportunities to parallelize the operation
Sumo Logic Confidential
Develop Good Search Habits
  Use metadata and keyword combinations to reduce scope
  Shorten your time-range down as much as possible
  Limit result sets before aggregating data à where user=a | count by user
  Use parse anchor instead of parse regex for structured messages
  Avoid the use of expensive parse regex tokens like .* à d{2,10}
  Add line breaks after each operation
  Use pre-extracted fields where possible (to be discussed later)
Sumo Logic Confidential
Search Performance Expectations
Sumo Logic Confidential
The Time Range Effect
  More recent data can be accessed quickly
  We do something special when scanning the last 24 hours of events
  Why? Over 90% of searches are executed against recent data
  Test queries on very recent data first before saving or publishing
  Our main performance metric (speedup) is essentially a ratio that divides the time-
range used by the time it takes for data to return.
Sumo Logic Confidential
Review Your Data Source Time Zone Settings
  Leads to a large gap between message time and receipt time
  Causes backend fragmentation and can affect search speed
  Support of Java 6 Time Zone formats
  Pacific Standard Time; PST; GMT-08:00
  -0800
NOT US/Pacific
  Data integrity will be questioned by users
  Knowledge Base Article: Large Time Discrepancies
Sumo Logic Confidential
Compute-Intensive Operations
  Multiple .* tokens in a single parse regex statement
  Parse using public library (apache/access, iis, cisco/asa, windows/2008)
  Try to borrow from Field Extraction Rule templates
LogCompare and LogReduce
  Join
  Time to run exponentially increases when extending your time-range
  Transaction, Transactionize and Merge
  Try and limit the ‘timewindow’ parameter for finding corresponding events
  Outlier / Predict
Sumo Logic Confidential
Performance Optimization Tools
Sumo Logic Confidential
Managing Search Optimization Tools
These tools are
only available to
Administrators
Sumo Logic Confidential
How Data is Optimized for Search
Data is Ingested
Field Extraction
rules parses
fields
Partitions route
messages to
separate stores
Scheduled
Views pre-
aggregate data
Data is Indexed
Ad-Hoc Queries
Dashboards
Scheduled Searches
Alerts
Optimized data can be
used with other features
Sumo Logic Confidential
Field Extraction Rules
Sumo Logic Confidential
Benefits of Field Extraction Rules
  Extract fields at the time of ingest
  Standardize Searches and Field Names for users
  Simplify searches
  Narrow results within search scope instead of using ‘where’
operator (e.g. _sourceCategory=nginx status_code=404)
  Improves Search Performance
  Eliminates the need to ‘parse’ data at run time
Sumo Logic Confidential
When to Use Field Extraction Rules
  The same (or very similar) parse statement is being used over and over
  Parsing over a large volume of data
  Constantly filtering data based off of parsed fields
  Disparate logs need to be joined using a Unique ID
  Session ID
  User Name
  Process ID
  Syslog Metadata Overrides
Sumo Logic Confidential
Create Field Extraction Rule
Use Scope to
define what data
this FER applies to
Use Regex to
create your parse
expression
Templates exist for
common sources
Sumo Logic Confidential
Using Pre-Parsed Fields When Querying
With FERs, parsed
fields are available
to use in your
keyword search
Parsed fields are
available in your
Field Browser for
further analysis
Sumo Logic Confidential
Field Extraction Rule Recommendations
  Test the rule by running a search over a small time-
range that has data
  The scope and parse statement should not change
  Ensure your rule covers common searches
  Only extract the minimum fields necessary
 Use ‘fields’ operator to limit results
Sumo Logic Confidential
FER Caveats
  Max of 50 Rules
  Max of 200 Total Fields
  Supported Operators
  Parse Anchor / Regex / Nodrop
  Double
  Fields
Num
  If
  Where
Concat
Keyvalue (not ‘kv auto’)
  NEW! JSON (not ‘json auto’)
NOTE: Deleted rules and fields defined in
them will still count towards the max
Sumo Logic Confidential
Partitions
Sumo Logic Confidential
Benefits of Partitions
  Divides your data into smaller chunks to be searched on
  Takes advantage of your source categorization; similar data can
actually be grouped together
  Improves performance when used in searches
  It can eliminate the need for lengthy scope definitions
Sumo Logic Confidential
When to Create Partitions
  Sets of data are being searched in isolation
  A large amount of data being sent daily (> 5 GB’s)
 Navigate to Manage à Account if you don’t know
  Different groups are focused on specific logs
  RBAC filtering is required for data provisioning
Sumo Logic Confidential
Use Data Volume Index
  Helps to determine possible ways to partition data
  Recommended partition size à Up to 30% of data volume
  Manage à Account à Data Management
  Library à Apps à Data Volume
Sumo Logic Confidential
How Search Scans Partitions
1
_sourceCategory
= Prod/Apache/
Access
Default
Partition
2
_sourceCategory
= qa/*
3
_sourceCategory
= Prod/*
  Sample Search Scope
  _sourceCategory=*apache*
  _source=Prod/Nginx
  _sourceCategory=Prod/Apache/Access
  _index=1 _sourceName=sample.log
Partition(s) Searched
à  Default Partition
à  ALL
à  Partitions 1 OR 3
à  Partition 1
Sumo Logic Confidential
Partitions Caveats
  Overlapping data between partitions are counted
towards your contracted data volume quota
  Maximum of 500 indexes can be created with no
available overrides
  Data cannot be backfilled
  Not editable after creation
Sumo Logic Confidential
Scheduled Views
Sumo Logic Confidential
Benefits of Scheduled Views
  Similar to relational DB materialized views
  Allows you to pre-aggregate data
  Allows for long term trending analysis
  Can significantly improve performance for high selectivity queries
  (_source=A or _source=B) and _sourceName=C and keyword1 and keyword2
  Unlike partitions, data can be backfilled
Sumo Logic Confidential
When to Use Scheduled Views
  Specific aggregate operators are used heavily in queries
  Count
  Sum
  Data is being trended over a long period of time (e.g. Last 30 Days)
  Failed logins on critical servers
  Number of 404 errors
  A highly selective query does not perform well
Sumo Logic Confidential
Scheduled Views Recommendations
  Include aggregation
Timeslice 1m
  Use queries that are not likely to change
  Take advantage of existing partitions and FER’s
  Only backfill data needed for analyses
Sumo Logic Confidential
Scheduled View Caveats
  Data in scheduled views are counted towards your quota
  Parsed fields in views count towards field extraction limitation (200)
  Data can only be backfilled through your plan’s retention period
  Not editable after creation
  Supported aggregate operators
  Difference
  Count
  Sum
Sumo Logic Confidential
Quick Review
Sumo Logic Confidential
Review: Factors in Search Performance
  Query structure
 Data Selectivity (keywords, metadata fields)
 Heavy Operations (join, transaction, summarize)
  Search Time Range
  Possible Time Zone Misconfiguration at Source Level
  Total Data Volume for Account
  Use of Performance Optimization Tools
  Service Anomalies
Sumo Logic Confidential
Review: Search Optimization Tools
What I want to do is Partition Scheduled View Field Extraction
Parse the same type of log
message repeatedly
✔
Identify long-term trends
✔
Group related data
together
✔
Pre-compute or aggregate
data before querying
✔
Use RBAC to deny or grant
access to the data
✔
Sumo Logic Confidential
customer-success@sumologic.com
optimize@sumologic.com

More Related Content

What's hot

Microsoft Defender for Endpoint Overview.pptx
Microsoft Defender for Endpoint Overview.pptxMicrosoft Defender for Endpoint Overview.pptx
Microsoft Defender for Endpoint Overview.pptxBenAissaTaher1
 
Open source SOC Tools for Home-Lab
Open source SOC Tools for Home-LabOpen source SOC Tools for Home-Lab
Open source SOC Tools for Home-LabBoni Yeamin
 
First Party Data: What, Where, and How?
First Party Data: What, Where, and How?First Party Data: What, Where, and How?
First Party Data: What, Where, and How?MediaPost
 
How to Implement Snowflake Security Best Practices with Panther
How to Implement Snowflake Security Best Practices with PantherHow to Implement Snowflake Security Best Practices with Panther
How to Implement Snowflake Security Best Practices with PantherPanther Labs
 
Big Data Analytics to Enhance Security
Big Data Analytics to Enhance SecurityBig Data Analytics to Enhance Security
Big Data Analytics to Enhance SecurityData Science Thailand
 
How to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft TeamsHow to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft TeamsDux Raymond Sy
 
Zero to Snowflake Presentation
Zero to Snowflake Presentation Zero to Snowflake Presentation
Zero to Snowflake Presentation Brett VanderPlaats
 
Siber Sigorta Nedir? Nasıl Yapılır?
Siber Sigorta Nedir? Nasıl Yapılır?Siber Sigorta Nedir? Nasıl Yapılır?
Siber Sigorta Nedir? Nasıl Yapılır?BGA Cyber Security
 
ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...
ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...
ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...Jasper Oosterveld
 
Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)Databricks
 
00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx
00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx
00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptxDuyVo750289
 
TeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptx
TeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptxTeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptx
TeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptxJasper Oosterveld
 
Snowflake Data Governance
Snowflake Data GovernanceSnowflake Data Governance
Snowflake Data Governancessuser538b022
 
Modern data warehouse presentation
Modern data warehouse presentationModern data warehouse presentation
Modern data warehouse presentationDavid Rice
 
Embedding Data & Analytics With Looker
Embedding Data & Analytics With LookerEmbedding Data & Analytics With Looker
Embedding Data & Analytics With LookerLooker
 
Big Data Storage Challenges and Solutions
Big Data Storage Challenges and SolutionsBig Data Storage Challenges and Solutions
Big Data Storage Challenges and SolutionsWSO2
 

What's hot (20)

Microsoft Defender for Endpoint Overview.pptx
Microsoft Defender for Endpoint Overview.pptxMicrosoft Defender for Endpoint Overview.pptx
Microsoft Defender for Endpoint Overview.pptx
 
SIEM Başarıya Giden Yol
SIEM Başarıya Giden YolSIEM Başarıya Giden Yol
SIEM Başarıya Giden Yol
 
Big data storage
Big data storageBig data storage
Big data storage
 
Open source SOC Tools for Home-Lab
Open source SOC Tools for Home-LabOpen source SOC Tools for Home-Lab
Open source SOC Tools for Home-Lab
 
First Party Data: What, Where, and How?
First Party Data: What, Where, and How?First Party Data: What, Where, and How?
First Party Data: What, Where, and How?
 
How to Implement Snowflake Security Best Practices with Panther
How to Implement Snowflake Security Best Practices with PantherHow to Implement Snowflake Security Best Practices with Panther
How to Implement Snowflake Security Best Practices with Panther
 
Big Data Analytics to Enhance Security
Big Data Analytics to Enhance SecurityBig Data Analytics to Enhance Security
Big Data Analytics to Enhance Security
 
How to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft TeamsHow to Get Your Organizations To Start Using Microsoft Teams
How to Get Your Organizations To Start Using Microsoft Teams
 
Zero to Snowflake Presentation
Zero to Snowflake Presentation Zero to Snowflake Presentation
Zero to Snowflake Presentation
 
Siber Sigorta Nedir? Nasıl Yapılır?
Siber Sigorta Nedir? Nasıl Yapılır?Siber Sigorta Nedir? Nasıl Yapılır?
Siber Sigorta Nedir? Nasıl Yapılır?
 
ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...
ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...
ECS 2023 - Setup and implement a successful Microsoft Teams governance strate...
 
Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)Announcing Databricks Cloud (Spark Summit 2014)
Announcing Databricks Cloud (Spark Summit 2014)
 
SIEM Primer:
SIEM Primer:SIEM Primer:
SIEM Primer:
 
Azure Sentinel
Azure SentinelAzure Sentinel
Azure Sentinel
 
00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx
00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx
00 - Microsoft 365 Digital Workforce Workshop - Delivery Guide.pptx
 
TeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptx
TeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptxTeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptx
TeamsNation 2022 - Governance for Microsoft Teams - A to Z.pptx
 
Snowflake Data Governance
Snowflake Data GovernanceSnowflake Data Governance
Snowflake Data Governance
 
Modern data warehouse presentation
Modern data warehouse presentationModern data warehouse presentation
Modern data warehouse presentation
 
Embedding Data & Analytics With Looker
Embedding Data & Analytics With LookerEmbedding Data & Analytics With Looker
Embedding Data & Analytics With Looker
 
Big Data Storage Challenges and Solutions
Big Data Storage Challenges and SolutionsBig Data Storage Challenges and Solutions
Big Data Storage Challenges and Solutions
 

Viewers also liked

Optimizing Your Search Experience
Optimizing Your Search ExperienceOptimizing Your Search Experience
Optimizing Your Search ExperienceSumo Logic
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic
 
Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo 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
"How to" Webinar: Sending Data to Sumo LogicSumo 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 Search Job API
Sumo Logic Search Job APISumo Logic Search Job API
Sumo Logic Search Job APISumo Logic
 
Introduction to LogCompare - Reducing MTTI/MTTR with Ease
Introduction to LogCompare - Reducing MTTI/MTTR with EaseIntroduction to LogCompare - Reducing MTTI/MTTR with Ease
Introduction to LogCompare - Reducing MTTI/MTTR with EaseSumo Logic
 
How To Webinar - Sumo Logic API
How To Webinar - Sumo Logic APIHow To Webinar - Sumo Logic API
How To Webinar - Sumo Logic APISumo Logic
 
How Netskope Mastered DevOps with Sumo Logic
How Netskope Mastered DevOps with Sumo LogicHow Netskope Mastered DevOps with Sumo Logic
How Netskope Mastered DevOps with Sumo Logic Sumo 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 quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic
 
Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...
Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...
Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...Dataconomy Media
 
Sumo Logic Webinar: Visibility into your Host Metrics
Sumo Logic Webinar: Visibility into your Host MetricsSumo Logic Webinar: Visibility into your Host Metrics
Sumo Logic Webinar: Visibility into your Host MetricsSumo Logic
 
Sumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic
 
How Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and Metrics
How Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and MetricsHow Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and Metrics
How Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and MetricsSumo 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
 
Standing Up an Effective Enterprise Data Hub -- Technology and Beyond
Standing Up an Effective Enterprise Data Hub -- Technology and BeyondStanding Up an Effective Enterprise Data Hub -- Technology and Beyond
Standing Up an Effective Enterprise Data Hub -- Technology and BeyondCloudera, Inc.
 
The Future of Data Management: The Enterprise Data Hub
The Future of Data Management: The Enterprise Data HubThe Future of Data Management: The Enterprise Data Hub
The Future of Data Management: The Enterprise Data HubCloudera, Inc.
 
How to Reduce your MTTI/MTTR with a Single Click
How to Reduce your MTTI/MTTR with a Single ClickHow to Reduce your MTTI/MTTR with a Single Click
How to Reduce your MTTI/MTTR with a Single ClickSumo Logic
 

Viewers also liked (20)

Optimizing Your Search Experience
Optimizing Your Search ExperienceOptimizing Your Search Experience
Optimizing Your Search Experience
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced Analytics
 
Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017
 
"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
 
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 Search Job API
Sumo Logic Search Job APISumo Logic Search Job API
Sumo Logic Search Job API
 
Introduction to LogCompare - Reducing MTTI/MTTR with Ease
Introduction to LogCompare - Reducing MTTI/MTTR with EaseIntroduction to LogCompare - Reducing MTTI/MTTR with Ease
Introduction to LogCompare - Reducing MTTI/MTTR with Ease
 
How To Webinar - Sumo Logic API
How To Webinar - Sumo Logic APIHow To Webinar - Sumo Logic API
How To Webinar - Sumo Logic API
 
How Netskope Mastered DevOps with Sumo Logic
How Netskope Mastered DevOps with Sumo LogicHow Netskope Mastered DevOps with Sumo Logic
How Netskope Mastered DevOps with Sumo Logic
 
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 quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016
 
Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...
Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...
Marcel Kornacker, Software Enginner at Cloudera - "Data modeling for data sci...
 
Sumo Logic Webinar: Visibility into your Host Metrics
Sumo Logic Webinar: Visibility into your Host MetricsSumo Logic Webinar: Visibility into your Host Metrics
Sumo Logic Webinar: Visibility into your Host Metrics
 
Sumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled Searches
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016
 
How Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and Metrics
How Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and MetricsHow Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and Metrics
How Hudl and Cloud Cruiser Leverage Sumo Logic's Unified Logs and Metrics
 
Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016
 
Standing Up an Effective Enterprise Data Hub -- Technology and Beyond
Standing Up an Effective Enterprise Data Hub -- Technology and BeyondStanding Up an Effective Enterprise Data Hub -- Technology and Beyond
Standing Up an Effective Enterprise Data Hub -- Technology and Beyond
 
The Future of Data Management: The Enterprise Data Hub
The Future of Data Management: The Enterprise Data HubThe Future of Data Management: The Enterprise Data Hub
The Future of Data Management: The Enterprise Data Hub
 
How to Reduce your MTTI/MTTR with a Single Click
How to Reduce your MTTI/MTTR with a Single ClickHow to Reduce your MTTI/MTTR with a Single Click
How to Reduce your MTTI/MTTR with a Single Click
 

Similar to Sumo Logic - Optimizing Your Search Experience (2016-08-17)

Sumo Logic QuickStart Webinar
Sumo Logic QuickStart WebinarSumo Logic QuickStart Webinar
Sumo Logic QuickStart WebinarSumo Logic
 
Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016Sumo 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
 
Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Sumo Logic
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic
 
Sumo Logic QuickStart
Sumo Logic QuickStartSumo Logic QuickStart
Sumo Logic QuickStartSumo Logic
 
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 Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015Sumo Logic Quickstart Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015Sumo 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 - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Sumo Logic
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic
 
Setting Up Sumo Logic - Sep 2017
Setting Up Sumo Logic -  Sep 2017Setting Up Sumo Logic -  Sep 2017
Setting Up Sumo Logic - Sep 2017mariosany
 
Level 3 Certification: Setting up Sumo Logic - Oct 2018
Level 3 Certification: Setting up Sumo Logic - Oct  2018Level 3 Certification: Setting up Sumo Logic - Oct  2018
Level 3 Certification: Setting up Sumo Logic - Oct 2018Sumo 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 - Administration
Sumo Logic Cert Jam - AdministrationSumo Logic Cert Jam - Administration
Sumo Logic Cert Jam - AdministrationSumo Logic
 
(ATS6-PLAT02) Accelrys Catalog and Protocol Validation
(ATS6-PLAT02) Accelrys Catalog and Protocol Validation(ATS6-PLAT02) Accelrys Catalog and Protocol Validation
(ATS6-PLAT02) Accelrys Catalog and Protocol ValidationBIOVIA
 
Building the search engine: from thorns to stars
Building the search engine: from thorns to starsBuilding the search engine: from thorns to stars
Building the search engine: from thorns to starsAndrey Vinda
 
Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...
Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...
Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...Codemotion
 
Sumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - FundamentalsSumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - FundamentalsSumo Logic
 

Similar to Sumo Logic - Optimizing Your Search Experience (2016-08-17) (20)

Sumo Logic QuickStart Webinar
Sumo Logic QuickStart WebinarSumo Logic QuickStart Webinar
Sumo Logic QuickStart Webinar
 
Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016
 
Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016
 
Sumo Logic QuickStart
Sumo Logic QuickStartSumo Logic QuickStart
Sumo Logic QuickStart
 
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 Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015Sumo Logic Quickstart Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015
 
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 - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017
 
Setting Up Sumo Logic - Sep 2017
Setting Up Sumo Logic -  Sep 2017Setting Up Sumo Logic -  Sep 2017
Setting Up Sumo Logic - Sep 2017
 
Level 3 Certification: Setting up Sumo Logic - Oct 2018
Level 3 Certification: Setting up Sumo Logic - Oct  2018Level 3 Certification: Setting up Sumo Logic - Oct  2018
Level 3 Certification: Setting up Sumo Logic - Oct 2018
 
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 - Administration
Sumo Logic Cert Jam - AdministrationSumo Logic Cert Jam - Administration
Sumo Logic Cert Jam - Administration
 
(ATS6-PLAT02) Accelrys Catalog and Protocol Validation
(ATS6-PLAT02) Accelrys Catalog and Protocol Validation(ATS6-PLAT02) Accelrys Catalog and Protocol Validation
(ATS6-PLAT02) Accelrys Catalog and Protocol Validation
 
Building the search engine: from thorns to stars
Building the search engine: from thorns to starsBuilding the search engine: from thorns to stars
Building the search engine: from thorns to stars
 
Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...
Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...
Search on the fly: how to lighten your Big Data - Simona Russo, Auro Rolle - ...
 
Sumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - FundamentalsSumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - Fundamentals
 

More from Sumo Logic

Welcome Webinar PDF
Welcome Webinar PDFWelcome Webinar PDF
Welcome Webinar PDFSumo 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 - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo 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
 
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
 
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 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 QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo 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
 
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
 
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
 

More from Sumo Logic (17)

Welcome Webinar PDF
Welcome Webinar PDFWelcome Webinar PDF
Welcome Webinar PDF
 
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 - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & Compliance
 
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)
 
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
 
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 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 QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get Certified
 
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
 
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
 
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
 

Recently uploaded

New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 

Recently uploaded (20)

New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 

Sumo Logic - Optimizing Your Search Experience (2016-08-17)

  • 1. Sumo Logic Confidential Optimizing Your Search Experience August 2016 Customer Success How-To Webinar
  • 2. Sumo Logic Confidential Agenda   Basic Search Structure   Setting Search Performance Expectations   Search Optimization Tools   Field Extraction Rules   Partitions   Scheduled Views   Demo   Q&A
  • 3. Sumo Logic Confidential Basic Search Structure
  • 4. Sumo Logic Confidential Search Structure Keywords and operators (separated by pipes) that build on top of each other Syntax: metadata tags + keywords | parse | filter | aggregate | sort | limit Example Search: Results where metadata keyword
  • 5. Sumo Logic Confidential Metadata Fields   All messages are tagged during data ingest   Metadata fields are configured as part of Collector and Source setup   Properly categorizing your data leads to more efficient searches Good Source Category, Bad Source Category
  • 6. Sumo Logic Confidential Keyword Search   Case Insensitive unless string is in double quotes   Wildcard Support (e.g. ERR*)   Boolean Logic Support   AND   OR   !(A OR B)   Combine keywords with metadata fields for the best performance   Bloom filters   Using keywords helps bloom filters retrieve data very quickly
  • 7. Sumo Logic Confidential Processing Your Search Request Initiate •  Queries are rewritten automagically •  The Sumo Logic service calls backend clusters to kickoff the request Reduce •  Sumo locates indices that contain data for search time-range •  Bloom filters further eliminate indices where keywords are not contained Data Retrieval •  Everything through the first pipe is retrieved •  Data is carried forward Parallelize •  Remaining operations are conducted •  If aggregation is involved, we look for opportunities to parallelize the operation
  • 8. Sumo Logic Confidential Develop Good Search Habits   Use metadata and keyword combinations to reduce scope   Shorten your time-range down as much as possible   Limit result sets before aggregating data à where user=a | count by user   Use parse anchor instead of parse regex for structured messages   Avoid the use of expensive parse regex tokens like .* à d{2,10}   Add line breaks after each operation   Use pre-extracted fields where possible (to be discussed later)
  • 9. Sumo Logic Confidential Search Performance Expectations
  • 10. Sumo Logic Confidential The Time Range Effect   More recent data can be accessed quickly   We do something special when scanning the last 24 hours of events   Why? Over 90% of searches are executed against recent data   Test queries on very recent data first before saving or publishing   Our main performance metric (speedup) is essentially a ratio that divides the time- range used by the time it takes for data to return.
  • 11. Sumo Logic Confidential Review Your Data Source Time Zone Settings   Leads to a large gap between message time and receipt time   Causes backend fragmentation and can affect search speed   Support of Java 6 Time Zone formats   Pacific Standard Time; PST; GMT-08:00   -0800 NOT US/Pacific   Data integrity will be questioned by users   Knowledge Base Article: Large Time Discrepancies
  • 12. Sumo Logic Confidential Compute-Intensive Operations   Multiple .* tokens in a single parse regex statement   Parse using public library (apache/access, iis, cisco/asa, windows/2008)   Try to borrow from Field Extraction Rule templates LogCompare and LogReduce   Join   Time to run exponentially increases when extending your time-range   Transaction, Transactionize and Merge   Try and limit the ‘timewindow’ parameter for finding corresponding events   Outlier / Predict
  • 14. Sumo Logic Confidential Managing Search Optimization Tools These tools are only available to Administrators
  • 15. Sumo Logic Confidential How Data is Optimized for Search Data is Ingested Field Extraction rules parses fields Partitions route messages to separate stores Scheduled Views pre- aggregate data Data is Indexed Ad-Hoc Queries Dashboards Scheduled Searches Alerts Optimized data can be used with other features
  • 16. Sumo Logic Confidential Field Extraction Rules
  • 17. Sumo Logic Confidential Benefits of Field Extraction Rules   Extract fields at the time of ingest   Standardize Searches and Field Names for users   Simplify searches   Narrow results within search scope instead of using ‘where’ operator (e.g. _sourceCategory=nginx status_code=404)   Improves Search Performance   Eliminates the need to ‘parse’ data at run time
  • 18. Sumo Logic Confidential When to Use Field Extraction Rules   The same (or very similar) parse statement is being used over and over   Parsing over a large volume of data   Constantly filtering data based off of parsed fields   Disparate logs need to be joined using a Unique ID   Session ID   User Name   Process ID   Syslog Metadata Overrides
  • 19. Sumo Logic Confidential Create Field Extraction Rule Use Scope to define what data this FER applies to Use Regex to create your parse expression Templates exist for common sources
  • 20. Sumo Logic Confidential Using Pre-Parsed Fields When Querying With FERs, parsed fields are available to use in your keyword search Parsed fields are available in your Field Browser for further analysis
  • 21. Sumo Logic Confidential Field Extraction Rule Recommendations   Test the rule by running a search over a small time- range that has data   The scope and parse statement should not change   Ensure your rule covers common searches   Only extract the minimum fields necessary  Use ‘fields’ operator to limit results
  • 22. Sumo Logic Confidential FER Caveats   Max of 50 Rules   Max of 200 Total Fields   Supported Operators   Parse Anchor / Regex / Nodrop   Double   Fields Num   If   Where Concat Keyvalue (not ‘kv auto’)   NEW! JSON (not ‘json auto’) NOTE: Deleted rules and fields defined in them will still count towards the max
  • 24. Sumo Logic Confidential Benefits of Partitions   Divides your data into smaller chunks to be searched on   Takes advantage of your source categorization; similar data can actually be grouped together   Improves performance when used in searches   It can eliminate the need for lengthy scope definitions
  • 25. Sumo Logic Confidential When to Create Partitions   Sets of data are being searched in isolation   A large amount of data being sent daily (> 5 GB’s)  Navigate to Manage à Account if you don’t know   Different groups are focused on specific logs   RBAC filtering is required for data provisioning
  • 26. Sumo Logic Confidential Use Data Volume Index   Helps to determine possible ways to partition data   Recommended partition size à Up to 30% of data volume   Manage à Account à Data Management   Library à Apps à Data Volume
  • 27. Sumo Logic Confidential How Search Scans Partitions 1 _sourceCategory = Prod/Apache/ Access Default Partition 2 _sourceCategory = qa/* 3 _sourceCategory = Prod/*   Sample Search Scope   _sourceCategory=*apache*   _source=Prod/Nginx   _sourceCategory=Prod/Apache/Access   _index=1 _sourceName=sample.log Partition(s) Searched à  Default Partition à  ALL à  Partitions 1 OR 3 à  Partition 1
  • 28. Sumo Logic Confidential Partitions Caveats   Overlapping data between partitions are counted towards your contracted data volume quota   Maximum of 500 indexes can be created with no available overrides   Data cannot be backfilled   Not editable after creation
  • 30. Sumo Logic Confidential Benefits of Scheduled Views   Similar to relational DB materialized views   Allows you to pre-aggregate data   Allows for long term trending analysis   Can significantly improve performance for high selectivity queries   (_source=A or _source=B) and _sourceName=C and keyword1 and keyword2   Unlike partitions, data can be backfilled
  • 31. Sumo Logic Confidential When to Use Scheduled Views   Specific aggregate operators are used heavily in queries   Count   Sum   Data is being trended over a long period of time (e.g. Last 30 Days)   Failed logins on critical servers   Number of 404 errors   A highly selective query does not perform well
  • 32. Sumo Logic Confidential Scheduled Views Recommendations   Include aggregation Timeslice 1m   Use queries that are not likely to change   Take advantage of existing partitions and FER’s   Only backfill data needed for analyses
  • 33. Sumo Logic Confidential Scheduled View Caveats   Data in scheduled views are counted towards your quota   Parsed fields in views count towards field extraction limitation (200)   Data can only be backfilled through your plan’s retention period   Not editable after creation   Supported aggregate operators   Difference   Count   Sum
  • 35. Sumo Logic Confidential Review: Factors in Search Performance   Query structure  Data Selectivity (keywords, metadata fields)  Heavy Operations (join, transaction, summarize)   Search Time Range   Possible Time Zone Misconfiguration at Source Level   Total Data Volume for Account   Use of Performance Optimization Tools   Service Anomalies
  • 36. Sumo Logic Confidential Review: Search Optimization Tools What I want to do is Partition Scheduled View Field Extraction Parse the same type of log message repeatedly ✔ Identify long-term trends ✔ Group related data together ✔ Pre-compute or aggregate data before querying ✔ Use RBAC to deny or grant access to the data ✔