Skip to content

Commit 27676a6

Browse files
committed
fix: Removed outdated docs
- Epsagon is not around anymore - Log forwarding can be used for logs
1 parent 5d9a613 commit 27676a6

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

src/pages/guides/using/logging_monitoring.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,15 @@ When you have action invocations that fail, sometimes the best way to understand
3838
The following are the possible values and the meaning for `error` in `response.status`:
3939
* `success`: everything is okay (status is true)
4040
* `action developer error`: A container or action code error occurred, e.g. failed to start action (status is false). This is usually the case if the nodejs action code has a syntax error or missing dependencies
41-
* `application error`: Action ran, but there was an error thrown in the action code (deliberatly or not) that was handled by I/O Runtime (status is false).
41+
* `application error`: Action ran, but there was an error thrown in the action code (deliberately or not) that was handled by I/O Runtime (status is false).
4242
* `whisk internal error`: Action did not run, an internal I/O Runtime system error occurred while starting the action, more info in `response.status.result.error`
4343

4444
## 3rd-Party Tools
4545

46-
I/O Runtime doesn’t offer a configuration to send activations and logs to an external system, something like Splunk, Datadog or New Relic. This is something we are considering to offer in the future.
47-
4846
Although there is no out-of-the-box integration, there are still ways you can push data from I/O Runtime to an external tool in order to monitor and debug your actions.
4947

50-
#### Epsagon
51-
One tool that made it easy to do this is [Epsagon](https://epsagon.com/?utm_source=adobe.io&utm_medium=referral&utm_campaign=adobe_io_docs). Epsagon built an integration for OpenWhisk based systems (I/O Runtime is built on top of the open source project OpenWhisk) that makes super easy to see your activations, errors, latency information and logs in their system. Check this [guide](https://docs.epsagon.com/docs/openwhisk?utm_source=adobe.io&utm_medium=referral&utm_campaign=adobe_io_docs) or this [video presentation](https://www.youtube.com/watch?v=4iprbivqrxQ&t=1517s) if you want to find more.
52-
5348
#### New Relic
54-
Another tool that can be used to monitor your actions is New Relic, which offers a Node.js agent that can be used to monitor your actions. Check this [guide](https://docs.newrelic.com/docs/agents/nodejs-agent/getting-started/introduction-new-relic-nodejs) to learn more.
49+
A tool that can be used to monitor your actions is New Relic, which offers a Node.js agent that can be used to monitor your actions. Check this [guide](https://docs.newrelic.com/docs/agents/nodejs-agent/getting-started/introduction-new-relic-nodejs) to learn more.
5550

5651
For example if you want to send to New Relic the execution time for one action, you could build your action code as follows:
5752
```
@@ -74,4 +69,4 @@ You need to package the new relic agent as part of your action code and deploy t
7469

7570
## Debugging Locally
7671

77-
Check this [page](debugging.md) if you want to learn how to debug your actions locally.
72+
Check this [page](debugging.md) if you want to learn how to debug your actions locally.

0 commit comments

Comments
 (0)