Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(grammars): add kusto (KQL)
  • Loading branch information
antonreshetov committed Jan 10, 2023
commit a288a11e5395e19360b6f4b49da41410dba55318
18 changes: 18 additions & 0 deletions demo/db/db.json
Original file line number Diff line number Diff line change
Expand Up @@ -2837,6 +2837,24 @@
"id": "cj0IfumH",
"createdAt": 1659688801793,
"updatedAt": 1659688919992
},
{
"isDeleted": false,
"isFavorites": false,
"folderId": "J7rNZi7X",
"tagsIds": [],
"description": null,
"name": "Kusto KQL",
"content": [
{
"label": "Fragment 1",
"language": "kusto",
"value": "let Events = MyLogTable | where ... ;\nEvents\n| where Name == \"Start\"\n| project Name, City, SessionId, StartTime=timestamp\n| join (Events\n | where Name == \"Stop\"\n | project StopTime=timestamp, SessionId)\n on SessionId\n| project City, SessionId, StartTime, StopTime, Duration = StopTime - StartTime"
}
],
"id": "vH7mmfKH",
"createdAt": 1673326490808,
"updatedAt": 1673326641538
}
],
"tags": []
Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/editor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ This is a list of language that supports in massCode.
- JSX
- Julia
- Kotlin
- Kusto (KQL)
- LaTeX
- Latte
- LESS
Expand Down
Loading