-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from tinybirdco/add-typescript-readme
add typescript readme
- Loading branch information
Showing
2 changed files
with
75 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
NODE mv_mcp_logs_pipe_0 | ||
SQL > | ||
SELECT | ||
JSONExtractString(record, 'appName') as app_name, | ||
timestamp as datetime, | ||
JSONExtractString(record, 'funcName') as func_name, | ||
JSONExtractString(record, 'tool') as tool, | ||
JSONExtractString(record, 'prompt') as prompt, | ||
JSONExtractString(record, 'resource') as resource, | ||
level as level, | ||
session as session, | ||
JSONExtractString(record, 'version') as version, | ||
JSONExtractString(record, 'message') as message | ||
FROM mcp_logs | ||
|
||
TYPE materialized | ||
DATASOURCE mcp_monitoring | ||
|
||
|