You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node.js scripts are short-lived processes, so there is no need to run a dedicated web dashboard within the script itself. Here is how you can configure Errsole for such use cases:
1. Disable the Web Dashboard in your script
In your script's Errsole configuration, set enableDashboard to false. This ensures that Errsole only collects and stores logs without starting the web dashboard.
Create a new app and configure Errsole with enableDashboard set to true. Use the same storage configuration as your script so this standalone app can access the logs generated by your script. Once set up, you can access the web dashboard from this new app.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Node.js scripts are short-lived processes, so there is no need to run a dedicated web dashboard within the script itself. Here is how you can configure Errsole for such use cases:
1. Disable the Web Dashboard in your script
In your script's Errsole configuration, set
enableDashboard
tofalse
. This ensures that Errsole only collects and stores logs without starting the web dashboard.2. Run the Web Dashboard as a standalone app
Create a new app and configure Errsole with
enableDashboard
set totrue
. Use the same storage configuration as your script so this standalone app can access the logs generated by your script. Once set up, you can access the web dashboard from this new app.dashboard.js
For more details, refer to the Setup documentation.
Beta Was this translation helpful? Give feedback.
All reactions