Skip to content

Commit

Permalink
Merge pull request #109 from cavokz/release-v0.1.0
Browse files Browse the repository at this point in the history
Prepare v0.1.0
  • Loading branch information
cavokz authored Nov 15, 2022
2 parents 36bc6dd + 36ee3e9 commit f9605cc
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## v0.1.0 - Nov 15, 2022

First documented release. What you can do with it:

* generate a lot of data, either in form of plain json content or documens already ingested in our favourite stack, Elasticsearch
* define a data model which describes the documents, the relations among them and their fields
* define a schema which specifies the type of each field (you cannot generate content without describing the meaning of it)

Of the above, the most definitve is the schema. Geneve uses [ECS](https://www.elastic.co/guide/en/ecs/current/index.html) as reference, you can use any alternative but it shall be defined in the same format as ECS.

About data models, they are a vast topic and any implementation is necessarily open and incomplete. Just to give a feeling of what you can already generate, think at the Elastic Security Solution [detection rules](https://www.elastic.co/guide/en/security/current/detection-engine-overview.html). There are about 650 of them and you can generate documents to reliably trigger ~550 security alerts.

Is all this enough for filling up your stack with useful data? Not even close. Sure you can exhaust the storage but that alone is not very useful.

Indeed it's all interesting only if you can use Kibana to analyze it, exercise all the features and goodies it ships on every release, feel how it would be once you get in production.

At the moment there is enough only to visualize some data, a map, click through for a bit and get engaged. A scratch on the surface, a honest v0.1.0! 🎉
2 changes: 1 addition & 1 deletion cmd/geneve/source_events.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"golang.org/x/mod/semver"
)

var Version = "0.0.3"
var Version = "0.1.0"

type SourceEvents struct {
o *python.PyObject
Expand Down
2 changes: 1 addition & 1 deletion geneve/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

from .events_emitter import * # noqa: F401, F403

version = "0.0.3"
version = "0.1.0"
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
name = geneve
version = attr: geneve.version
description = Generate data from languages and models
long_description = file: CHANGES.md
long_description_content_type = text/markdown
url = https://github.com/elastic/geneve
license = Apache 2.0
license_file = LICENSE.txt
Expand Down

0 comments on commit f9605cc

Please sign in to comment.