You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ These are the most important files:
116
116
## Configuration Options
117
117
The following sections describe the available configuration options for this middleware. You can set these options in a Python object and then pass that object as argument to the `MoesifLogger` decorator. See [the sample AWS Lambda middleware function code](https://github.com/Moesif/moesif-aws-lambda-python/blob/857af6d4c12be8681e569f42317043c51acc2341/lambda_function.py#L6) for an example.
@@ -393,7 +393,7 @@ For more information about the different fields of Moesif's event model,
393
393
see [Moesif Python API documentation](https://www.moesif.com/docs/api?python).
394
394
395
395
396
-
### __`DEBUG`__
396
+
### `DEBUG`
397
397
<table>
398
398
<tr>
399
399
<thscope="col">
@@ -416,7 +416,7 @@ see [Moesif Python API documentation](https://www.moesif.com/docs/api?python).
416
416
Set to `True` to print debug logs if you're having integration issues.
417
417
418
418
419
-
### __`LOG_BODY`__
419
+
### `LOG_BODY`
420
420
<table>
421
421
<tr>
422
422
<thscope="col">
@@ -431,7 +431,7 @@ Set to `True` to print debug logs if you're having integration issues.
431
431
<code>Boolean</code>
432
432
</td>
433
433
<td>
434
-
<code>true</code>
434
+
<code>True</code>
435
435
</td>
436
436
</tr>
437
437
</table>
@@ -452,7 +452,7 @@ start_capture_outgoing(moesif_options) # moesif_options are the configuration op
452
452
453
453
The following options are available for capturing and logging outgoing calls. The request and response objects passed in correspond to the [`Request` and `Response` objects](https://requests.readthedocs.io/en/master/user/advanced/#request-and-response-objects) respectively of the Python Requests library.
454
454
455
-
#### __`SKIP_OUTGOING`__
455
+
#### `SKIP_OUTGOING`
456
456
<table>
457
457
<tr>
458
458
<thscope="col">
@@ -481,7 +481,7 @@ Optional.
481
481
482
482
This function takes Requests [`Request` and `Response` objects](https://requests.readthedocs.io/en/latest/user/advanced/#request-and-response-objects) and returns `True` if you want to skip this particular event.
483
483
484
-
#### __`IDENTIFY_USER_OUTGOING`__
484
+
#### `IDENTIFY_USER_OUTGOING`
485
485
<table>
486
486
<tr>
487
487
<thscope="col">
@@ -513,7 +513,7 @@ This function takes Requests [`Request` and `Response` objects](https://requests
513
513
the user ID used by your system. While Moesif tries to identify users automatically, different frameworks and your implementation might be very different. So we highly recommend that you accurately provide a
514
514
user ID using this function.
515
515
516
-
#### __`IDENTIFY_COMPANY_OUTGOING`__
516
+
#### `IDENTIFY_COMPANY_OUTGOING`
517
517
<table>
518
518
<tr>
519
519
<thscope="col">
@@ -544,7 +544,7 @@ Optional.
544
544
This function takes Requests [`Request` and `Response` objects](https://requests.readthedocs.io/en/latest/user/advanced/#request-and-response-objects) and returns a string that represents
545
545
the company ID for this event.
546
546
547
-
#### __`GET_METADATA_OUTGOING`__
547
+
#### `GET_METADATA_OUTGOING`
548
548
<table>
549
549
<tr>
550
550
<thscope="col">
@@ -578,7 +578,7 @@ valid JSON. This allows you to associate this event with custom metadata.
578
578
579
579
For example, you may want to save a virtual machine instance ID, a trace ID, or a tenant ID with the request.
580
580
581
-
#### __`GET_SESSION_TOKEN_OUTGOING`__
581
+
#### `GET_SESSION_TOKEN_OUTGOING`
582
582
583
583
<table>
584
584
<tr>
@@ -609,7 +609,7 @@ Optional.
609
609
610
610
This function takes Requests [`Request` and `Response` objects](https://requests.readthedocs.io/en/latest/user/advanced/#request-and-response-objects) and returns a string that represents the session token for this event. Similar to [user IDs](#identify_user_outgoing), Moesif tries to get the session token automatically. However, if you setup differs from the standard, this function can help tying up events together and help you replay the events.
611
611
612
-
#### __`LOG_BODY_OUTGOING`__
612
+
#### `LOG_BODY_OUTGOING`
613
613
<table>
614
614
<tr>
615
615
<thscope="col">
@@ -624,7 +624,7 @@ This function takes Requests [`Request` and `Response` objects](https://requests
624
624
<code>Boolean</code>
625
625
</td>
626
626
<td>
627
-
<code>true</code>
627
+
<code>True</code>
628
628
</td>
629
629
</tr>
630
630
</table>
@@ -835,7 +835,7 @@ See [Moesif AWS Lambda Example for Python](https://github.com/Moesif/moesif-aws-
835
835
If you face any issues using this middleware, try the [troubheshooting guidelines](#troubleshoot). For further assistance, reach out to our [support team](mailto:support@moesif.com).
836
836
837
837
## Explore Other integrations
838
-
Explore other integration options from Moesif in [the Server Integration Options documentation](https://www.moesif.com/docs/getting-started/integration-options/).
838
+
Explore other integration options from Moesif in [the Server Integration Options documentation](https://www.moesif.com/docs/server-integration/).
0 commit comments