mirror of
https://github.com/ansible/awx.git
synced 2026-02-02 10:08:10 -03:30
More AWX docs edits
This commit is contained in:
@@ -5,29 +5,29 @@ Django Debug Toolbar (DDT)
|
||||
----------------
|
||||
This is a useful tool for examining SQL queries, performance, headers, requests, signals, cache, logging, and more.
|
||||
|
||||
To enable DDT, you need to set your INTERNAL_IPS to the IP address of your load balancer. This can be overriden in `local_settings`.
|
||||
This IP address can be found by making a GET to any page on the browsable API and looking for a like this in the standard output.
|
||||
To enable DDT, you need to set your `INTERNAL_IPS` to the IP address of your load balancer. This can be overriden in `local_settings`.
|
||||
This IP address can be found by making a GET to any page on the browsable API and looking for a like this in the standard output:
|
||||
```
|
||||
awx_1 | 14:42:08 uwsgi.1 | 172.18.0.1 GET /api/v2/tokens/ - HTTP/1.1 200
|
||||
```
|
||||
|
||||
Whitelist this IP address by adding it to the INTERNAL_IPS variable in local_settings, then navigate to the API and you should see DDT on the
|
||||
right side. If you don't see it, make sure `DEBUG=True`.
|
||||
> Note that enabling DDT is detrimental to the performance of AWX and adds overhead to every API request. It is
|
||||
Whitelist this IP address by adding it to the `INTERNAL_IPS` variable in `local_settings`, then navigate to the API and you should see DDT on the
|
||||
right side. If you don't see it, make sure to set `DEBUG=True`.
|
||||
> Note that enabling DDT is detrimental to the performance of AWX and adds overhead to every API request. It is
|
||||
recommended to keep this turned off when you are not using it.
|
||||
|
||||
SQL Debugging
|
||||
-------------
|
||||
AWX includes a powerful tool for tracking slow queries across all of its Python processes.
|
||||
As the awx user, run:
|
||||
As the AWX user, run:
|
||||
|
||||
```
|
||||
$ awx-manage profile_sql --threshold 2 --minutes 5
|
||||
```
|
||||
|
||||
...where threshold is the max query time in seconds, and minutes it the number of minutes to record.
|
||||
For the next five minutes (in this example), any awx Python process that generates a SQL query
|
||||
that runs for >2s will be recorded in a .sqlite database in /var/log/tower/profile
|
||||
For the next five minutes (in this example), any AWX Python process that generates a SQL query
|
||||
that runs for >2s will be recorded in a `.sqlite` database in `/var/log/tower/profile`.
|
||||
|
||||
This is a useful tool for logging all queries at a per-process level, or filtering and searching for
|
||||
queries within a certain code branch. For example, if you observed that certain HTTP requests were
|
||||
@@ -38,7 +38,7 @@ $ sqlite3 -column -header /var/log/tower/profile/uwsgi.sqlite
|
||||
sqlite> .schema queries
|
||||
CREATE TABLE queries (
|
||||
id INTEGER PRIMARY KEY,
|
||||
version TEXT, # the awx version
|
||||
version TEXT, # the AWX version
|
||||
pid INTEGER, # the pid of the process
|
||||
stamp DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||||
argv REAL, # argv of the process
|
||||
@@ -90,7 +90,7 @@ a `continue` command.
|
||||
To simplify remote debugging session management, Tower's development
|
||||
environment comes with tooling that can automatically discover open
|
||||
remote debugging sessions and automatically connect to them. From your *host*
|
||||
machine (i.e., _outside_ of the development container), you can run:
|
||||
machine (*i.e.*, _outside_ of the development container), you can run:
|
||||
|
||||
```
|
||||
sdb-listen
|
||||
|
||||
Reference in New Issue
Block a user