Support custom endpoints
See original GitHub issueHello,
It would be great if the library supported custom endpoints. With my forked version I’m using
Raven.config('http://public@127.0.0.1:3030/metrics-errors').install();
This way I can pipe events through my server and avoid external requests. (Then I use the node module to proxy those events)
Something like this should be an option, instead of forcing the DSN :
Raven.config('/metrics-errors').install();
Issue Analytics
- State:
- Created 8 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Adding Custom Endpoints | REST API Handbook
It is also a tool for creating custom routes and endpoints. ... An added benefit of using namespaces is that clients can detect...
Read more >Specifying Custom Endpoints - AWS SDK for JavaScript
You need to create a custom endpoint to use with MediaConvert. ... Create MediaConvert service object using custom endpoint var mcClient = new...
Read more >Custom endpoints - HCL Product Documentation
Use this sample resource to help you learn how to structure and use your own custom endpoints to authenticate with both WC tokens...
Read more >Terraform AWS Provider Custom Service Endpoint Configuration
This guide outlines how to get started with customizing endpoints, the available endpoint configurations, and offers example configurations for working with ...
Read more >Custom endpoints - Identity Cloud - ForgeRock Backstage
Mandate user input fields during registration to support delegated administration ... Use JavaScript for scripting custom endpoints in Identity Cloud.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yeah
transport
would work, but will require a copy paste of Raven’s default transport.I just fork with
It seems like no one else needs this feature and can use a custom
transport
if really needed. Closing…I do! 😃