-
Notifications
You must be signed in to change notification settings - Fork 432
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: make ecs more flexible #2019
base: main
Are you sure you want to change the base?
Changes from all commits
798978f
369f060
fe04b23
0a8be31
1ef397e
46968b0
708f9d1
b7aa72f
a9e6c4f
649b215
3ce1373
2096c6b
bef27cd
c7c2292
7e38564
a225031
0871ba7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,11 @@ def main() -> None: | |
ecs_generated_version += "+exp" | ||
print('Experimental ECS version ' + ecs_generated_version) | ||
|
||
fields: dict[str, FieldEntry] = loader.load_schemas(ref=args.ref, included_files=args.include) | ||
fields: dict[str, FieldEntry] = loader.load_schemas( | ||
ref=args.ref, | ||
included_files=args.include, | ||
no_ecs=args.no_ecs | ||
) | ||
cleaner.clean(fields, strict=args.strict) | ||
finalizer.finalize(fields) | ||
fields, docs_only_fields = subset_filter.filter(fields, args.subset, out_dir) | ||
|
@@ -84,7 +88,8 @@ def main() -> None: | |
exit() | ||
|
||
csv_generator.generate(flat, ecs_generated_version, out_dir) | ||
es_template.generate(nested, ecs_generated_version, out_dir, args.mapping_settings, args.template_settings) | ||
es_template.generate(nested, ecs_generated_version, out_dir, | ||
args.mapping_settings, args.template_settings,ecs_component_name_prefix=args.component_name_prefix) | ||
es_template.generate_legacy(flat, ecs_generated_version, out_dir, | ||
args.mapping_settings, args.template_settings_legacy) | ||
beats.generate(nested, ecs_generated_version, out_dir) | ||
|
@@ -118,6 +123,10 @@ def argument_parser() -> argparse.Namespace: | |
help='enforce strict checking at schema cleanup') | ||
parser.add_argument('--intermediate-only', action='store_true', | ||
help='generate intermediary files only') | ||
parser.add_argument('--no-ecs', action='store_true', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could add more documentation to |
||
help='do not include ECS schemas') | ||
parser.add_argument('--component-name-prefix', action='store', default="ecs", | ||
help='prefix to use for component names') | ||
parser.add_argument('--force-docs', action='store_true', | ||
help='generate ECS docs even if --subset, --include, or --exclude are set') | ||
parser.add_argument('--semconv-version', action='store', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,8 +152,14 @@ def save_asciidoc(f, text): | |
# jinja2 setup | ||
|
||
|
||
cur_dir = path.abspath(path.curdir) | ||
local_dir = path.dirname(path.abspath(__file__)) | ||
TEMPLATE_DIR = path.join(local_dir, '../templates') | ||
CUR_TEMPLATE_DIR = path.join(cur_dir, 'templates') | ||
LOCAL_TEMPLATE_DIR = path.join(local_dir, '../templates') | ||
if path.exists(CUR_TEMPLATE_DIR): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If these conditions both evaluate to false, this will exit with a TypeError. It would be better to catch this and print a friendly error message |
||
TEMPLATE_DIR = CUR_TEMPLATE_DIR | ||
elif path.exists(LOCAL_TEMPLATE_DIR): | ||
TEMPLATE_DIR = LOCAL_TEMPLATE_DIR | ||
template_loader = jinja2.FileSystemLoader(searchpath=TEMPLATE_DIR) | ||
template_env = jinja2.Environment(loader=template_loader, keep_trailing_newline=True) | ||
|
||
|
@@ -241,6 +247,7 @@ def page_field_values(nested, template_name='field_values_template.j2'): | |
category_fields = ['event.kind', 'event.category', 'event.type', 'event.outcome'] | ||
nested_fields = [] | ||
for cat_field in category_fields: | ||
nested_fields.append(nested['event']['fields'][cat_field]) | ||
if nested.get("event", {}).get("fields", {}).get(cat_field) is not None: | ||
nested_fields.append(nested['event']['fields'][cat_field]) | ||
|
||
return dict(fields=nested_fields) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
from os.path import join | ||
from os.path import join, dirname | ||
from collections import OrderedDict | ||
from typing import ( | ||
Dict, | ||
|
@@ -29,15 +29,21 @@ | |
FieldNestedEntry, | ||
) | ||
|
||
BEATS_DEFAULT_FIELDS = join(dirname(ecs_helpers.__file__), "beats_default_fields_allowlist.yml") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this file is intended to be customized, I think it would be better to add a generator.py argument that can be used to specify the file location used |
||
|
||
|
||
def generate( | ||
ecs_nested: Dict[str, FieldNestedEntry], | ||
ecs_version: str, | ||
out_dir: str | ||
) -> None: | ||
# base first | ||
ecs_nested = ecs_helpers.remove_top_level_reusable_false(ecs_nested) | ||
beats_fields: List[OrderedDict] = fieldset_field_array(ecs_nested['base']['fields'], ecs_nested['base']['prefix']) | ||
if 'base' in ecs_nested: | ||
beats_fields: List[OrderedDict] = fieldset_field_array( | ||
ecs_nested['base']['fields'], ecs_nested['base']['prefix']) | ||
else: | ||
beats_fields = [] | ||
|
||
|
||
allowed_fieldset_keys: List[str] = ['name', 'title', 'group', 'description', 'footnote', 'type'] | ||
# other fieldsets | ||
|
@@ -56,7 +62,7 @@ def generate( | |
beats_fields.append(beats_field) | ||
|
||
# Load temporary allowlist for default_fields workaround. | ||
df_allowlist = ecs_helpers.yaml_load('scripts/generators/beats_default_fields_allowlist.yml') | ||
df_allowlist = ecs_helpers.yaml_load(BEATS_DEFAULT_FIELDS) | ||
# Set default_field configuration. | ||
set_default_field(beats_fields, df_allowlist) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you move these into the "Tooling and Artifact Changes" -> Improvements section?