SlideShare ist ein Scribd-Unternehmen logo
1 von 53
Sumo Generalist
Fundamentals Certification
Become a
Sumo Logic confidential
Course Agenda
Demo our monitoring and troubleshooting
Hands-on Labs:
View all collected data
Search, parse, and analyze data
Trending analysis and monitor critical events
10 min.
10 min.
30 min.
20 min.
Creating and modifying dashboards & create an alert30 min.
Get certified as a Sumo Generalist Fundamentals60 min.
Overview of Sumo logic10 min.
Sumo Logic confidential
Sumo Logic confidential
Demo: Monitor and Troubleshoot
ALERTS
notify of a critical event
METRICS
to identify what’s going on
LOGS
to identify why it’s happening
Sumo Logic Confidential
Demo & Dataflow
1. How does Sumo Logic
help me?
Sumo Logic confidential
Sumo Logic Data Flow
Alerts
Dashboards
3
Visualize & Monitor
Operators
Charts
2
Search & Analyze
Collectors
Sources
1
Data Collection
Sumo Logic confidentialLearn more: Set Up Sumo Logic
Cloud-to-cloudSending Data From host, send local data Use centralized infrastructure
Sumo Logic Confidential
Sending Data ⇨ Metadata
Metadata tags are associated with each log message that is collected.
Tag Description
_collector Name of the collector (defaults to hostname)
_sourceHost Hostname of the server (defaults to hostname)
_sourceName Name and Path of the log file
_source Name of the source this data came through
_sourceCategory
Can be freely configured. Main metadata tag
(e.g. labs/apache/access)
Sumo Logic Confidential
Tutorial: Hands-on Exercises
Hands-on Labs:
• Follow along using the labs found
under Home > Certifications >
Training Environment:
service.sumologic.com
username: training+labs@sumologic.com
password:
Sumo Logic Confidential
Fundamentals Certification
In order to get credit for the exam,
go to your own instance, and the to
Certification Tab.
• Online Exam
• 30 Multiple choice questions
• 60-minute time limit
• 3 attempts
Sumo Logic Confidential
What’s available to me?
2. What data can I analyze?
Sumo Logic Confidential
What Data can I Analyze?
Option 1
Explore your Collectors
Option 2
Search for source categories
Sumo Logic Confidential
Search, Parse, Analyze
3. How can I analyze
my data?
Sumo Logic Confidential
Data Analytics – Shared Content
Has someone already analyzed this same data?
Sumo Logic Confidential
Data Analytics – Sumo Logic Apps
Is there an App for it? Search in the App Catalog and Install it.
Sumo Logic Confidential
Hands-on Lab
Complete Part 1: Viewing Data
● Sign in
● Identify data available
● Search for existing content from other users
● Install a Sumo Logic App
Using Sumo Logic Tutorial
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax: metadata
Keywords and operators, separated by pipes, that build on top of each other
parse
filter
aggregate
format
keywords
_sourceCategory=Labs/Apache/Access and "Mozilla"
| parse "GET * HTTP/1.1" * “ as url,status_code
| where status_code matches “5*”
| count by status_code
| sort by _count
| limit 3
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Use metadata and keywords to narrow your search scope
Results
keyword
metadata keyword
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Extract meaningful fields to provide structure to your data
Parse Anchor:
| parse " *@* " as user,domain
Parse Regex:
| parse regex "(?<src_ip>d{1,3}
.d{1,3}.d{1,3}.d{1,3})”
Other Parse Operators:
csv, json, keyvalue, split, xml
Learn more: Parse Operators
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Further filter results using your extracted fields
where operator:
| where !(status_code=304)
in operator:
| if(status_code in("501","502"),
"Error","OK") as code_type
Other Filter Operators:
join, lookup, matches, filter,
isEmpty, isNull, isBlank
Learn more: Filter operator example
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Evaluate messages and place them into groups
count operator:
| count by status_code
avg operator:
| avg(size) by src_ip
pct operator:
| pct(filesize,75) by _sourceHost
Other Aggregation Operators:
sum, count_distinct, stddev, min,
max
Learn more: Aggregation operators
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Format to display desired results succinctly
top operator:
| top 5 src_ip by avg_size
fields operator:
| fields src_ip, avg_size
transpose operator:
| transpose row src_ip column url
Other formatting Operators:
format, formatdate, limit, sort
Learn more: Trends over time using transpose
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Advanced Analytics
Geo Lookup
_sourceCategory=Labs/Apache/Access
| lookup latitude, longitude from geo://default on ip=src_ip
| count by latitude, longitude
Outlier
_sourceCategory=Labs/Apache/Access and status_code=404
| timeslice 1m
| count(status_code) as error_count by _timeslice
| outlier error_count
Predict
_sourceCategory=Labs/Apache/Access
| timeslice 5m
| count as requests by _timeslice
| predict requests by 5m forecast=12
Sumo Logic Confidential
Advanced Analytics
Find the “needle in the haystack” by identifying patterns.
Compare today’s patterns with patterns in the past.
_sourceCategory=Labs/snort
| logreduce
_sourceCategory=Labs/snort
| logcompare -24h
LogReduce
LogCompare
Sumo Logic Confidential
Advanced Analytics
Get real time view of your logs with Live Tail
Sumo Logic Confidential
Hands-On Labs
Complete Part 2: Search for Log Data
➔ Search and Parse
Using Sumo Logic Tutorial
Complete Part 3: Chart Your Data
➔ Aggregate
➔ Format
➔ Chart your data
Sumo Logic Confidential
Dashboards and Alerts
4. How can I monitor my data?
Sumo Logic Confidential
Monitoring - Dashboards
• Each Panel processes results from
a single search
• Drill down into corresponding
query or link to another Dashboard
• Live Mode: provides live stream of
data
• Use Dashboards as templates with
Filters
Let’s take a 15 min break
Return promptly to play Kahoot
3 multiple choice questions
The highest score wins a prize!
Sumo Logic Confidential
Hands-On Labs
Complete Part 4: Create and Share a Dashboard
Using Sumo Logic Tutorial
➔ Create a Dashboard
➔ Change the Theme
➔ Share with your Organization
Complete Part 5: Modify a Dashboard
➔ Modify the query of an existing Dashboard Panel
Sumo Logic Confidential
Monitoring - Alerts
Alert Types:
● Email
● Webhook
● Save to Index
● Script Action
Scheduled Searches trigger Alerts when a condition is met.
➢ Learn More: 2 Key
Principles for Creating
Meaningful Alerts
Sumo Logic Confidential
Hands-On Labs
Complete Part 6: Create an Alert
Using Sumo Logic Tutorial
➔ Schedule and test an Alert
➔ Delete Alert after testing
Sumo Logic Confidential
Metrics
Sources, Dashboards and Alerts
Sumo Logic Confidential
Logs and Metrics - Overlay
● Metrics identify the what.
● Logs help identify why.
Overlay helps you correlate metrics
to the relevant logs.
Sumo Logic confidential
Ingesting Metrics
Graphite-CompatibleAWS MetricsHost Metrics
CollectD
Dropwizard StatsD
AWS
CloudWatch
Metrics
AWS ECS
✓ Learn More:
Setting up Host Metrics
✓ Learn More:
Setting up AWS Metrics
✓ Learn More:
Setting up Graphite
Metrics
Telegraf
Sumo Logic Confidential
Metrics - Dashboards and Alerts
Dashboards can contain Metrics
and Logs Panels
Metric Monitors alert on thresholds
(Critical, Warning, Missing Data)
Sumo Logic Confidential
Training, Docs, Community,
Support
5. Where do I go from here?
Sumo Logic Confidential
Explore the tutorials
Need knowledge? ⇨ try the Learn tab
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Explore the tutorials
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Every feature and tool
covered in docs
Explore the tutorials
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Every feature and tool
covered in docs
Find out What’s New
Explore the tutorials
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Every feature and tool
covered in docs
Find out What’s New
Find answers or post
your questions to
Community
Explore the tutorials
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Every feature and tool
covered in docs
Find out What’s New
Find answers or post
your questions to
Community
Attend/review training
and get certified
Explore the tutorials
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Every feature and tool
covered in docs
Find out What’s New
Find answers or post
your questions to
Community
Attend/review training
and get certified
Explore the tutorials
Open a Support case
Sumo Logic Confidential
Need knowledge? ⇨ try the Learn tab
Access comprehensive
lists of operators and
more
Every feature and tool
covered in docs
Find out What’s New
Find answers or post
your questions to
Community
Attend/review training
and get certified
Explore the tutorials
Open a Support case
Questions?
Sumo Logic Confidential
Sumo Logic Confidential
Level 1 Certification: Pro User
In order to get credit for the exam,
In YOUR OWN INSTANCE, go to Certification
Tab.
• Online Exam
• 30 Multiple choice questions
• 60-minute time limit
• 3 attempts
• sumologic.talentlms.com
Sumo Logic Confidential
Sumo Logic Certification
● Make sure to log out of the training
account you were using and sign in with
your own account
● If you do not have a working login, go to
sumologic.talentlms.com to sign up for
an account
Sumo Logic Confidential
Sumo Logic Confidential
If you find your login is cycling
back to the exam screen, do the
following:
● Click on Help in the black left bar
● Click Community in the black left bar
● An email verification should be sent
● Once you verify, you should able to
take the exam without any issues
For passing the exam, you will earn:
● SWAG
● A Certificate
● An invitation to our LinkedIn Group
● The respect of your peers
● Fame, Fortune and more... Jessica Robbens
Sumo Logic Confidential
Please take our survey:
https://forms.gle/2KMtxPuD
9cSYV8SJ6
How did we do?
Sumo Logic Cert Jam - Fundamentals
Sumo Logic Cert Jam - Fundamentals

Weitere ähnliche Inhalte

Was ist angesagt?

Evaluation of artificial intelligence based models for the spatial prediction...
Evaluation of artificial intelligence based models for the spatial prediction...Evaluation of artificial intelligence based models for the spatial prediction...
Evaluation of artificial intelligence based models for the spatial prediction...
Fidel Bonet
 

Was ist angesagt? (20)

Sigma and YARA Rules
Sigma and YARA RulesSigma and YARA Rules
Sigma and YARA Rules
 
Hacking identity: A Pen Tester's Guide to IAM
Hacking identity: A Pen Tester's Guide to IAMHacking identity: A Pen Tester's Guide to IAM
Hacking identity: A Pen Tester's Guide to IAM
 
Penetration Testing Azure for Ethical Hackers
Penetration Testing Azure for Ethical HackersPenetration Testing Azure for Ethical Hackers
Penetration Testing Azure for Ethical Hackers
 
MeetUp Monitoring with Prometheus and Grafana (September 2018)
MeetUp Monitoring with Prometheus and Grafana (September 2018)MeetUp Monitoring with Prometheus and Grafana (September 2018)
MeetUp Monitoring with Prometheus and Grafana (September 2018)
 
Observabilidad: Todo lo que hay que ver
Observabilidad: Todo lo que hay que verObservabilidad: Todo lo que hay que ver
Observabilidad: Todo lo que hay que ver
 
OSMC 2022 | Logstash, Beats, Elastic Agent, Open Telemetry — what’s the right...
OSMC 2022 | Logstash, Beats, Elastic Agent, Open Telemetry — what’s the right...OSMC 2022 | Logstash, Beats, Elastic Agent, Open Telemetry — what’s the right...
OSMC 2022 | Logstash, Beats, Elastic Agent, Open Telemetry — what’s the right...
 
Application Performance Monitoring
Application Performance MonitoringApplication Performance Monitoring
Application Performance Monitoring
 
Performance tests with Gatling
Performance tests with GatlingPerformance tests with Gatling
Performance tests with Gatling
 
Postman 101 & Office Hours
Postman 101 & Office HoursPostman 101 & Office Hours
Postman 101 & Office Hours
 
Api testing bible using postman
Api testing bible using postmanApi testing bible using postman
Api testing bible using postman
 
Evaluation of artificial intelligence based models for the spatial prediction...
Evaluation of artificial intelligence based models for the spatial prediction...Evaluation of artificial intelligence based models for the spatial prediction...
Evaluation of artificial intelligence based models for the spatial prediction...
 
Security testing
Security testingSecurity testing
Security testing
 
SSRF For Bug Bounties
SSRF For Bug BountiesSSRF For Bug Bounties
SSRF For Bug Bounties
 
Basic of jMeter
Basic of jMeter Basic of jMeter
Basic of jMeter
 
XStream: stream processing platform at facebook
XStream:  stream processing platform at facebookXStream:  stream processing platform at facebook
XStream: stream processing platform at facebook
 
Delta Architecture
Delta ArchitectureDelta Architecture
Delta Architecture
 
Fast flux
Fast fluxFast flux
Fast flux
 
Presentation on Apache Jmeter
Presentation on Apache JmeterPresentation on Apache Jmeter
Presentation on Apache Jmeter
 
Jmeter
JmeterJmeter
Jmeter
 
Automating security test using Selenium and OWASP ZAP - Practical DevSecOps
Automating security test using Selenium and OWASP ZAP - Practical DevSecOpsAutomating security test using Selenium and OWASP ZAP - Practical DevSecOps
Automating security test using Selenium and OWASP ZAP - Practical DevSecOps
 

Ähnlich wie Sumo Logic Cert Jam - Fundamentals

Ähnlich wie Sumo Logic Cert Jam - Fundamentals (20)

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 Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics Mastery
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017
 
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 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 - 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 Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016
 
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 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
Sumo Logic QuickStart WebinarSumo Logic QuickStart Webinar
Sumo Logic QuickStart Webinar
 
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 Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics MasterySumo Logic Cert Jam - Metrics Mastery
Sumo Logic Cert Jam - Metrics Mastery
 
Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018
 
Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016
 

Mehr von Sumo Logic

Mehr von Sumo Logic (15)

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 - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)
 
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 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
 
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
 
Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017
 
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
 
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
 

Kürzlich hochgeladen

%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 

Kürzlich hochgeladen (20)

WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 

Sumo Logic Cert Jam - Fundamentals

  • 2. Sumo Logic confidential Course Agenda Demo our monitoring and troubleshooting Hands-on Labs: View all collected data Search, parse, and analyze data Trending analysis and monitor critical events 10 min. 10 min. 30 min. 20 min. Creating and modifying dashboards & create an alert30 min. Get certified as a Sumo Generalist Fundamentals60 min. Overview of Sumo logic10 min.
  • 4. Sumo Logic confidential Demo: Monitor and Troubleshoot ALERTS notify of a critical event METRICS to identify what’s going on LOGS to identify why it’s happening
  • 5. Sumo Logic Confidential Demo & Dataflow 1. How does Sumo Logic help me?
  • 6. Sumo Logic confidential Sumo Logic Data Flow Alerts Dashboards 3 Visualize & Monitor Operators Charts 2 Search & Analyze Collectors Sources 1 Data Collection
  • 7. Sumo Logic confidentialLearn more: Set Up Sumo Logic Cloud-to-cloudSending Data From host, send local data Use centralized infrastructure
  • 8. Sumo Logic Confidential Sending Data ⇨ Metadata Metadata tags are associated with each log message that is collected. Tag Description _collector Name of the collector (defaults to hostname) _sourceHost Hostname of the server (defaults to hostname) _sourceName Name and Path of the log file _source Name of the source this data came through _sourceCategory Can be freely configured. Main metadata tag (e.g. labs/apache/access)
  • 9. Sumo Logic Confidential Tutorial: Hands-on Exercises Hands-on Labs: • Follow along using the labs found under Home > Certifications > Training Environment: service.sumologic.com username: training+labs@sumologic.com password:
  • 10. Sumo Logic Confidential Fundamentals Certification In order to get credit for the exam, go to your own instance, and the to Certification Tab. • Online Exam • 30 Multiple choice questions • 60-minute time limit • 3 attempts
  • 11. Sumo Logic Confidential What’s available to me? 2. What data can I analyze?
  • 12. Sumo Logic Confidential What Data can I Analyze? Option 1 Explore your Collectors Option 2 Search for source categories
  • 13. Sumo Logic Confidential Search, Parse, Analyze 3. How can I analyze my data?
  • 14. Sumo Logic Confidential Data Analytics – Shared Content Has someone already analyzed this same data?
  • 15. Sumo Logic Confidential Data Analytics – Sumo Logic Apps Is there an App for it? Search in the App Catalog and Install it.
  • 16. Sumo Logic Confidential Hands-on Lab Complete Part 1: Viewing Data ● Sign in ● Identify data available ● Search for existing content from other users ● Install a Sumo Logic App Using Sumo Logic Tutorial
  • 17. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: metadata Keywords and operators, separated by pipes, that build on top of each other parse filter aggregate format keywords _sourceCategory=Labs/Apache/Access and "Mozilla" | parse "GET * HTTP/1.1" * “ as url,status_code | where status_code matches “5*” | count by status_code | sort by _count | limit 3
  • 18. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Use metadata and keywords to narrow your search scope Results keyword metadata keyword | parse | filter | aggregate | format metadata + keywords
  • 19. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Extract meaningful fields to provide structure to your data Parse Anchor: | parse " *@* " as user,domain Parse Regex: | parse regex "(?<src_ip>d{1,3} .d{1,3}.d{1,3}.d{1,3})” Other Parse Operators: csv, json, keyvalue, split, xml Learn more: Parse Operators | parse | filter | aggregate | format metadata + keywords
  • 20. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Further filter results using your extracted fields where operator: | where !(status_code=304) in operator: | if(status_code in("501","502"), "Error","OK") as code_type Other Filter Operators: join, lookup, matches, filter, isEmpty, isNull, isBlank Learn more: Filter operator example | parse | filter | aggregate | format metadata + keywords
  • 21. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Evaluate messages and place them into groups count operator: | count by status_code avg operator: | avg(size) by src_ip pct operator: | pct(filesize,75) by _sourceHost Other Aggregation Operators: sum, count_distinct, stddev, min, max Learn more: Aggregation operators | parse | filter | aggregate | format metadata + keywords
  • 22. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Format to display desired results succinctly top operator: | top 5 src_ip by avg_size fields operator: | fields src_ip, avg_size transpose operator: | transpose row src_ip column url Other formatting Operators: format, formatdate, limit, sort Learn more: Trends over time using transpose | parse | filter | aggregate | format metadata + keywords
  • 23. Sumo Logic Confidential Advanced Analytics Geo Lookup _sourceCategory=Labs/Apache/Access | lookup latitude, longitude from geo://default on ip=src_ip | count by latitude, longitude Outlier _sourceCategory=Labs/Apache/Access and status_code=404 | timeslice 1m | count(status_code) as error_count by _timeslice | outlier error_count Predict _sourceCategory=Labs/Apache/Access | timeslice 5m | count as requests by _timeslice | predict requests by 5m forecast=12
  • 24. Sumo Logic Confidential Advanced Analytics Find the “needle in the haystack” by identifying patterns. Compare today’s patterns with patterns in the past. _sourceCategory=Labs/snort | logreduce _sourceCategory=Labs/snort | logcompare -24h LogReduce LogCompare
  • 25. Sumo Logic Confidential Advanced Analytics Get real time view of your logs with Live Tail
  • 26. Sumo Logic Confidential Hands-On Labs Complete Part 2: Search for Log Data ➔ Search and Parse Using Sumo Logic Tutorial Complete Part 3: Chart Your Data ➔ Aggregate ➔ Format ➔ Chart your data
  • 27. Sumo Logic Confidential Dashboards and Alerts 4. How can I monitor my data?
  • 28. Sumo Logic Confidential Monitoring - Dashboards • Each Panel processes results from a single search • Drill down into corresponding query or link to another Dashboard • Live Mode: provides live stream of data • Use Dashboards as templates with Filters
  • 29. Let’s take a 15 min break Return promptly to play Kahoot 3 multiple choice questions The highest score wins a prize!
  • 30. Sumo Logic Confidential Hands-On Labs Complete Part 4: Create and Share a Dashboard Using Sumo Logic Tutorial ➔ Create a Dashboard ➔ Change the Theme ➔ Share with your Organization Complete Part 5: Modify a Dashboard ➔ Modify the query of an existing Dashboard Panel
  • 31. Sumo Logic Confidential Monitoring - Alerts Alert Types: ● Email ● Webhook ● Save to Index ● Script Action Scheduled Searches trigger Alerts when a condition is met. ➢ Learn More: 2 Key Principles for Creating Meaningful Alerts
  • 32. Sumo Logic Confidential Hands-On Labs Complete Part 6: Create an Alert Using Sumo Logic Tutorial ➔ Schedule and test an Alert ➔ Delete Alert after testing
  • 34. Sumo Logic Confidential Logs and Metrics - Overlay ● Metrics identify the what. ● Logs help identify why. Overlay helps you correlate metrics to the relevant logs.
  • 35. Sumo Logic confidential Ingesting Metrics Graphite-CompatibleAWS MetricsHost Metrics CollectD Dropwizard StatsD AWS CloudWatch Metrics AWS ECS ✓ Learn More: Setting up Host Metrics ✓ Learn More: Setting up AWS Metrics ✓ Learn More: Setting up Graphite Metrics Telegraf
  • 36. Sumo Logic Confidential Metrics - Dashboards and Alerts Dashboards can contain Metrics and Logs Panels Metric Monitors alert on thresholds (Critical, Warning, Missing Data)
  • 37. Sumo Logic Confidential Training, Docs, Community, Support 5. Where do I go from here?
  • 38. Sumo Logic Confidential Explore the tutorials Need knowledge? ⇨ try the Learn tab
  • 39. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Explore the tutorials
  • 40. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Every feature and tool covered in docs Explore the tutorials
  • 41. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Every feature and tool covered in docs Find out What’s New Explore the tutorials
  • 42. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Every feature and tool covered in docs Find out What’s New Find answers or post your questions to Community Explore the tutorials
  • 43. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Every feature and tool covered in docs Find out What’s New Find answers or post your questions to Community Attend/review training and get certified Explore the tutorials
  • 44. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Every feature and tool covered in docs Find out What’s New Find answers or post your questions to Community Attend/review training and get certified Explore the tutorials Open a Support case
  • 45. Sumo Logic Confidential Need knowledge? ⇨ try the Learn tab Access comprehensive lists of operators and more Every feature and tool covered in docs Find out What’s New Find answers or post your questions to Community Attend/review training and get certified Explore the tutorials Open a Support case
  • 47. Sumo Logic Confidential Sumo Logic Confidential Level 1 Certification: Pro User In order to get credit for the exam, In YOUR OWN INSTANCE, go to Certification Tab. • Online Exam • 30 Multiple choice questions • 60-minute time limit • 3 attempts • sumologic.talentlms.com
  • 48. Sumo Logic Confidential Sumo Logic Certification ● Make sure to log out of the training account you were using and sign in with your own account ● If you do not have a working login, go to sumologic.talentlms.com to sign up for an account
  • 49. Sumo Logic Confidential Sumo Logic Confidential If you find your login is cycling back to the exam screen, do the following: ● Click on Help in the black left bar ● Click Community in the black left bar ● An email verification should be sent ● Once you verify, you should able to take the exam without any issues
  • 50. For passing the exam, you will earn: ● SWAG ● A Certificate ● An invitation to our LinkedIn Group ● The respect of your peers ● Fame, Fortune and more... Jessica Robbens
  • 51. Sumo Logic Confidential Please take our survey: https://forms.gle/2KMtxPuD 9cSYV8SJ6 How did we do?