36 lines
940 B
Python
36 lines
940 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Network Traffic Logger',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Tools',
|
|
'summary': 'Logs and displays all outgoing HTTP requests from Odoo',
|
|
'description': """
|
|
Network Traffic Logger for Odoo 19
|
|
==================================
|
|
|
|
This module logs ALL outgoing HTTP requests made by Odoo to help identify
|
|
external communications.
|
|
|
|
**Features:**
|
|
- Logs all requests.get(), requests.post(), requests.put() calls
|
|
- Stores logs in database for viewing in Odoo
|
|
- Dashboard showing recent activity
|
|
- Filter by Odoo external calls
|
|
- Clear log functionality
|
|
|
|
**Access:**
|
|
Settings → Technical → Network Traffic Logs
|
|
""",
|
|
'author': 'Fusion Development',
|
|
'license': 'LGPL-3',
|
|
'depends': ['base'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/network_log_views.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': True,
|
|
}
|
|
|