I've been evaluating Deno Deploy as a solution for a middleware listener used in a larger application, and one thing that I'm still struggling with is that the Deno Deploy playground doesn't seem to have any obvious persistent logging feature. It shows very rudimentary logs for the current deployment only in the logs tab. I want to be able to pay for several days worth of application logs to be persisted to some place where I can analyze and search them later. No doubt there are third-party services for this, but I'd rather not slow down my listener by using them. Seems like they would be fastest if implemented in a more native way in Deno Deploy. This seems like it should be a very important, basic feature. Am I missing something?
How to do robust logging in Deno Deploy?
469 Views Asked by cayblood At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in DENO
- How to use a string to index a json object in typescript
- VS Code Run extension - no output shown from running program
- Error: Error: Read packet timeout in DENO
- How to make typedoc works with deno
- Cannot find name "process" in simple input script
- How to pipe stdout/stderr to file from worker in Deno?
- TypeScript inconsistent check for undefined -- Why do I need an exclamation point here?
- How to console.log without a newline in Deno?
- Deno official server example doesn't work
- Can't parse Deno Oak body from Post request form-data / json
- Deno js with auth2.0 auth procsess
- How to have sub-workflows with the Slack Next Gen Platform
- Dynamic component on Deno Fresh island: ReferenceError: document is not defined
- What's the equivalent of `crypto.sign` in Deno?
- How do I use Angular Universal on Deno / Oak, for SSR Rendering and building hybrid MPAs?
Related Questions in DENO-DEPLOY
- Can't parse Deno Oak body from Post request form-data / json
- How to do robust logging in Deno Deploy?
- Oak framework Doesnt respond to request in deno deploy
- GetStream with Supabase via Edge Function -- how to?
- How to use Deno-Deploy with Fresh and Mongoose
- Deno Deploy --cert flag
- Unable to use npm packages in deno deploy
- How to redirect from https://www.example.com to https://example.com in Deno Fresh?
- Firebase throws an error: "Could not reach Cloud Firestore backend. Backend didn't respond within 10 seconds."
- TypeError: Deno.readFileSync is not a function
- Error: The deployment failed: Relative import path "$fresh/server.ts" not prefixed with / or ./ or ../
- Deno HTTP Server not working on Deno Deploy with Oak
- error: Uncaught (in promise) NotFound: Failed to spawn 'start': program not found
- Can you specify webassembly extensions in deno deploy instances?
- TypeError: Deno.run is not a function
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You’re not missing anything: Deploy offers no persistent storage that is local to your module code or its runtime instance — all persistent data must be sent and received via network requests.
There's a GitHub issue related to this topic that you can subscribe to for updates: denoland/deploy_feedback#39 - Observability with Deno Deploy