Skip to content
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

[SIEM] Overview Page - Expand Winlogbeat Stats #54938

Open
andrewkroh opened this issue Jan 15, 2020 · 1 comment
Open

[SIEM] Overview Page - Expand Winlogbeat Stats #54938

andrewkroh opened this issue Jan 15, 2020 · 1 comment
Assignees
Labels
Team: SecuritySolution Security Solutions Team working on SIEM, Endpoint, Timeline, Resolver, etc. Team:SIEM

Comments

@andrewkroh
Copy link
Member

The overview page has stats about various data sources. For Winlogbeat I think it would be good to show the number of events Winlogbeat is getting from the Security and Microsoft-Windows-Sysmon/Operational channels.

Screen Shot 2020-01-15 at 9 38 49 AM

This query returns those stats:

GET winlogbeat-*/_search
{
  "query": {
    "terms": {
      "winlog.channel": [
        "Microsoft-Windows-Sysmon/Operational",
        "Security"
      ]
    }
  },
  "aggs": {
    "event_count": {
      "terms": {
        "field": "winlog.channel"
      }
    }
  },
  "size": 0
}
@elasticmachine
Copy link
Contributor

Pinging @elastic/siem (Team:SIEM)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team: SecuritySolution Security Solutions Team working on SIEM, Endpoint, Timeline, Resolver, etc. Team:SIEM
Projects
None yet
Development

No branches or pull requests

4 participants