Hear directly from the creators of the Elastic Stack on the importance of our community, the future of Elasticsearch and Kibana, new features, expanding deployment options, and the evolving solutions landscape.
9. Elastic Cloud
Comprehensive cloud provider
and region presence:
• 16 GCP regions
• 10 Azure regions
• 16 AWS regions
• FedRAMP authorized AWS
GovCloud East region
19. Fleet: Agent Management
Ingestion made easy
• Pre-built integrations with the most
common data sources (more coming
soon)
– System logs and metrics
– Custom logs
– AWS
– Nginx
– Redis
– Mysql
– Kafka
– Cisco devices
– Netflow logs
• Translated to Elastic Common Schema
• Managed centrally via Fleet
21. Kibana Lens
An intuitive way to explore your data
• Simple drag and drop experience
• Easily see your data from different angles:
– Time series, metric, table, Pie, Treemap
• Make advance calculations, simple
– Rate
– Month/month %
– Derivatives, cumulative sum
– Customize formula - based on your logic
28. Schema on write
Speed, Scale,
Relevance
Schema on read
Flexibility
Data you understand
and use
Best for
New data sources
Handling changes
Enable new workflows
Good for
29. Runtime Fields
New field type
Defined by a script
Painless, grok/regex or even a dynamic lookup
Evaluated at query time
Add to your mapping, or provide with your query
Works like a regular field
Search, aggregate, visualize just like a regular field
{
“day_of_week" : {
"type" : "runtime",
"runtime_type" : "keyword",
"script" : {
"source" : "dayOfWeek(doc[‘@timestamp’)"
}
}
}
New data sources
Handling changes
Enable new workflows
Good for