-
Notifications
You must be signed in to change notification settings - Fork 418
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
Is ECS confusing to you? #516
Comments
Oh, also base fields like labels vs tags. I like the labels field, but the examples of labels and tags confused me. labels tags Should I use labels.env or add environment values as tags? It depends? Since ECS is a specification, the interpretation and implementation should be consistent as much as possible. |
I completely agree with this. It's difficult trying to map fields and the
duplication of fields (although under different names as stated previously)
is very difficult to understand. I would like to propose a working group
to go through common event producers and create simple mapping tables for
each. I'm happy to work on this but would like to have input from the ECS
team and others in the community.
Regards
Dave
…On Fri, 9 Aug 2019, 23:12 Anh Le, ***@***.***> wrote:
Oh, also base fields like labels vs tags. I like the labels field, but the
examples of labels and tags confused me.
*labels*
example: {'application': 'foo-bar', 'env': 'production'}
*tags*
example: ["production", "env2"]
Should I use labels.env or add environment values as tags? It depends?
Since ECS is a specification, the interpretation and implementation should
be consistent as much as possible.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#516?email_source=notifications&email_token=ABUXZJ7VFESP2ZIRY6RRCJ3QDXMURA5CNFSM4IKXK2XKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD37ZA7I#issuecomment-520065149>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABUXZJ2CM63LJJYQ3VQVW5TQDXMURANCNFSM4IKXK2XA>
.
|
Count me in on the working group with Dave. I'm aligned with ECS, for multiple reasons. |
@anhlqn Thank you for your feedback and willingness to help make ECS simpler to understand. We are sorry that you are feeling frustrated and confused. I think I can speak for all contributors in saying that we share a desire to make ECS simple to adopt, implement, understand, and use. We definitely have some work still to do. Please allow me to try to address some of your concerns:
The reason for two sets of fields is that the scope of ECS includes network monitoring use cases, where it is sometimes important to distinguish between the the source sending a network packet, and the client, which initiated the connection or transaction. As a simple example, in a TCP exchange, when an ACK packet is sent from the server to the client, the source IP of the ACK packet will be the server address, and the destination IP address of the packet will be of the client. In order to support this use case, it is necessary to have both sets of fields. With that said, I think we can do a better job of documenting the rules for populating these field sets. I'd propose the following simple rule for consideration: If you can identify the client and server roles associated with the event, fill both field sets (client/server and source/destination) else just fill source/destination. I think this would help answer your questions:
You raise a very good point about these fields. We need to do a much better job with this documentation. For now, a simple rule:
You are reading this correctly, and this will get better soon. Please see the discussion at #447 (comment) and #290 (comment). In a nutshell,
Another good point. We need to provide better documentation to make it clear that these are for custom use. Which means that you can use them for environment-specific purposes. If you need KV pairs, use @DeathsPirate @Randy-312 I like the sound of a working group, but what specifically did you have in mind? In many ways this open source GitHub repo is indeed an (albeit asynchronous) working group. Were you thinking of live IRC-based session on a periodic basis? I'd want to be cautions to make sure any additional forum was open and available to all our contributors and community members. Again, thank you all for your thoughtful input and offers to help make ECS simpler. |
Any ideas on when some additional clarification will be available? |
So I spent the last hour trying to map custom application api logs into ECS. It is extremely frustrating. The lack of concrete use-cases hurts ECS IMO. I would like to see some common references like:
This will make it easier to pick a "similar" use-case when mapping in a new type. So far, I haven't found fields for:
As it stands right now, I am either overloading everything into event or I am creating custom fields since ECS hasn't given an opinion. It works fine if it is just me, but this becomes a problem if I ask other people to fix their datasets. With ECS being incomplete, I really can't point anyone to it and expect consistent, normalized results. |
Thanks for all your input on this, the ECS Schema & Docs have evolved and Matured, addressing many of these concerns, and from this point we would consider specific fixes to individual fields rather than wider changes with potential for reverse compatibility issues. Please feel free to re-open if you have new input |
I've been using Elastic stack for Log Analytics use case for a few years since v1.4.0 with more than 30 types of logs. I think most of us know the challenge of not having common fields across log types, so we came up with our internal core and standard fields to enable log correlation. When I heard about the release of ECS, I thought I can just look at the standard document and easily map our current fields to ECS fields.
That's not really the case, at least for me. I guess some new Elastic users may have the same frustration when looking to adopt ECS.
If Elastic expects the community to adopt ECS, that means ECS should be as simple as possible, not confusing. I've read and re-read the ECS document multiple times and end up having to search through issues in the Github repo to know how to properly map a field to ECS. Almost have to pull a few people in a meeting when we have a new field.
I like the idea of grouping related fields into fieldsets, but I think there is room for improvement.
source/destination vs. client/server
source/client and server/destination have the same nested fields, so why don't we just choose one pair and get rid of the other? source/destination pair is more generic and will fit most use cases.
I think this approach is unnecessarily complicated. It confuses users and can significantly increase the storage size at the same time if we are looking at billions of events. Netflow, firewall, web access, or IPS/IDS logs can all use source/destination pair. With two pairs, the questions users face are:
These questions aren't answered in the current ECS document.
log vs. event
I have the same confusion with these two field sets. I believe ECS is designed for Log Analytics use case, which aims to support the new Kibana SIEM app. Usually, any log message that enters the SIEM is treated as an event, so event field set is a great one. Why also log to confuse users? If I want to map attributes of a message to ECS, do I have to jump between log and event field sets?
log.level vs. event.severity? and someone has proposed a event.level here #129
log.original vs. event.original? Would most users know which field to use by reading the ECS document? @ruflin clarified them in #127, but I don't think that's enough. Why don't we just stick with event field set and add event.raw, event.original, event.normalized/transformed or similar nested fields to support the need.
There are many nested fields under the event field set to describe an event. Will the log field set continue to add the same nested fields and end up with the same situation as source/destination and client/server?
I propose getting rid of log field set and keep only event field set.
event field set
Has someone looked at the nested fields under event field set and not found them confusing?
event.dataset vs. event.module?
event.category vs. event.kind?
Some of these fields come with the following warning:
I read the warning as "Don't use these nested fields yet".
The release of ECS was a bit late but a great step for Log Analytics use cases. I'm looking forward to migrating to ECS once the standard is less confusing.
The text was updated successfully, but these errors were encountered: