Re: New User of Django

2023-11-17 Thread utibe solomon
You just have to search Django up and follow it's documentation or search it on youtube On Wed, Nov 15, 2023, 4:31 PM Yonis Abdulkadir wrote: > I need you to give me an explanation about how i can install and use it > thank you so much > > -- > You received this message because you are subscribe

Re: Getting Django Channels working with NewRelic

2023-11-17 Thread Lutaaya Jamil
I suggest this, how bout you tell me something simple I can try doing tonight, in that If I manage to do it and show to you how I did it, I would have helped. For example if it is fibonacci, and you want to know how it works you can ask me to show research and show how to reach the result of f

Re: Getting Django Channels working with NewRelic

2023-11-17 Thread Filbert
We use dramatiq not celery, instrumenting dramatiq was easy. Channels is a different beast, clearly a pattern NewRelic doesn't recognize out of the box. On Friday, November 17, 2023 at 12:40:38 PM UTC-5 Lutaaya Jamil wrote: > I have never used that, hearing for the first time though. > Is doing

Re: Getting Django Channels working with NewRelic

2023-11-17 Thread Lutaaya Jamil
I have never used that, hearing for the first time though. Is doing the same as celery? I am interested in making it work with you, we might dive into it together, you never know...Adding a new skill is worth it On Friday, 17 November 2023 at 18:54:52 UTC+3 Tim Nelson wrote: > I am trying to get

Re: How to create an individual instagram message into threads?

2023-11-17 Thread Alex Shibly
While I don't have specific knowledge about implementations in Instagram clones in Django applications, I can provide you with guidance on how you might approach implementing the features you described. Implementing a messaging system with thread-like conversations can be achieved by creating

Getting Django Channels working with NewRelic

2023-11-17 Thread Tim Nelson
I am trying to get NewRelic monitoring my ASGI code written in Django Channels. Most notably, this line of code from their examples should create a NewRelic transaction and start monitoring all async activity. channel_layer = newrelic.agent.ASGIApplicationWrapper(get_default_application()) Ha