Python Forum
how to log ip addresses in loguru
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to log ip addresses in loguru
#1
Hi all,

I want to keep track in the logs as well as time message level etc, I want to log down the clients ip address

Is this possible

Thanks,
Rob
Reply
#2
ie when i run the software and in console i get the ip address of the pc accessing the web server

127.0.0.1 - - [21/Jul/2024 20:40:11] "POST /password HTTP/1.1" 200 -
obviously im accessing the web server from the same host but i do get different ips when i try to access the webserver from another LAN pc
Reply
#3
worked it out

@app.route('/password', methods=['GET', 'POST'])
def password():
ip_addr = request.remote_addr
form = PasswordForm()
if request.method == 'POST' and form.validate():
logger.warning(f'{ip_addr} {form.un.data} your current password is wrong, please click back and try again')
and in log file i get this

2024-07-22-12-55-27 | WARNING | 127.0.0.1 robert.wild your current password is wrong, please click back and try again
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  a function to get IP addresses of interfaces Skaperen 2 2,100 May-30-2022, 05:00 PM
Last Post: Skaperen
  Loop through list of ip-addresses [SOLVED] AlphaInc 7 6,461 May-11-2022, 02:23 PM
Last Post: menator01
  instance methods sharing addresses mim 1 2,892 Mar-28-2021, 05:22 AM
Last Post: deanhystad
  Convert email addresses to VCF format jehoshua 2 5,944 Mar-06-2021, 12:50 AM
Last Post: jehoshua
  crunching ip addresses snichols 5 4,122 Nov-10-2020, 05:24 PM
Last Post: snichols
  extract email addresses from gmail vigneshboolog 0 2,444 Feb-11-2020, 09:23 AM
Last Post: vigneshboolog
  Extract email addresses from string and store them in a list oslosurfer 2 3,981 Nov-24-2019, 03:35 PM
Last Post: oslosurfer
  Read list of IP addresses from file and return a network dflick 4 6,744 Oct-27-2018, 09:33 AM
Last Post: buran
  Help required to print MAC addresses anna 50 27,959 Feb-22-2018, 09:53 AM
Last Post: anna
  How do I get coordinates for addresses from the csv list? BigD 6 9,347 Dec-02-2017, 09:38 PM
Last Post: BigD

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020