Moralis streams logs

Hello.

Is there logs for Moralis Streams in control panel (https://admin.moralis.io/streams)? I can’t find it.

Thanks.

What sort of logs? You could do any sort of logging on your side with your server.

1 Like

I am interesting for logs on Streams side. So I created stream and subscribe for some events. Stream is working. How I can find out logs that stream sent to my side?

Thanks.

You can save the webhook data as they are received e.g. to a file.

1 Like

I know it. But what can I do if file on my side is empty? Correct I need check logs on stream side. So I can find out that problem on my side instead of stream.

If you mean any failed webhooks, you can read this page.

1 Like
  1. Go to Failed Deliveries. All your failed deliveries are listed here.

Yep. Were is it?

there is a stats endpoint that you can use directly in the swagger interface
https://api.moralis-streams.com/api-docs/

or with the sdk

1 Like

this is for the failed webhooks history:
https://api.moralis-streams.com/api-docs/#/History/GetHistory

Perhaps I didn’t put it right way. But, earlier, in the control panel it was possible to view the logs according to the application: successful / unsuccessful. I thought that Moralis Stream has the same opportunity. Or there are no logs - which I can get in the control panel?

Thanks.

I don’t know what you mean with the control panel, that swagger interface can give you all the info that is available about your streams, that swagger is the main API that the admin interface uses for Streams

or, if you prefer the Python SDK, you can find some documentation here for how to use Streams API

https://moralisweb3.github.io/Moralis-Python-SDK/#streams

same functionality is available in JavaScript SDK too

1 Like

This one: https://admin.moralis.io/.

use this to see all the possible endpoints for streams API
https://api.moralis-streams.com/api-docs/

you will need your api key

1 Like

You don’t understand me ) Right now I fond this:

So if there is errors I click this link and go to the page with logs. But there is no details only error and reply link. Before when I created app it was detailed logs with successful / unsuccessful. This is what I mean )

Thanks.

Try to use that link that I posted. You will get all the info.

Only when there are errors you can see them in history.

You mean this: https://api.moralis-streams.com/api-docs/? No it’s not help me. Because if I see the errors I need find out what the problem: my endpoint not working, problem somewhere and so on.

Yep, but what about details?

on what type of details you are referring?

if it is a webhook send error then we were not able to send that webhook request, either the webhook url is not working or it didn’t return a 200 http error code

1 Like

Yep. I am talking about the same ) So let me catch the error and I came back to discuss it.

Thanks.