Dear community,
I am wondering if there exists a way to copy data from result table to clipboard so it's formatted in markdown or similar syntax?
Lets take this ES|QL below it will generate up to maximum 20 rows. I would like to easily export this result to clipboad so I can paste it in another tool supporting rich markdown like Confluence or Jira (both are WYSIWYG editors).
Many thanks in advance.
FROM logs-*
| WHERE event.outcome == "failure"
| WHERE CIDR_MATCH(source.ip, "10.0.0.0/24")
| STATS failed_count = count() BY source.ip
| SORT failed_count DESC
| LIMIT 20
