SlideShare a Scribd company logo
1 of 54
Copyright	©	2015	Splunk	Inc.
Power	of	Splunk	
Search	Processing	Language	
(SPL™)
About	Me
2
https://www.xing.com/profile/Udo_Goetzen
Safe	Harbor	Statement
3
During the course of this presentation, we may make forward looking statements regarding future events
or the expected performance of the company. We caution you that such statements reflect our current
expectations and estimates based on factors currently known to us and that actual events or results could
differ materially. For important factors that may cause actual results to differ from those contained in our
forward-looking statements, please review our filings with the SEC. The forward-looking statements
made in this presentation are being made as of the time and date of its live presentation. If reviewed
after its live presentation, this presentation may not contain current or accurate information. We do not
assume any obligation to update any forward looking statements we may make. In addition, any
information about our roadmap outlines our general product direction and is subject to change at any
time without notice. It is for informational purposes only and shall not be incorporated into any contract
or other commitment. Splunk undertakes no obligation either to develop the features or functionality
described or to include any such feature or functionality in a future release.
Agenda
● Overview	&	Anatomy	of	a	Search
– Quick	refresher	on	search	language	and	
structure
● SPL	Commands	and	Examples
– Searching,	charting,	converging,	transactions,	
anomalies,	exploring
● Custom	Commands
– Extend	the	capabilities	of	SPL
4
SPL	Overview
SPL	Overview
● Over	140+	search	commands	– continuously	enhancing		
● Syntax	was	originally	based	upon	the	Unix	pipeline	and	SQL
and	is	optimized	for	time	series	data
● The	scope	of	SPL	includes	data	searching,	filtering,	modification,	manipulation,	
enrichment,	insertion	and	deletion
● Includes	anomaly	detection	and	machine	learning
6
Why	Create	a	New	Query	Language?
● Flexibility	and	
effectiveness	on	
small and	big data
● Late-binding	schema
● More/better	methods	
of	correlation
● Not	just	analyze,	but	
visualize
7
Data
search	and	filter	|	munge	|	report |	cleanup	
|	rename	sum(KB)	AS	"Total	KB"	dc(clientip)	AS	"Unique	Customers"
|	eval KB=bytes/1024
sourcetype=access*
|	stats	sum(KB)	dc(clientip)
SPL	Basic	Structure
8
SPL	Examples
SPL	Examples	and	Recipes
● Search	and	filter	+	creating/modifying	fields
● Charting	statistics	and	predicting	values
● Converging	data	sources
● Identifying	transactions	and	anomalies
● Data	exploration	&	finding	relationships	between	fields
10
SPL	Examples	and	Recipes
● Search	and	filter	+	creating/modifying	fields
● Charting	statistics	and	predicting	values
● Converging	data	sources
● Identifying	transactions	and	anomalies
● Data	exploration	&	finding	relationships	between	fields
11
Search	and	Filter
Examples
● Keyword	search:
sourcetype=access* http
● Filter:
sourcetype=access* http	
host=webserver-02
● Combined:
sourcetype=access*	http	
host=webserver-02	(503	OR	504)
12
Search	and	Filter
Examples
● Keyword	search:
sourcetype=access* http
● Filter:
sourcetype=access* http	
host=webserver-02
● Combined:
sourcetype=access*	http	
host=webserver-02	(503	OR	504)
13
Search	and	Filter
Examples
● Keyword	search:
sourcetype=access* http
● Filter:
sourcetype=access* http	
host=webserver-02
● Combined:
sourcetype=access*	http	
host=webserver-02	(503	OR	504)
14
Eval – Modify	or	Create	New	Fields	and	Values	
Examples
● Calculation:
sourcetype=access*
|eval	KB=bytes/1024
● Evaluation:
sourcetype=access*
|	eval	http_response =	
if(status	!=	200,	”Error",	”OK”)
● Concatenation:
sourcetype=access*
|	eval	connection	=	clientip.":".port
15
Eval – Modify	or	Create	New	Fields	and	Values	
Examples
● Calculation:
sourcetype=access*
|eval	KB=bytes/1024
● Evaluation:
sourcetype=access*
|	eval	http_response =	
if(status	!=	200,	”Error",	”OK”)
● Concatenation:
sourcetype=access*
|	eval	connection	=	clientip.":".port
16
Eval – Modify	or	Create	New	Fields	and	Values	
Examples
● Calculation:
sourcetype=access*
|eval	KB=bytes/1024
● Evaluation:
sourcetype=access*
|	eval	http_response =	
if(status	!=	200,	”Error",	”OK”)
● Concatenation:
sourcetype=access*
|	eval	connection	=	clientip.":".port
17
Eval – Just	Getting	Started!
Splunk	Search	Quick	Reference	Guide
18
SPL	Examples	and	Recipes
● Search	and	filter	+	creating/modifying	fields
● Charting	statistics	and	predicting	values
● Converging	data	sources
● Identifying	transactions	and	anomalies
● Data	exploration	&	finding	relationships	between	fields
19
Stats,	Chart,	Timechart
20
Stats – Calculate	Statistics	Based	on	Field	Values	
Examples
● Calculate	stats	and	rename
sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	“Read	OPs”
● Multiple	statistics
sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	Read_OPs
sparkline(avg(read_ops))	AS	Read_Trend
● By	another	field
Sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	Read_OPs
sparkline(avg(read_ops))	AS	Read_Trend
by	instance
21
Stats – Calculate	Statistics	Based	on	Field	Values	
Examples
22
● Calculate	stats	and	rename
sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	“Read	OPs”
● Multiple	statistics
sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	Read_OPs
sparkline(avg(read_ops))	AS	Read_Trend
● By	another	field
Sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	Read_OPs
sparkline(avg(read_ops))	AS	Read_Trend
by	instance
Stats – Calculate	Statistics	Based	on	Field	Values	
Examples
23
● Calculate	stats	and	rename
sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	“Read	OPs”
● Multiple	statistics
sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	Read_OPs
sparkline(avg(read_ops))	AS	Read_Trend
● By	another	field
Sourcetype=netapp:perf
|	stats	avg(read_ops)	AS	Read_OPs
sparkline(avg(read_ops))	AS	Read_Trend
by	instance
Timechart – Visualize	Statistics	Over	Time
Examples
● Visualize	stats	over	time
sourcetype=netapp:perf
|	timechart avg(read_ops)
● Add	a	trendline
sourcetype=netapp:perf
|	timechart avg(read_ops)	as	
read_ops |	trendline sma5(read_ops)
● Add	a	prediction	overlay
sourcetype=netapp:perf
|	timechart avg(read_ops)	as	
read_ops |	predict	read_ops
24
Timechart – Visualize	Statistics	Over	Time
Examples
25
● Visualize	stats	over	time
sourcetype=netapp:perf
|	timechart avg(read_ops)
● Add	a	trendline
sourcetype=netapp:perf
|	timechart avg(read_ops)	as	
read_ops |	trendline sma5(read_ops)
● Add	a	prediction	overlay
sourcetype=netapp:perf
|	timechart avg(read_ops)	as	
read_ops |	predict	read_ops
Timechart – Visualize	Statistics	Over	Time
Examples
26
● Visualize	stats	over	time
sourcetype=netapp:perf
|	timechart avg(read_ops)
● Add	a	trendline
sourcetype=netapp:perf
|	timechart avg(read_ops)	as	
read_ops |	trendline sma5(read_ops)
● Add	a	prediction	overlay
sourcetype=netapp:perf
|	timechart avg(read_ops)	as	
read_ops |	predict	read_ops
Stats/Timechart – But	Wait,	There’s	More!
Splunk	Search	Quick	Reference	Guide
27
SPL	Examples	and	Recipes
● Search	and	filter	+	creating/modifying	fields
● Charting	statistics	and	predicting	values
● Converging	data	sources
● Identifying	transactions	and	anomalies
● Data	exploration	&	finding	relationships	between	fields
28
29
Converging	Data	Sources
Index	Untapped	Data:	Any	Source,	Type,	Volume
Online	
Services Web	
Services
Servers
Security GPS	
Location
Storage
Desktops
Networks
Packaged	
Applications
Custom
ApplicationsMessaging
Telecoms
Online	
Shopping	
Cart
Web	
Clickstreams
Databases
Energy	
Meters
Call	Detail	
Records
Smartphones	
and	Devices
RFID
On-
Premises
Private	
Cloud
Public	
Cloud
Ask	Any	Question
Application	Delivery
Security,	Compliance,	
and	Fraud
IT	Operations
Business	Analytics
Industrial	Data	and
the	Internet	of	Things
Converging	Data	Sources
Examples
● Implicit	join	on	time
index=*	http	|	timechart count	by	
sourcetype
● Enrich	data	with	lookup
sourcetype=access_combined status=503	
|	lookup	customer_info uid |	
stats	count	by	customer_value
● Append	results	from	another	
search
…	|	appendcols [search	earliest=-1h	
sourcetype=Kepware units=W	row=A	
|	stats	stdev(Value)	as	hr_stdev]	…
30
Lookup	– Converging	Data	Sources
Examples
31
● Implicit	join	on	time
index=*	http	|	timechart count	by	
sourcetype
● Enrich	data	with	lookup
sourcetype=access_combined status=503	
|	lookup	customer_info uid |	
stats	count	by	customer_value
● Append	results	from	another	
search
…	|	appendcols [search	earliest=-1h	
sourcetype=Kepware units=W	row=A	
|	stats	stdev(Value)	as	hr_stdev]	…
Appendcols – Converging	Data	Sources
Examples
32
● Implicit	join	on	time
index=*	http	|	timechart count	by	
sourcetype
● Enrich	data	with	lookup
sourcetype=access_combined status=503	
|	lookup	customer_info uid |	
stats	count	by	customer_value
● Append	results	from	another	
search
…	|	appendcols [search	earliest=-1h	
sourcetype=Kepware units=W	row=A	
|	stats	stdev(Value)	as	hr_stdev]	…
SPL	Examples	and	Recipes
● Search	and	filter	+	creating/modifying	fields
● Charting	statistics	and	predicting	values
● Converging	data	sources
● Identifying	transactions	and	anomalies
● Data	exploration	&	finding	relationships	between	fields
33
Transaction	– Group	Related	Events	Spanning	Time
Examples
● Group	by	session	ID
sourcetype=access*
|	transaction	JSESSIONID
● Calculate	session	durations
sourcetype=access*
|	transaction	JSESSIONID	
|	stats	min(duration)	max(duration)	
avg(duration)
● Stats	is	better
sourcetype=access*
|	stats	min(_time)	AS	earliest	max(_time)	
AS	latest	by	JSESSIONID
|	eval	duration=latest-earliest
|	stats	min(duration)	max(duration)	
avg(duration)
34
Transaction	– Group	Related	Events	Spanning	Time
Examples
35
● Group	by	session	ID
sourcetype=access*
|	transaction	JSESSIONID
● Calculate	session	durations
sourcetype=access*
|	transaction	JSESSIONID	
|	stats	min(duration)	max(duration)	
avg(duration)
● Stats	is	better
sourcetype=access*
|	stats	min(_time)	AS	earliest	max(_time)	
AS	latest	by	JSESSIONID
|	eval	duration=latest-earliest
|	stats	min(duration)	max(duration)	
avg(duration)
Transaction	– Group	Related	Events	Spanning	Time
Examples
36
● Group	by	session	ID
sourcetype=access*
|	transaction	JSESSIONID
● Calculate	session	durations
sourcetype=access*
|	transaction	JSESSIONID	
|	stats	min(duration)	max(duration)	
avg(duration)
● Stats	is	better
sourcetype=access*
|	stats	min(_time)	AS	earliest	max(_time)	
AS	latest	by	JSESSIONID
|	eval	duration=latest-earliest
|	stats	min(duration)	max(duration)	
avg(duration)
Anomaly	Detection	– Find	anomalies	in	your	data
Examples
37
● Find	anomalies
|	inputlookup car_data.csv |	
anomalydetection
● Summarize	anomalies
|	inputlookup car_data.csv |	
anomalydetection action=summary
● Use	IQR	and	remove	outliers
|	inputlookup car_data.csv |	
anomalydetection method=iqr
action=remove
SPL	Examples	and	Recipes
● Search	and	filter	+	creating/modifying	fields
● Charting	statistics	and	predicting	values
● Converging	data	sources
● Identifying	transactions	and	anomalies
● Data	exploration	&	finding	relationships	between	fields
38
Data	Exploration
|	analyzefields
|	anomalies
|	arules
|	associate
|	cluster
|	contingency
|	correlate
|	fieldsummary
39
Cluster	– Exploring	Your	Data
Examples
● Find	most/least	common	events
*	|	cluster	showcount=t	t=.1
|	table	_raw	cluster_count
● Display	Summary	of	Fields.
sourcetype=access_combined
|	fields	– date*	source*	time*
|	fieldsummary maxvals=5
● Show	patterns	of	co-occurring	fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	|	correlate
● View	field	relationships
sourcetype=access_combined
|	contingency	uri status
● Find	predictors	of	fields
sourcetype=access_combined
|	analyzefields classfield=status
40
Cluster	– Exploring	Your	Data
Examples
● Find	most/least	common	events
*	|	cluster	showcount=t	t=.1
|	table	_raw	cluster_count
● Display	Summary	of	Fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	
|	fieldsummary maxvals=5
● Show	patterns	of	co-occurring	fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	|	correlate
● View	field	relationships
sourcetype=access_combined
|	contingency	uri status
● Find	predictors	of	fields
sourcetype=access_combined
|	analyzefields classfield=status
41
Correlate	– Exploring	Your	Data
Examples
● Find	most/least	common	events
*	|	cluster	showcount=t	t=.1
|	table	_raw	cluster_count
● Display	Summary	of	Fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	
|	fieldsummary maxvals=5
● Show	patterns	of	co-occurring	fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	|	correlate
● View	field	relationships
sourcetype=access_combined
|	contingency	uri status
● Find	predictors	of	fields
sourcetype=access_combined
|	analyzefields classfield=status
42
Contingency	– Exploring	Your	Data
Examples
● Find	most/least	common	events
*	|	cluster	showcount=t	t=.1
|	table	_raw	cluster_count
● Display	Summary	of	Fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	
|	fieldsummary maxvals=5
● Show	patterns	of	co-occurring	fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	|	correlate
● View	field	relationships
sourcetype=access_combined
|	contingency	uri status
● Find	predictors	of	fields
sourcetype=access_combined
|	analyzefields classfield=status
43
Analyzefields	– Exploring	Your	Data
Examples
● Find	most/least	common	events
*	|	cluster	showcount=t	t=.1
|	table	_raw	cluster_count
● Display	Summary	of	Fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	
|	fieldsummary maxvals=5
● Show	patterns	of	co-occurring	fields.
sourcetype=access_combined
|	fields	– date*	source*	time*	|	correlate
● View	field	relationships
sourcetype=access_combined
|	contingency	uri status
● Find	predictors	of	fields
sourcetype=access_combined
|	analyzefields classfield=status
44
Machine	Learning	Toolkit	and	Showcase
Examples
● Predict	Numeric	Fields
● Predict	Categorical	Fields
● Detect	Numerical	Outliers
● Detect	Categorical	Outliers
● Forecast	Time	Series
● Cluster	Events
45
Custom	Commands
Custom	Commands
● What	is	a	Custom	Command?
– “|	haversine origin="47.62,-122.34"	outputField=dist lat lon”
● Why	do	we	use	Custom	Commands?
– Run	other/external	algorithms	on	your	Splunk	data
– Save	time	munging data	(see	Timewrap!)
– Because	you	can!
● Create	your	own	or	download	as	Apps
– Haversine (Distance	between	two	GPS	coords)
– Timewrap (Enhanced	Time	overlay)
– Levenshtein (Fuzzy	string	compare)
– R	Project (Utilize	R!)
47
Custom	Commands	– Haversine
Examples
● Download	and	install	App
Haversine
● Read	documentation	then	
use	in	SPL!
sourcetype=access*	
|	iplocation clientip
|	search	City=A*
|	haversine origin="47.62,-122.34"	
units=mi	outputField=dist lat lon
|	table	clientip,	City,	dist,	lat,	lon
48
Custom	Commands	– Haversine
Examples
● Download	and	install	App
Haversine
● Read	documentation	then	
use	in	SPL!
sourcetype=access*	
|	iplocation clientip
|	search	City=A*
|	haversine origin="47.62,-122.34"	
units=mi	outputField=dist lat lon
|	table	clientip,	City,	dist,	lat,	lon
49
For	More	Information
● Additional	information	can	be	found	in:
– Search	Manual
– Blogs
– Answers
– 6.x	Dashboard	Examples
– Operational	Intelligence	Cookbook	– available	for	purchase
– Exploring	Splunk
– goSPLUNK.com
50
Recommended	Trainings
● Splunk	Fast	Start	
– This	five-day in-person	training includes key courses
for	Splunk	Customers,	and prepares them for	the	
Splunk	Certified	Power	User	and Splunk	Certified	
Admin	exams.	Includes the	following courses:	
‣ Using	Splunk
‣ Searching and Reporting	with Splunk
‣ Creating Splunk	Knowledge	Objects
‣ Splunk	Administration
– 19-Sep-2016	- 23-Sep-2016,	9:00	- 17:00	Uhr	
Munich Arrow	ECS	AG
51
Copyright	©	2015	Splunk	Inc.
.conf2016:	The	7th Annual	
Splunk	Worldwide	Users’	Conference
• September	26-29,	2016	
• The	Disney	Swan	and	Dolphin,	Orlando
• 5000+		IT	&	Business	Professionals
• 3	days	of	technical	content
• 165+	sessions
• 3	days	of	Splunk	University
• Sept	24-26,	2016
• Get	Splunk	Certified	for	FREE!	
• Get	CPE	credits	for	CISSP,	CAP,	SSCP
• Save	thousands	on	Splunk	
education!	
• 80+	Customer	Speakers
• 35+	Apps	in	Splunk	Apps	Showcase
• 75+	Technology	Partners
• 1:1	networking:	Ask	The	Experts	and	
Security	Experts,	Birds	of	a	Feather	and	
Chalk	Talks
• NEW	hands-on	labs!	
• Expanded	show	floor,	Dashboards	
Control	Room	&	Clinic,	and	MORE!	
Visit	conf.splunk.com for	more	information
Q&A
Thank	you!

More Related Content

What's hot

SplunkLive Sydney Machine Learning & Analytics
SplunkLive Sydney Machine Learning & AnalyticsSplunkLive Sydney Machine Learning & Analytics
SplunkLive Sydney Machine Learning & AnalyticsSplunk
 
5 Ways to Improve your Security Posture with Splunk Enterprise Security
5 Ways to Improve your Security Posture with Splunk Enterprise Security5 Ways to Improve your Security Posture with Splunk Enterprise Security
5 Ways to Improve your Security Posture with Splunk Enterprise SecuritySplunk
 
SplunkLive DC April 2016 - Operationalizing Machine Learning
SplunkLive DC April 2016 - Operationalizing Machine LearningSplunkLive DC April 2016 - Operationalizing Machine Learning
SplunkLive DC April 2016 - Operationalizing Machine LearningTom LaGatta
 
SplunkLive Melbourne Machine Learning & Analytics
SplunkLive Melbourne Machine Learning & AnalyticsSplunkLive Melbourne Machine Learning & Analytics
SplunkLive Melbourne Machine Learning & AnalyticsGabrielle Knowles
 
SplunkLive Brisbane Splunking the Endpoint
SplunkLive Brisbane Splunking the EndpointSplunkLive Brisbane Splunking the Endpoint
SplunkLive Brisbane Splunking the EndpointGabrielle Knowles
 
SplunkLive Melbourne Splunk for Operational Security Intelligence
SplunkLive Melbourne Splunk for Operational Security Intelligence SplunkLive Melbourne Splunk for Operational Security Intelligence
SplunkLive Melbourne Splunk for Operational Security Intelligence Splunk
 
SplunkLive Sydney Enterprise Security & User Behavior Analytics
SplunkLive Sydney Enterprise Security & User Behavior AnalyticsSplunkLive Sydney Enterprise Security & User Behavior Analytics
SplunkLive Sydney Enterprise Security & User Behavior AnalyticsGabrielle Knowles
 
SplunkLive Perth Enterprise Security & User Behavior Analytics
SplunkLive Perth Enterprise Security & User Behavior AnalyticsSplunkLive Perth Enterprise Security & User Behavior Analytics
SplunkLive Perth Enterprise Security & User Behavior AnalyticsGabrielle Knowles
 
SplunkLive Perth Machine Learning & Analytics
SplunkLive Perth Machine Learning & AnalyticsSplunkLive Perth Machine Learning & Analytics
SplunkLive Perth Machine Learning & AnalyticsGabrielle Knowles
 
SplunkLive Canberra Enterprise Security & User Behavior Analytics
SplunkLive Canberra Enterprise Security & User Behavior AnalyticsSplunkLive Canberra Enterprise Security & User Behavior Analytics
SplunkLive Canberra Enterprise Security & User Behavior AnalyticsGabrielle Knowles
 
SplunkLive Brisbane Splunk for Operational Security Intelligence
SplunkLive Brisbane Splunk for Operational Security IntelligenceSplunkLive Brisbane Splunk for Operational Security Intelligence
SplunkLive Brisbane Splunk for Operational Security IntelligenceGabrielle Knowles
 
SplunkLive Canberra Machine Learning & Analytics
SplunkLive Canberra Machine Learning & AnalyticsSplunkLive Canberra Machine Learning & Analytics
SplunkLive Canberra Machine Learning & AnalyticsGabrielle Knowles
 
SplunkLive Melbourne Enterprise Security & User Behavior Analytics
SplunkLive Melbourne Enterprise Security & User Behavior AnalyticsSplunkLive Melbourne Enterprise Security & User Behavior Analytics
SplunkLive Melbourne Enterprise Security & User Behavior AnalyticsGabrielle Knowles
 
Splunk Forum Frankfurt - 15th Nov 2017 - AI Ops
Splunk Forum Frankfurt - 15th Nov 2017 - AI OpsSplunk Forum Frankfurt - 15th Nov 2017 - AI Ops
Splunk Forum Frankfurt - 15th Nov 2017 - AI OpsSplunk
 
Deception-Triggered Security Data Science to Detect Adversary Movements
Deception-Triggered Security Data Science to Detect Adversary MovementsDeception-Triggered Security Data Science to Detect Adversary Movements
Deception-Triggered Security Data Science to Detect Adversary MovementsSatnam Singh
 

What's hot (15)

SplunkLive Sydney Machine Learning & Analytics
SplunkLive Sydney Machine Learning & AnalyticsSplunkLive Sydney Machine Learning & Analytics
SplunkLive Sydney Machine Learning & Analytics
 
5 Ways to Improve your Security Posture with Splunk Enterprise Security
5 Ways to Improve your Security Posture with Splunk Enterprise Security5 Ways to Improve your Security Posture with Splunk Enterprise Security
5 Ways to Improve your Security Posture with Splunk Enterprise Security
 
SplunkLive DC April 2016 - Operationalizing Machine Learning
SplunkLive DC April 2016 - Operationalizing Machine LearningSplunkLive DC April 2016 - Operationalizing Machine Learning
SplunkLive DC April 2016 - Operationalizing Machine Learning
 
SplunkLive Melbourne Machine Learning & Analytics
SplunkLive Melbourne Machine Learning & AnalyticsSplunkLive Melbourne Machine Learning & Analytics
SplunkLive Melbourne Machine Learning & Analytics
 
SplunkLive Brisbane Splunking the Endpoint
SplunkLive Brisbane Splunking the EndpointSplunkLive Brisbane Splunking the Endpoint
SplunkLive Brisbane Splunking the Endpoint
 
SplunkLive Melbourne Splunk for Operational Security Intelligence
SplunkLive Melbourne Splunk for Operational Security Intelligence SplunkLive Melbourne Splunk for Operational Security Intelligence
SplunkLive Melbourne Splunk for Operational Security Intelligence
 
SplunkLive Sydney Enterprise Security & User Behavior Analytics
SplunkLive Sydney Enterprise Security & User Behavior AnalyticsSplunkLive Sydney Enterprise Security & User Behavior Analytics
SplunkLive Sydney Enterprise Security & User Behavior Analytics
 
SplunkLive Perth Enterprise Security & User Behavior Analytics
SplunkLive Perth Enterprise Security & User Behavior AnalyticsSplunkLive Perth Enterprise Security & User Behavior Analytics
SplunkLive Perth Enterprise Security & User Behavior Analytics
 
SplunkLive Perth Machine Learning & Analytics
SplunkLive Perth Machine Learning & AnalyticsSplunkLive Perth Machine Learning & Analytics
SplunkLive Perth Machine Learning & Analytics
 
SplunkLive Canberra Enterprise Security & User Behavior Analytics
SplunkLive Canberra Enterprise Security & User Behavior AnalyticsSplunkLive Canberra Enterprise Security & User Behavior Analytics
SplunkLive Canberra Enterprise Security & User Behavior Analytics
 
SplunkLive Brisbane Splunk for Operational Security Intelligence
SplunkLive Brisbane Splunk for Operational Security IntelligenceSplunkLive Brisbane Splunk for Operational Security Intelligence
SplunkLive Brisbane Splunk for Operational Security Intelligence
 
SplunkLive Canberra Machine Learning & Analytics
SplunkLive Canberra Machine Learning & AnalyticsSplunkLive Canberra Machine Learning & Analytics
SplunkLive Canberra Machine Learning & Analytics
 
SplunkLive Melbourne Enterprise Security & User Behavior Analytics
SplunkLive Melbourne Enterprise Security & User Behavior AnalyticsSplunkLive Melbourne Enterprise Security & User Behavior Analytics
SplunkLive Melbourne Enterprise Security & User Behavior Analytics
 
Splunk Forum Frankfurt - 15th Nov 2017 - AI Ops
Splunk Forum Frankfurt - 15th Nov 2017 - AI OpsSplunk Forum Frankfurt - 15th Nov 2017 - AI Ops
Splunk Forum Frankfurt - 15th Nov 2017 - AI Ops
 
Deception-Triggered Security Data Science to Detect Adversary Movements
Deception-Triggered Security Data Science to Detect Adversary MovementsDeception-Triggered Security Data Science to Detect Adversary Movements
Deception-Triggered Security Data Science to Detect Adversary Movements
 

Viewers also liked

SplunkLive! Warsaw 2016 - Getting started with Splunk
SplunkLive! Warsaw 2016 - Getting started with SplunkSplunkLive! Warsaw 2016 - Getting started with Splunk
SplunkLive! Warsaw 2016 - Getting started with SplunkSplunk
 
Power of SPL
Power of SPLPower of SPL
Power of SPLSplunk
 
Hands-On Security Breakout Session- ES Guided Tour
Hands-On Security Breakout Session- ES Guided TourHands-On Security Breakout Session- ES Guided Tour
Hands-On Security Breakout Session- ES Guided TourSplunk
 
Splunk at Banco Popolare de Sondrio
Splunk at Banco Popolare de SondrioSplunk at Banco Popolare de Sondrio
Splunk at Banco Popolare de SondrioSplunk
 
SplunkSummit 2015 - Splunking the Endpoint
SplunkSummit 2015 - Splunking the EndpointSplunkSummit 2015 - Splunking the Endpoint
SplunkSummit 2015 - Splunking the EndpointSplunk
 
Driving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick AirportDriving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick AirportSplunk
 
Power of Splunk Search Processing Language (SPL) ...
Power of Splunk Search Processing Language (SPL)                             ...Power of Splunk Search Processing Language (SPL)                             ...
Power of Splunk Search Processing Language (SPL) ...Splunk
 
Splunk Enterprise for InfoSec Hands-On
Splunk Enterprise for InfoSec Hands-OnSplunk Enterprise for InfoSec Hands-On
Splunk Enterprise for InfoSec Hands-OnSplunk
 
Splunk for Machine Learning and Analytics
Splunk for Machine Learning and AnalyticsSplunk for Machine Learning and Analytics
Splunk for Machine Learning and AnalyticsSplunk
 

Viewers also liked (9)

SplunkLive! Warsaw 2016 - Getting started with Splunk
SplunkLive! Warsaw 2016 - Getting started with SplunkSplunkLive! Warsaw 2016 - Getting started with Splunk
SplunkLive! Warsaw 2016 - Getting started with Splunk
 
Power of SPL
Power of SPLPower of SPL
Power of SPL
 
Hands-On Security Breakout Session- ES Guided Tour
Hands-On Security Breakout Session- ES Guided TourHands-On Security Breakout Session- ES Guided Tour
Hands-On Security Breakout Session- ES Guided Tour
 
Splunk at Banco Popolare de Sondrio
Splunk at Banco Popolare de SondrioSplunk at Banco Popolare de Sondrio
Splunk at Banco Popolare de Sondrio
 
SplunkSummit 2015 - Splunking the Endpoint
SplunkSummit 2015 - Splunking the EndpointSplunkSummit 2015 - Splunking the Endpoint
SplunkSummit 2015 - Splunking the Endpoint
 
Driving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick AirportDriving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick Airport
 
Power of Splunk Search Processing Language (SPL) ...
Power of Splunk Search Processing Language (SPL)                             ...Power of Splunk Search Processing Language (SPL)                             ...
Power of Splunk Search Processing Language (SPL) ...
 
Splunk Enterprise for InfoSec Hands-On
Splunk Enterprise for InfoSec Hands-OnSplunk Enterprise for InfoSec Hands-On
Splunk Enterprise for InfoSec Hands-On
 
Splunk for Machine Learning and Analytics
Splunk for Machine Learning and AnalyticsSplunk for Machine Learning and Analytics
Splunk for Machine Learning and Analytics
 

Similar to Splunk Webinar: Mit Splunk SPL Maschinendaten durchsuchen, transformieren und visualisieren

SplunkLive! Zurich 2017 - The Power of SPL
SplunkLive! Zurich 2017 - The Power of SPLSplunkLive! Zurich 2017 - The Power of SPL
SplunkLive! Zurich 2017 - The Power of SPLSplunk
 
SplunkLive! Analytics with Splunk Enterprise - Part 1
SplunkLive! Analytics with Splunk Enterprise - Part 1SplunkLive! Analytics with Splunk Enterprise - Part 1
SplunkLive! Analytics with Splunk Enterprise - Part 1Splunk
 
Getting Started with Splunk Enterprises
Getting Started with Splunk EnterprisesGetting Started with Splunk Enterprises
Getting Started with Splunk EnterprisesSplunk
 
Service intelligence hands on workshop
Service intelligence hands on workshopService intelligence hands on workshop
Service intelligence hands on workshopSplunk
 
Service Intelligence hands on workshop
Service Intelligence hands on workshopService Intelligence hands on workshop
Service Intelligence hands on workshopSplunk
 
Service intelligence hands on workshop
Service intelligence hands on workshopService intelligence hands on workshop
Service intelligence hands on workshopMegan Shippy
 
Power of SPL - Search Processing Language
Power of SPL - Search Processing LanguagePower of SPL - Search Processing Language
Power of SPL - Search Processing LanguageSplunk
 
Lesser known-search-commands
Lesser known-search-commandsLesser known-search-commands
Lesser known-search-commandspendoo
 
Getting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseGetting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseSplunk
 
Power of Splunk Search Processing Language (SPL)
Power of Splunk Search Processing Language (SPL)Power of Splunk Search Processing Language (SPL)
Power of Splunk Search Processing Language (SPL)Splunk
 
Getting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseGetting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseSplunk
 
Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...
Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...
Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...Splunk
 
Building an Analytics Enables SOC
Building an Analytics Enables SOCBuilding an Analytics Enables SOC
Building an Analytics Enables SOCSplunk
 
SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...
SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...
SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...Splunk
 
Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...
Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...
Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...Splunk
 
Splunk in Staples: IT Operations
Splunk in Staples: IT OperationsSplunk in Staples: IT Operations
Splunk in Staples: IT OperationsTimur Bagirov
 
Getting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseGetting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseSplunk
 
Getting Started with Splunk Enterprise Hands-On
Getting Started with Splunk Enterprise Hands-OnGetting Started with Splunk Enterprise Hands-On
Getting Started with Splunk Enterprise Hands-OnSplunk
 
Getting Started with Splunk Breakout Session
Getting Started with Splunk Breakout SessionGetting Started with Splunk Breakout Session
Getting Started with Splunk Breakout SessionSplunk
 
Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...
Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...
Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...Splunk
 

Similar to Splunk Webinar: Mit Splunk SPL Maschinendaten durchsuchen, transformieren und visualisieren (20)

SplunkLive! Zurich 2017 - The Power of SPL
SplunkLive! Zurich 2017 - The Power of SPLSplunkLive! Zurich 2017 - The Power of SPL
SplunkLive! Zurich 2017 - The Power of SPL
 
SplunkLive! Analytics with Splunk Enterprise - Part 1
SplunkLive! Analytics with Splunk Enterprise - Part 1SplunkLive! Analytics with Splunk Enterprise - Part 1
SplunkLive! Analytics with Splunk Enterprise - Part 1
 
Getting Started with Splunk Enterprises
Getting Started with Splunk EnterprisesGetting Started with Splunk Enterprises
Getting Started with Splunk Enterprises
 
Service intelligence hands on workshop
Service intelligence hands on workshopService intelligence hands on workshop
Service intelligence hands on workshop
 
Service Intelligence hands on workshop
Service Intelligence hands on workshopService Intelligence hands on workshop
Service Intelligence hands on workshop
 
Service intelligence hands on workshop
Service intelligence hands on workshopService intelligence hands on workshop
Service intelligence hands on workshop
 
Power of SPL - Search Processing Language
Power of SPL - Search Processing LanguagePower of SPL - Search Processing Language
Power of SPL - Search Processing Language
 
Lesser known-search-commands
Lesser known-search-commandsLesser known-search-commands
Lesser known-search-commands
 
Getting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseGetting Started with Splunk Enterprise
Getting Started with Splunk Enterprise
 
Power of Splunk Search Processing Language (SPL)
Power of Splunk Search Processing Language (SPL)Power of Splunk Search Processing Language (SPL)
Power of Splunk Search Processing Language (SPL)
 
Getting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseGetting Started with Splunk Enterprise
Getting Started with Splunk Enterprise
 
Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...
Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...
Accelerate Troubleshooting and Reinvent Monitoring with Interactive Visualiza...
 
Building an Analytics Enables SOC
Building an Analytics Enables SOCBuilding an Analytics Enables SOC
Building an Analytics Enables SOC
 
SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...
SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...
SplunkLive! Frankfurt 2018 - Legacy SIEM to Splunk, How to Conquer Migration ...
 
Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...
Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...
Splunk conf2014 - Splunk Monitoring - New Native Tools for Monitoring your Sp...
 
Splunk in Staples: IT Operations
Splunk in Staples: IT OperationsSplunk in Staples: IT Operations
Splunk in Staples: IT Operations
 
Getting Started with Splunk Enterprise
Getting Started with Splunk EnterpriseGetting Started with Splunk Enterprise
Getting Started with Splunk Enterprise
 
Getting Started with Splunk Enterprise Hands-On
Getting Started with Splunk Enterprise Hands-OnGetting Started with Splunk Enterprise Hands-On
Getting Started with Splunk Enterprise Hands-On
 
Getting Started with Splunk Breakout Session
Getting Started with Splunk Breakout SessionGetting Started with Splunk Breakout Session
Getting Started with Splunk Breakout Session
 
Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...
Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...
Splunk Discovery: Warsaw 2018 - Legacy SIEM to Splunk, How to Conquer Migrati...
 

More from Georg Knon

SplunkLive! Zürich 2016 - Use Case Swisscom
SplunkLive! Zürich 2016 - Use Case SwisscomSplunkLive! Zürich 2016 - Use Case Swisscom
SplunkLive! Zürich 2016 - Use Case SwisscomGeorg Knon
 
SplunkLive! Zürich 2016 - Use Case Helvetia
SplunkLive! Zürich 2016 - Use Case HelvetiaSplunkLive! Zürich 2016 - Use Case Helvetia
SplunkLive! Zürich 2016 - Use Case HelvetiaGeorg Knon
 
SplunkLive! Zürich 2016 - Use Case Adcubum
SplunkLive! Zürich 2016 - Use Case AdcubumSplunkLive! Zürich 2016 - Use Case Adcubum
SplunkLive! Zürich 2016 - Use Case AdcubumGeorg Knon
 
Splunk Webinar: Splunk für Application Management
Splunk Webinar: Splunk für Application ManagementSplunk Webinar: Splunk für Application Management
Splunk Webinar: Splunk für Application ManagementGeorg Knon
 
Splunk Webinar: IT Operations Demo für Troubleshooting & Dashboarding
Splunk Webinar: IT Operations Demo für Troubleshooting & DashboardingSplunk Webinar: IT Operations Demo für Troubleshooting & Dashboarding
Splunk Webinar: IT Operations Demo für Troubleshooting & DashboardingGeorg Knon
 
Splunk for IT Operations Breakout Session
Splunk for IT Operations Breakout SessionSplunk for IT Operations Breakout Session
Splunk for IT Operations Breakout SessionGeorg Knon
 
Getting started with Splunk - Break out Session
Getting started with Splunk - Break out SessionGetting started with Splunk - Break out Session
Getting started with Splunk - Break out SessionGeorg Knon
 
Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...
Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...
Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...Georg Knon
 
Splunk Webinar: Verwandeln Sie Datensilos in Operational Intelligence
Splunk Webinar: Verwandeln Sie Datensilos in Operational IntelligenceSplunk Webinar: Verwandeln Sie Datensilos in Operational Intelligence
Splunk Webinar: Verwandeln Sie Datensilos in Operational IntelligenceGeorg Knon
 
5 Möglichkeiten zur Verbesserung Ihrer Security
5 Möglichkeiten zur Verbesserung Ihrer Security5 Möglichkeiten zur Verbesserung Ihrer Security
5 Möglichkeiten zur Verbesserung Ihrer SecurityGeorg Knon
 
Splunk IT Service Intelligence
Splunk IT Service IntelligenceSplunk IT Service Intelligence
Splunk IT Service IntelligenceGeorg Knon
 
Data models pivot with splunk break out session
Data models pivot with splunk break out sessionData models pivot with splunk break out session
Data models pivot with splunk break out sessionGeorg Knon
 
Splunk IT Service Intelligence
Splunk IT Service IntelligenceSplunk IT Service Intelligence
Splunk IT Service IntelligenceGeorg Knon
 
Splunk Internet of Things Roundtable 2015
Splunk Internet of Things Roundtable 2015Splunk Internet of Things Roundtable 2015
Splunk Internet of Things Roundtable 2015Georg Knon
 
Webinar splunk cloud saa s plattform für operational intelligence
Webinar splunk cloud   saa s plattform für operational intelligenceWebinar splunk cloud   saa s plattform für operational intelligence
Webinar splunk cloud saa s plattform für operational intelligenceGeorg Knon
 
Splunk Webinar: Maschinendaten anreichern mit Informationen
Splunk Webinar: Maschinendaten anreichern mit InformationenSplunk Webinar: Maschinendaten anreichern mit Informationen
Splunk Webinar: Maschinendaten anreichern mit InformationenGeorg Knon
 
Splunk App for Stream - Einblicke in Ihren Netzwerkverkehr
Splunk App for Stream - Einblicke in Ihren NetzwerkverkehrSplunk App for Stream - Einblicke in Ihren Netzwerkverkehr
Splunk App for Stream - Einblicke in Ihren NetzwerkverkehrGeorg Knon
 
Webinar: Vulnerability Management leicht gemacht – mit Splunk und Qualys
Webinar: Vulnerability Management leicht gemacht – mit  Splunk und QualysWebinar: Vulnerability Management leicht gemacht – mit  Splunk und Qualys
Webinar: Vulnerability Management leicht gemacht – mit Splunk und QualysGeorg Knon
 
Webinar: Neues zur Splunk App for Enterprise Security
Webinar: Neues zur Splunk App for Enterprise SecurityWebinar: Neues zur Splunk App for Enterprise Security
Webinar: Neues zur Splunk App for Enterprise SecurityGeorg Knon
 
Splunk und das Triage Tool THOR
Splunk und das Triage Tool THORSplunk und das Triage Tool THOR
Splunk und das Triage Tool THORGeorg Knon
 

More from Georg Knon (20)

SplunkLive! Zürich 2016 - Use Case Swisscom
SplunkLive! Zürich 2016 - Use Case SwisscomSplunkLive! Zürich 2016 - Use Case Swisscom
SplunkLive! Zürich 2016 - Use Case Swisscom
 
SplunkLive! Zürich 2016 - Use Case Helvetia
SplunkLive! Zürich 2016 - Use Case HelvetiaSplunkLive! Zürich 2016 - Use Case Helvetia
SplunkLive! Zürich 2016 - Use Case Helvetia
 
SplunkLive! Zürich 2016 - Use Case Adcubum
SplunkLive! Zürich 2016 - Use Case AdcubumSplunkLive! Zürich 2016 - Use Case Adcubum
SplunkLive! Zürich 2016 - Use Case Adcubum
 
Splunk Webinar: Splunk für Application Management
Splunk Webinar: Splunk für Application ManagementSplunk Webinar: Splunk für Application Management
Splunk Webinar: Splunk für Application Management
 
Splunk Webinar: IT Operations Demo für Troubleshooting & Dashboarding
Splunk Webinar: IT Operations Demo für Troubleshooting & DashboardingSplunk Webinar: IT Operations Demo für Troubleshooting & Dashboarding
Splunk Webinar: IT Operations Demo für Troubleshooting & Dashboarding
 
Splunk for IT Operations Breakout Session
Splunk for IT Operations Breakout SessionSplunk for IT Operations Breakout Session
Splunk for IT Operations Breakout Session
 
Getting started with Splunk - Break out Session
Getting started with Splunk - Break out SessionGetting started with Splunk - Break out Session
Getting started with Splunk - Break out Session
 
Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...
Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...
Webinar Big Data zur Echtzeit-Betrugserkennung im eBanking nutzen mit Splunk ...
 
Splunk Webinar: Verwandeln Sie Datensilos in Operational Intelligence
Splunk Webinar: Verwandeln Sie Datensilos in Operational IntelligenceSplunk Webinar: Verwandeln Sie Datensilos in Operational Intelligence
Splunk Webinar: Verwandeln Sie Datensilos in Operational Intelligence
 
5 Möglichkeiten zur Verbesserung Ihrer Security
5 Möglichkeiten zur Verbesserung Ihrer Security5 Möglichkeiten zur Verbesserung Ihrer Security
5 Möglichkeiten zur Verbesserung Ihrer Security
 
Splunk IT Service Intelligence
Splunk IT Service IntelligenceSplunk IT Service Intelligence
Splunk IT Service Intelligence
 
Data models pivot with splunk break out session
Data models pivot with splunk break out sessionData models pivot with splunk break out session
Data models pivot with splunk break out session
 
Splunk IT Service Intelligence
Splunk IT Service IntelligenceSplunk IT Service Intelligence
Splunk IT Service Intelligence
 
Splunk Internet of Things Roundtable 2015
Splunk Internet of Things Roundtable 2015Splunk Internet of Things Roundtable 2015
Splunk Internet of Things Roundtable 2015
 
Webinar splunk cloud saa s plattform für operational intelligence
Webinar splunk cloud   saa s plattform für operational intelligenceWebinar splunk cloud   saa s plattform für operational intelligence
Webinar splunk cloud saa s plattform für operational intelligence
 
Splunk Webinar: Maschinendaten anreichern mit Informationen
Splunk Webinar: Maschinendaten anreichern mit InformationenSplunk Webinar: Maschinendaten anreichern mit Informationen
Splunk Webinar: Maschinendaten anreichern mit Informationen
 
Splunk App for Stream - Einblicke in Ihren Netzwerkverkehr
Splunk App for Stream - Einblicke in Ihren NetzwerkverkehrSplunk App for Stream - Einblicke in Ihren Netzwerkverkehr
Splunk App for Stream - Einblicke in Ihren Netzwerkverkehr
 
Webinar: Vulnerability Management leicht gemacht – mit Splunk und Qualys
Webinar: Vulnerability Management leicht gemacht – mit  Splunk und QualysWebinar: Vulnerability Management leicht gemacht – mit  Splunk und Qualys
Webinar: Vulnerability Management leicht gemacht – mit Splunk und Qualys
 
Webinar: Neues zur Splunk App for Enterprise Security
Webinar: Neues zur Splunk App for Enterprise SecurityWebinar: Neues zur Splunk App for Enterprise Security
Webinar: Neues zur Splunk App for Enterprise Security
 
Splunk und das Triage Tool THOR
Splunk und das Triage Tool THORSplunk und das Triage Tool THOR
Splunk und das Triage Tool THOR
 

Recently uploaded

My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
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
 
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
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
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
 

Recently uploaded (20)

My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
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
 
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
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
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
 

Splunk Webinar: Mit Splunk SPL Maschinendaten durchsuchen, transformieren und visualisieren