SlideShare ist ein Scribd-Unternehmen logo
1 von 72
Kibana:
Real-World Examples
IT Meeting, 17th July 2020
Discover UI
Discover UI
Discover UI
Discover UI
UI elements:
● Time Picker
● Query Bar
● Result Area
○ Histogram
○ Table
● Index selector
● Available fields
Discover UI
UI elements:
● Expanded document
○ Table
○ JSON
Discover UI
Kibana Search Types
● Free Text
Queries all fields including _source field
Less performant
Example: GDPR was here. Run. Run away from here
● Field Level
Queries for values of specific fields
More performant/accurate
Example: message:GDPR AND host.name:batch-5
● Filters
Add conditional filters based on fields in log
Always additive
Kibana Search Types
Query samples (1)
Sample #$i=1:
GDPR was here
Query samples
KQL
Sample #$i:
GDPR was here
1. Every word is a search term
2. It assumes implicit OR operator
Query samples
KQL
Sample #$i:
GDPR was here
We can translate it like this:
GDPR OR was OR here
Query samples
KQL
Sample #++$i:
"GDPR was here"
Query samples
KQL
Sample #++$i:
message:"GDPR was here"
Query samples
KQL Kibana supports fields autocomplete
Sample #++$i:
source.geo.city_name:Milan OR
source.geo.city_name:Rome
Query samples
KQL
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND url.original:/cbr/ws/utils/proxy-list
Query samples
KQL
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND http.response.status_code >= 200
AND http.response.status_code < 300
Query samples
KQL Supported operators: : < <= > >=
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND url.original:/cbr/api/*
Query samples
KQL
Sample #++$i:
NOT source.geo.country_iso_code:IT
Query samples
KQL
Sample #++$i:
NOT source.geo.country_iso_code:IT
_exists_:source.geo.country_iso_code
Query samples
KQL
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND user_agent.*:Firefox
Query samples
KQL
Sample #++$i:
http.response.status_code:*
Query samples
KQL Find all docs where the field exists
Kibana Query Language
It supports:
● Terms or phrase search
● Rage operators
● Wildcard
● AND, OR, NOT operator
● Grouping (override precedence)
KQL docs is here https://sal.cr/2WaLutc.lnk
Kibana Query Language
Advanced Kibana Search Types
● Wildcard/Fuzziness
? to replace a single character
* to replace multiple characters
Example: GD?R
● Proximity
Query word/phrases that are further apart or in a different order
Example: "GDPR here"~1
● Boosting
Manually specify relevance ranking of returned documents
Example: message:Facile^4 mutui^0.1 Cbr^8
Advanced Kibana Search Types
● Ranges
Ranges can be specified for date, numeric, or string fields
Example: http.response.status_code:[200 TO 299]
● Boolean operators
Must +, must not -, AND, OR, NOT
● Regular Expression (Regexp Queries)
Uses regexp term queries (pattern matching)
Domain-specific regexp library (Elastic)
Wrap with forward slashes (/collaboratori/)
Example: url.original://assicurazioni-[a-z]+/preventivo.html/
Advanced Kibana Search Types
Query samples (2)
Sample #++$i:
/[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}/
Query samples
Lucene
Sample #++$i:
message:/[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}/
Query samples
Lucene
Sample #++$i:
url.original://api/email/.*/
Query samples
Lucene
Sample #++$i:
url.original://api/email/status/[0-9]+/
Query samples
Lucene
Sample #++$i:
/https://[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}:443/api/
Query samples
Lucene
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND http.response.status_code:[200 TO 299]
Query samples
Lucene
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND http.response.status_code:[200 TO *]
Query samples
Lucene
Sample #++$i:
destination.domain:collaboratori.facile.it-443
AND http.response.status_code:[200 TO 300}
Query samples
Lucene
Sample #++$i:
destination.domain:collaboratori.facile.it*
AND host.name:web-1?
Query samples
Lucene
Sample #++$i:
message:GDRP~
Query samples
Lucene
Sample #++$i:
message:GDRP~1
Query samples
Lucene
Sample #++$i:
message:"GDPR away"~5
Query samples
Lucene
Sample #++$i:
message:"GDPR away"~5
Query samples
Lucene
Sample #++$i:
"Sending request" -NOTIFICATION +ivass
Query samples
Lucene
Fuzziness
Query: collaborator~
Fuzziness uses the Damerau-Levenshtein distance to find all terms with a
maximum of two changes, where a change is the insertion, deletion or
substitution of a single character, or transposition of two adjacent
characters.
The default edit distance is 2, but an edit distance of 1 should be sufficient
to catch 80% of all human misspellings.
More about Damerau-Levenshtein distance https://sal.cr/2ZZooHb.lnk
Fuzziness
Proximity searches
Fuzzy queries can specify a maximum edit distance for
characters in a word.
A proximity search allows us to specify a maximum edit
distance of words in a phrase.
Proximity searches
● Query: "Simpson Homer"
It expects all of the terms in exactly the same order
● Query: "Simpson Homer"~5
It’s a proximity query
The closer the text in a field is to the original order specified in the query
string, the more relevant that document is considered to be.
"Homer Simpson" is more relevant than "Homer Jay Simpson".
Proximity searches
Boolean operators
The preferred operators are
● + this term must be present
● - this term must not be present
● all other terms are optional
For example, this query:
assicurazione +zuzu -MUTUI_ANAGRAFICA_ELABORAZIONE
states that:
● zuzu must be present
● MUTUI_ANAGRAFICA_ELABORAZIONE must not be present
● assicurazione is optional, its presence increases the relevance
Boolean operators
Lucene Query Language
Lucene Query Language
Our query: "GDPR was here"
GET /_search
{
"query": {
"query_string" : {
"query": ""GDPR was here""
}
}
}
Lucene Query Language
Our query: "GDPR was here"
GET /_search
{
"query": {
"query_string" : {
"query": ""GDPR was here""
}
}
}
Query string syntax supports:
● Field names
● Wildcards
● “Not very” regular expressions
● Fuzziness
● Proximity searches
● Ranges
● Boosting
● Boolean operators
Mixing fuzzy and wildcard operators is not supported
Check query string query docs here https://sal.cr/2ZnEBqB.lnk
Query string syntax
● Elasticsearch uses Apache Lucene's regular expression engine to parse
queries
● Lucene’s regular expression engine does not use the Perl Compatible
Regular Expressions (PCRE) library
For example:
● Lucene’s regular expression engine does not support anchor operators, such
as ^ (beginning of line) or $ (end of line). To match a term, the regular
expression must match the entire string
Regular expression syntax docs is here https://sal.cr/3h2S11h.lnk
“Not very” regular expressions
Adding filters using UI
Adding filters using UI
Adding filters using UI
Fields visualization
Fields visualization
View surrounding documents
View surrounding documents
A naive approach for search
on Kibana
A naive approach for search on Kibana
Choose index
A naive approach for search on Kibana
Choose index Set time range
A naive approach for search on Kibana
Choose index Set time range
A naive approach for search on Kibana
Choose index Set time range
Free text search
A naive approach for search on Kibana
Choose index Set time range
Free text search
A naive approach for search on Kibana
Choose index Set time range
Free text search
Field search
A naive approach for search on Kibana
Choose index Set time range
Free text search
Field search Add filters
1. Choose index
2. Set time range
3. Start with free text search
4. Refine search with field matching and adding filters
5. Inspect surrounding documents
A naive approach for search on Kibana
Thanks for your attention

Weitere ähnliche Inhalte

Was ist angesagt?

2010 03 Lodoxf Openflydata
2010 03 Lodoxf Openflydata2010 03 Lodoxf Openflydata
2010 03 Lodoxf Openflydata
Jun Zhao
 
2009 Dils Flyweb
2009 Dils Flyweb2009 Dils Flyweb
2009 Dils Flyweb
Jun Zhao
 
WebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPediaWebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPedia
Katrien Verbert
 
SPARQL 1.1 Update (2013-03-05)
SPARQL 1.1 Update (2013-03-05)SPARQL 1.1 Update (2013-03-05)
SPARQL 1.1 Update (2013-03-05)
andyseaborne
 

Was ist angesagt? (20)

Hacking Lucene for Custom Search Results
Hacking Lucene for Custom Search ResultsHacking Lucene for Custom Search Results
Hacking Lucene for Custom Search Results
 
Lucene
LuceneLucene
Lucene
 
The Lonesome LOD Cloud
The Lonesome LOD CloudThe Lonesome LOD Cloud
The Lonesome LOD Cloud
 
2010 03 Lodoxf Openflydata
2010 03 Lodoxf Openflydata2010 03 Lodoxf Openflydata
2010 03 Lodoxf Openflydata
 
DBpedia's Triple Pattern Fragments
DBpedia's Triple Pattern FragmentsDBpedia's Triple Pattern Fragments
DBpedia's Triple Pattern Fragments
 
2009 Dils Flyweb
2009 Dils Flyweb2009 Dils Flyweb
2009 Dils Flyweb
 
Getting started with apache solr
Getting started with apache solrGetting started with apache solr
Getting started with apache solr
 
Linked Data Fragments
Linked Data FragmentsLinked Data Fragments
Linked Data Fragments
 
Semantic web meetup – sparql tutorial
Semantic web meetup – sparql tutorialSemantic web meetup – sparql tutorial
Semantic web meetup – sparql tutorial
 
Using Apache Solr
Using Apache SolrUsing Apache Solr
Using Apache Solr
 
WebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPediaWebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPedia
 
Files and streams
Files and streamsFiles and streams
Files and streams
 
Chapter 11
Chapter 11Chapter 11
Chapter 11
 
ParlBench: a SPARQL-benchmark for electronic publishing applications.
ParlBench: a SPARQL-benchmark for electronic publishing applications.ParlBench: a SPARQL-benchmark for electronic publishing applications.
ParlBench: a SPARQL-benchmark for electronic publishing applications.
 
working with files
working with filesworking with files
working with files
 
Interfaces to xapian
Interfaces to xapianInterfaces to xapian
Interfaces to xapian
 
Introduction to Apache Solr
Introduction to Apache SolrIntroduction to Apache Solr
Introduction to Apache Solr
 
Using Thinking Sphinx with rails
Using Thinking Sphinx with railsUsing Thinking Sphinx with rails
Using Thinking Sphinx with rails
 
Getting Started with Solr
Getting Started with SolrGetting Started with Solr
Getting Started with Solr
 
SPARQL 1.1 Update (2013-03-05)
SPARQL 1.1 Update (2013-03-05)SPARQL 1.1 Update (2013-03-05)
SPARQL 1.1 Update (2013-03-05)
 

Ähnlich wie Kibana: Real-World Examples

Elasticsearch And Ruby [RuPy2012]
Elasticsearch And Ruby [RuPy2012]Elasticsearch And Ruby [RuPy2012]
Elasticsearch And Ruby [RuPy2012]
Karel Minarik
 
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...
Lucidworks
 
OpenSearch
OpenSearchOpenSearch
OpenSearch
hchen1
 

Ähnlich wie Kibana: Real-World Examples (20)

Introduction to Google API - Focusky
Introduction to Google API - FocuskyIntroduction to Google API - Focusky
Introduction to Google API - Focusky
 
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
 
Advanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAdvanced full text searching techniques using Lucene
Advanced full text searching techniques using Lucene
 
Search Engine-Building with Lucene and Solr, Part 1 (SoCal Code Camp LA 2013)
Search Engine-Building with Lucene and Solr, Part 1 (SoCal Code Camp LA 2013)Search Engine-Building with Lucene and Solr, Part 1 (SoCal Code Camp LA 2013)
Search Engine-Building with Lucene and Solr, Part 1 (SoCal Code Camp LA 2013)
 
Elasticsearch And Ruby [RuPy2012]
Elasticsearch And Ruby [RuPy2012]Elasticsearch And Ruby [RuPy2012]
Elasticsearch And Ruby [RuPy2012]
 
Introduction to Elasticsearch
Introduction to ElasticsearchIntroduction to Elasticsearch
Introduction to Elasticsearch
 
Search Engine Building with Lucene and Solr (So Code Camp San Diego 2014)
Search Engine Building with Lucene and Solr (So Code Camp San Diego 2014)Search Engine Building with Lucene and Solr (So Code Camp San Diego 2014)
Search Engine Building with Lucene and Solr (So Code Camp San Diego 2014)
 
Google
GoogleGoogle
Google
 
Search Intelligence & MarkLogic Search API
Search Intelligence & MarkLogic Search APISearch Intelligence & MarkLogic Search API
Search Intelligence & MarkLogic Search API
 
ElasticSearch
ElasticSearchElasticSearch
ElasticSearch
 
(BDT209) Launch: Amazon Elasticsearch For Real-Time Data Analytics
(BDT209) Launch: Amazon Elasticsearch For Real-Time Data Analytics(BDT209) Launch: Amazon Elasticsearch For Real-Time Data Analytics
(BDT209) Launch: Amazon Elasticsearch For Real-Time Data Analytics
 
Finding the right stuff, an intro to Elasticsearch (at Rug::B)
Finding the right stuff, an intro to Elasticsearch (at Rug::B) Finding the right stuff, an intro to Elasticsearch (at Rug::B)
Finding the right stuff, an intro to Elasticsearch (at Rug::B)
 
REST API testing with SpecFlow
REST API testing with SpecFlowREST API testing with SpecFlow
REST API testing with SpecFlow
 
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine: Presented by T...
 
Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016
 
Finding the right stuff, an intro to Elasticsearch with Ruby/Rails
Finding the right stuff, an intro to Elasticsearch with Ruby/RailsFinding the right stuff, an intro to Elasticsearch with Ruby/Rails
Finding the right stuff, an intro to Elasticsearch with Ruby/Rails
 
OpenSearch
OpenSearchOpenSearch
OpenSearch
 
Apache Lucene Searching The Web
Apache Lucene Searching The WebApache Lucene Searching The Web
Apache Lucene Searching The Web
 
Apache Lucene: Searching the Web and Everything Else (Jazoon07)
Apache Lucene: Searching the Web and Everything Else (Jazoon07)Apache Lucene: Searching the Web and Everything Else (Jazoon07)
Apache Lucene: Searching the Web and Everything Else (Jazoon07)
 
Academy PRO: Querying Elasticsearch
Academy PRO: Querying ElasticsearchAcademy PRO: Querying Elasticsearch
Academy PRO: Querying Elasticsearch
 

Mehr von Salvatore Cordiano

Mehr von Salvatore Cordiano (20)

Transformed: Moving to the Product Operating Model
Transformed: Moving to the Product Operating ModelTransformed: Moving to the Product Operating Model
Transformed: Moving to the Product Operating Model
 
Executive Master in Business Administration
Executive Master in Business AdministrationExecutive Master in Business Administration
Executive Master in Business Administration
 
Facile.it Partner 🚀 Hackathon 2023 - What we learned
Facile.it Partner 🚀 Hackathon 2023 - What we learnedFacile.it Partner 🚀 Hackathon 2023 - What we learned
Facile.it Partner 🚀 Hackathon 2023 - What we learned
 
Accrescere la motivazione per raggiungere gli obiettivi
Accrescere la motivazione per raggiungere gli obiettiviAccrescere la motivazione per raggiungere gli obiettivi
Accrescere la motivazione per raggiungere gli obiettivi
 
Il potere delle domande
Il potere delle domandeIl potere delle domande
Il potere delle domande
 
Impara a delegare
Impara a delegareImpara a delegare
Impara a delegare
 
Migliora il tuo ascolto
Migliora il tuo ascoltoMigliora il tuo ascolto
Migliora il tuo ascolto
 
Negoziazione organizzativa
Negoziazione organizzativaNegoziazione organizzativa
Negoziazione organizzativa
 
Migliora le prestazioni dei tuoi collaboratori
Migliora le prestazioni dei tuoi collaboratoriMigliora le prestazioni dei tuoi collaboratori
Migliora le prestazioni dei tuoi collaboratori
 
Charles Péguy - Il denaro
Charles Péguy - Il denaroCharles Péguy - Il denaro
Charles Péguy - Il denaro
 
Delivering Effective Feedback - FP Talks
Delivering Effective Feedback - FP TalksDelivering Effective Feedback - FP Talks
Delivering Effective Feedback - FP Talks
 
No Silver Bullet - Essence and Accident in Software Engineering
No Silver Bullet - Essence and Accident in Software EngineeringNo Silver Bullet - Essence and Accident in Software Engineering
No Silver Bullet - Essence and Accident in Software Engineering
 
Facile.it Partner Hackathon - What we learned
Facile.it Partner Hackathon - What we learnedFacile.it Partner Hackathon - What we learned
Facile.it Partner Hackathon - What we learned
 
FP Hackathon - Closing, remarks and awards ceremony
FP Hackathon - Closing, remarks and awards ceremonyFP Hackathon - Closing, remarks and awards ceremony
FP Hackathon - Closing, remarks and awards ceremony
 
Facile.it Partner Hackathon 2022
Facile.it Partner Hackathon 2022Facile.it Partner Hackathon 2022
Facile.it Partner Hackathon 2022
 
Remarks about Ownership
Remarks about OwnershipRemarks about Ownership
Remarks about Ownership
 
Introducing Kaizen
Introducing KaizenIntroducing Kaizen
Introducing Kaizen
 
Introducing Eisenhower Matrix
Introducing Eisenhower MatrixIntroducing Eisenhower Matrix
Introducing Eisenhower Matrix
 
The Blake Mouton Managerial Grid
The Blake Mouton Managerial GridThe Blake Mouton Managerial Grid
The Blake Mouton Managerial Grid
 
Facile.it Partner Hackathon (kick-off)
Facile.it Partner Hackathon (kick-off)Facile.it Partner Hackathon (kick-off)
Facile.it Partner Hackathon (kick-off)
 

Kürzlich hochgeladen

Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
panagenda
 
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfBreaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
UK Journal
 

Kürzlich hochgeladen (20)

AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101
 
Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdf
 
AI revolution and Salesforce, Jiří Karpíšek
AI revolution and Salesforce, Jiří KarpíšekAI revolution and Salesforce, Jiří Karpíšek
AI revolution and Salesforce, Jiří Karpíšek
 
Free and Effective: Making Flows Publicly Accessible, Yumi Ibrahimzade
Free and Effective: Making Flows Publicly Accessible, Yumi IbrahimzadeFree and Effective: Making Flows Publicly Accessible, Yumi Ibrahimzade
Free and Effective: Making Flows Publicly Accessible, Yumi Ibrahimzade
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfIntroduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at Comcast
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
 
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
 
PLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. StartupsPLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. Startups
 
A Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System StrategyA Business-Centric Approach to Design System Strategy
A Business-Centric Approach to Design System Strategy
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
 
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfBreaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
 
Powerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara LaskowskaPowerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara Laskowska
 
Speed Wins: From Kafka to APIs in Minutes
Speed Wins: From Kafka to APIs in MinutesSpeed Wins: From Kafka to APIs in Minutes
Speed Wins: From Kafka to APIs in Minutes
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 

Kibana: Real-World Examples