logdna


Namelogdna JSON
Version 1.18.12 PyPI version JSON
download
home_pagehttps://github.com/logdna/python
SummaryA Python Package for Sending Logs to LogDNA
upload_time2023-07-27 21:39:24
maintainer
docs_urlNone
authorLogDNA Inc.
requires_python
licenseMIT
keywords logdna logging logs python logdna.com logger
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a href="https://app.logdna.com">
    <img height="95" width="202" src="https://raw.githubusercontent.com/logdna/artwork/master/logo%2Bpython.png">
  </a>
  <p align="center">Python package for logging to <a href="https://app.logdna.com">LogDNA</a></p>
</p>

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-18-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

---

* [Installation](#installation)
* [Setup](#setup)
* [Usage](#usage)
  * [Usage with fileConfig](#usage-with-fileconfig)
* [API](#api)
  * [LogDNAHandler(key: string, [options: dict])](#logdnahandlerkey-string-options-dict)
    * [key](#key)
    * [options](#options)
  * [log(line, [options])](#logline-options)
    * [line](#line)
    * [options](#options-1)
* [Development](#development)
  * [Scripts](#scripts)
* [License](#license)

## Installation

```bash
$ pip install logdna
```

## Setup
```python
import logging
from logdna import LogDNAHandler
import os

# Set your key as an env variable
# then import here, its best not to
# hard code your key!
key=os.environ['INGESTION_KEY']

log = logging.getLogger('logdna')
log.setLevel(logging.INFO)

options = {
  'hostname': 'pytest',
  'ip': '10.0.1.1',
  'mac': 'C0:FF:EE:C0:FF:EE'
}

# Defaults to False; when True meta objects are searchable
options['index_meta'] = True
options['custom_fields'] = 'meta'


test = LogDNAHandler(key, options)

log.addHandler(test)

log.warning("Warning message", extra={'app': 'bloop'})
log.info("Info message")

```
_**Required**_
* [LogDNA Ingestion Key](https://app.logdna.com/manage/profile)

_**Optional**_
* Hostname - ([string][])
* MAC Address - ([string][])
* IP Address - ([string][])
* Index Meta - ([bool][]) - formatted as `options['index_meta']`

## Usage

After initial setup, logging is as easy as:
```python
# Simplest use case
log.info('My Sample Log Line')

# Add a custom level
log.info('My Sample Log Line', extra={ 'level': 'MyCustomLevel' })

# Include an App name with this specific log
log.info('My Sample Log Line', extra={ 'level': 'Warn', 'app': 'myAppName'})

# Pass associated objects along as metadata
meta = {
    'foo': 'bar',
    'nested': {
        'nest1': 'nested text'
    }
}

opts = {
    'level': 'warn',
    'meta': meta
}

log.info('My Sample Log Line', extra=opts)
```

### Usage with fileConfig

To use [LogDNAHandler](#logdnahandlerkey-string-options-dict) with [fileConfig][] (e.g., in a Django `settings.py` file):

```python
import os
import logging
from logdna import LogDNAHandler #  required to register `logging.handlers.LogDNAHandler`

LOGGING = {
    # Other logging settings...
    'handlers': {
        'logdna': {
            'level': logging.DEBUG,
            'class': 'logging.handlers.LogDNAHandler',
            'key': os.environ.get('LOGDNA_INGESTION_KEY'),
            'options': {
                'app': '<app name>',
                'env': os.environ.get('ENVIRONMENT'),
                'index_meta': <True|False>,
            },
        },
    },
    'loggers': {
        '': {
            'handlers': ['logdna'],
            'level': logging.DEBUG
        },
    },
}
```

(This example assumes you have set environment variables for `ENVIRONMENT` and `LOGDNA_INGESTION_KEY`.)

## API

### LogDNAHandler(key: [string][], [options: [dict][]])

#### key

* _**Required**_
* Type: [string][]
* Values: `<your ingestion key>`

The [LogDNA API Key](https://app.logdna.com/manage/profile) associated with your account.

#### options

##### app

* _Optional_
* Type: [string][]
* Default: `''`
* Values: `<your custom app>`

The default app named that is included in every every log line sent through this instance.

##### env

* _Optional_
* Type: [string][]
* Default: `''`
* Values: `<your custom env>`

The default env passed along with every log sent through this instance.

##### hostname

* _Optional_
* Type: [string][]
* Default: `''`
* Values: `<your custom hostname>`

The default hostname passed along with every log sent through this instance.

##### include_standard_meta

* _Optional_
* Type: [bool][]
* Default: `False`

Python [LogRecord][] objects includes language-specific information that may be useful metadata in logs.
Setting `include_standard_meta` to `True` automatically populates meta objects with `name`, `pathname`, and `lineno`
from the [LogRecord][].

*WARNING* This option is deprecated and will be removed in the upcoming major release.

##### index_meta

* _Optional_
* Type: [bool][]
* Default: `False`

We allow meta objects to be passed with each line. By default these meta objects are stringified and not searchable, and are only displayed for informational purposes.

If this option is set to True then meta objects are parsed and searchable up to three levels deep. Any fields deeper than three levels are stringified and cannot be searched.

*WARNING* If this option is True, your metadata objects MUST have consistent types across all log messages or the metadata object might not be parsed properly.

##### level

* _Optional_
* Type: [string][]
* Default: `Info`
* Values: `Debug`, `Trace`, `Info`, `Warn`, `Error`, `Fatal`, `<your custom level>`

The default level passed along with every log sent through this instance.

##### verbose

* _Optional_
* Type: [string][] or [bool][]
* Default: `True`
* Values: `False` or any level

Sets the verbosity of log statements for failures.

##### request_timeout

* _Optional_
* Type: [int][]
* Default: `30000`

The amount of time (in ms) the request should wait for LogDNA to respond before timing out.

##### tags

* _Optional_
* Type: [list][]&lt;[string][]&gt;
* Default: `[]`

List of tags used to dynamically group hosts.  More information on tags is available at [How Do I Use Host Tags?](https://docs.logdna.com/docs/logdna-agent#section-how-do-i-use-host-tags-)

##### url

* _Optional_
* Type: [string][]
* Default: `'https://logs.logdna.com/logs/ingest'`

A custom ingestion endpoint to stream log lines into.

##### custom_fields

* _Optional_
* Type: [list][]&lt;[string][]&gt;
* Default: `['args', 'name', 'pathname', 'lineno']`

List of fields out of `record` object to include in the `meta` object. By default, `args`, `name`, `pathname`, and `lineno` will be included.

##### log_error_response

* _Optional_
* Type: [bool][]
* Default: `False`

Enables logging of the API response when an HTTP error is encountered

### log(line, [options])

#### line

* _Required_
* Type: [string][]
* Default: `''`

The log line to be sent to LogDNA.

#### options

##### level

* _Optional_
* Type: [string][]
* Default: `Info`
* Values: `Debug`, `Trace`, `Info`, `Warn`, `Error`, `Fatal`, `<your custom level>`

The level passed along with this log line.

##### app

* _Optional_
* Type: [string][]
* Default: `''`
* Values: `<your custom app>`

The app passed along with this log line.

##### env

* _Optional_
* Type: [string][]
* Default: `''`
* Values: `<your custom env>`

The environment passed with this log line.

##### meta

* _Optional_
* Type: [dict][]
* Default: `None`

A standard dictonary containing additional metadata about the log line that is passed. Please ensure values are JSON serializable.

**NOTE**: Values that are not JSON serializable will be removed and the respective keys will be added to the `__errors` string.

##### index_meta

* _Optional_
* Type: [bool][]
* Default: `False`

We allow meta objects to be passed with each line. By default these meta objects will be stringified and will not be
searchable, but will be displayed for informational purposes.

If this option is turned to true then meta objects will be parsed and will be searchable up to three levels deep. Any fields deeper than three levels will be stringified and cannot be searched.

*WARNING* When this option is true, your metadata objects across all types of log messages MUST have consistent types or the metadata object may not be parsed properly!

##### timestamp

* _Optional_
* Type: [float][]
* Default: [time.time()][]

The time in seconds since the epoch to use for the log timestamp. It must be within one day or current time - if it is not, it is ignored and time.time() is used in its place.


## Development

This project makes use of the [poetry][] package manager for local development.

```shell
$ poetry install
```

### Scripts

**lint**
Run linting rules w/o attempting to fix them

```shell
$ poetry run task lint
```


**lint:fix**

Run lint rules against all local python files and attempt to fix where possible.


```shell
$ poetry run task lint:fix
```

**test**:

Runs all unit tests and generates coverage reports

```shell
poetry run task test
```

## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tr>
    <td align="center"><a href="https://github.com/respectus"><img src="https://avatars.githubusercontent.com/u/1046364?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Muaz Siddiqui</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=respectus" title="Code">💻</a> <a href="https://github.com/logdna/python/commits?author=respectus" title="Documentation">📖</a> <a href="https://github.com/logdna/python/commits?author=respectus" title="Tests">⚠️</a></td>
    <td align="center"><a href="https://github.com/smusali"><img src="https://avatars.githubusercontent.com/u/34287490?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Samir Musali</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=smusali" title="Code">💻</a> <a href="https://github.com/logdna/python/commits?author=smusali" title="Documentation">📖</a> <a href="https://github.com/logdna/python/commits?author=smusali" title="Tests">⚠️</a></td>
    <td align="center"><a href="https://github.com/vilyapilya"><img src="https://avatars.githubusercontent.com/u/17367511?v=4?s=100" width="100px;" alt=""/><br /><sub><b>vilyapilya</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=vilyapilya" title="Code">💻</a> <a href="#maintenance-vilyapilya" title="Maintenance">🚧</a> <a href="https://github.com/logdna/python/commits?author=vilyapilya" title="Tests">⚠️</a></td>
    <td align="center"><a href="https://github.com/mikehu"><img src="https://avatars.githubusercontent.com/u/981800?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike Hu</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=mikehu" title="Documentation">📖</a></td>
    <td align="center"><a href="http://codedependant.net/"><img src="https://avatars.githubusercontent.com/u/148561?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Eric Satterwhite</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=esatterwhite" title="Code">💻</a> <a href="https://github.com/logdna/python/commits?author=esatterwhite" title="Documentation">📖</a> <a href="https://github.com/logdna/python/commits?author=esatterwhite" title="Tests">⚠️</a> <a href="#tool-esatterwhite" title="Tools">🔧</a></td>
    <td align="center"><a href="http://dev.utek.pl/"><img src="https://avatars.githubusercontent.com/u/128036?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Łukasz Bołdys (Lukasz Boldys)</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=utek" title="Code">💻</a> <a href="https://github.com/logdna/python/issues?q=author%3Autek" title="Bug reports">🐛</a></td>
    <td align="center"><a href="https://github.com/baronomasia"><img src="https://avatars.githubusercontent.com/u/4133158?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ryan</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=baronomasia" title="Documentation">📖</a></td>
  </tr>
  <tr>
    <td align="center"><a href="https://github.com/LYHuang"><img src="https://avatars.githubusercontent.com/u/14082239?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike Huang</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=LYHuang" title="Code">💻</a> <a href="https://github.com/logdna/python/issues?q=author%3ALYHuang" title="Bug reports">🐛</a></td>
    <td align="center"><a href="https://www.medium.com/@dmaas"><img src="https://avatars.githubusercontent.com/u/9013104?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dan Maas</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=danmaas" title="Code">💻</a></td>
    <td align="center"><a href="https://github.com/dchai76"><img src="https://avatars.githubusercontent.com/u/13873467?v=4?s=100" width="100px;" alt=""/><br /><sub><b>DChai</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=dchai76" title="Documentation">📖</a></td>
    <td align="center"><a href="https://naboa.de/"><img src="https://avatars.githubusercontent.com/u/10531844?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jakob de Maeyer </b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=jdemaeyer" title="Code">💻</a></td>
    <td align="center"><a href="https://github.com/sataloger"><img src="https://avatars.githubusercontent.com/u/359111?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrey Babak</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=sataloger" title="Code">💻</a></td>
    <td align="center"><a href="https://github.com/mike-spainhower"><img src="https://avatars.githubusercontent.com/u/380032?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mike S</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=SpainTrain" title="Code">💻</a> <a href="https://github.com/logdna/python/commits?author=SpainTrain" title="Documentation">📖</a></td>
    <td align="center"><a href="https://github.com/btashton"><img src="https://avatars.githubusercontent.com/u/173245?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brennan Ashton</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=btashton" title="Code">💻</a></td>
  </tr>
  <tr>
    <td align="center"><a href="http://justrocketscience.com/"><img src="https://avatars.githubusercontent.com/u/604528?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Christian Hotz-Behofsits</b></sub></a><br /><a href="https://github.com/logdna/python/commits?author=inkrement" title="Code">💻</a> <a href="https://github.com/logdna/python/issues?q=author%3Ainkrement" title="Bug reports">🐛</a></td>
    <td align="center"><a href="http://www.kinoarts.com/blog/"><img src="https://avatars.githubusercontent.com/u/108118?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Kurtiss Hare</b></sub></a><br /><a href="https://github.com/logdna/python/issues?q=author%3Akurtiss" title="Bug reports">🐛</a></td>
    <td align="center"><a href="https://twitter.com/rudyryk"><img src="https://avatars.githubusercontent.com/u/4500?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Alexey Kinev</b></sub></a><br /><a href="https://github.com/logdna/python/issues?q=author%3Arudyryk" title="Bug reports">🐛</a></td>
    <td align="center"><a href="https://github.com/matthiasfru"><img src="https://avatars.githubusercontent.com/u/24245643?v=4?s=100" width="100px;" alt=""/><br /><sub><b>matthiasfru</b></sub></a><br /><a href="https://github.com/logdna/python/issues?q=author%3Amatthiasfru" title="Bug reports">🐛</a></td>
  </tr>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

## License

MIT © [LogDNA](https://logdna.com/)
Copyright © 2017 [LogDNA][], released under an MIT license. See the [LICENSE](./LICENSE) file and [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)


*Happy Logging!*

[bool]: https://docs.python.org/3/library/stdtypes.html#boolean-values
[dict]: https://docs.python.org/3/library/stdtypes.html#mapping-types-dict
[int]: https://docs.python.org/3/library/functions.html#int
[float]: https://docs.python.org/3/library/functions.html#float
[string]: https://docs.python.org/3/library/string.html
[list]: https://docs.python.org/3/library/stdtypes.html#list
[time.time()]: https://docs.python.org/3/library/time.html?#time.time
[poetry]: https://python-poetry.org
[LogDNA]: https://logdna.com/
[LogRecord]: https://docs.python.org/2/library/logging.html#logrecord-objects
[fileConfig]: https://docs.python.org/2/library/logging.config.html#logging.config.fileConfig

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/logdna/python",
    "name": "logdna",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "logdna,logging,logs,python,logdna.com,logger",
    "author": "LogDNA Inc.",
    "author_email": "help@logdna.com",
    "download_url": "https://files.pythonhosted.org/packages/dc/6e/f0de50e7b646bfae6f666a7eb8a98dd78af4fde2d53e58c9edfe396c7093/logdna-1.18.12.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <a href=\"https://app.logdna.com\">\n    <img height=\"95\" width=\"202\" src=\"https://raw.githubusercontent.com/logdna/artwork/master/logo%2Bpython.png\">\n  </a>\n  <p align=\"center\">Python package for logging to <a href=\"https://app.logdna.com\">LogDNA</a></p>\n</p>\n\n<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->\n[![All Contributors](https://img.shields.io/badge/all_contributors-18-orange.svg?style=flat-square)](#contributors-)\n<!-- ALL-CONTRIBUTORS-BADGE:END -->\n\n---\n\n* [Installation](#installation)\n* [Setup](#setup)\n* [Usage](#usage)\n  * [Usage with fileConfig](#usage-with-fileconfig)\n* [API](#api)\n  * [LogDNAHandler(key: string, [options: dict])](#logdnahandlerkey-string-options-dict)\n    * [key](#key)\n    * [options](#options)\n  * [log(line, [options])](#logline-options)\n    * [line](#line)\n    * [options](#options-1)\n* [Development](#development)\n  * [Scripts](#scripts)\n* [License](#license)\n\n## Installation\n\n```bash\n$ pip install logdna\n```\n\n## Setup\n```python\nimport logging\nfrom logdna import LogDNAHandler\nimport os\n\n# Set your key as an env variable\n# then import here, its best not to\n# hard code your key!\nkey=os.environ['INGESTION_KEY']\n\nlog = logging.getLogger('logdna')\nlog.setLevel(logging.INFO)\n\noptions = {\n  'hostname': 'pytest',\n  'ip': '10.0.1.1',\n  'mac': 'C0:FF:EE:C0:FF:EE'\n}\n\n# Defaults to False; when True meta objects are searchable\noptions['index_meta'] = True\noptions['custom_fields'] = 'meta'\n\n\ntest = LogDNAHandler(key, options)\n\nlog.addHandler(test)\n\nlog.warning(\"Warning message\", extra={'app': 'bloop'})\nlog.info(\"Info message\")\n\n```\n_**Required**_\n* [LogDNA Ingestion Key](https://app.logdna.com/manage/profile)\n\n_**Optional**_\n* Hostname - ([string][])\n* MAC Address - ([string][])\n* IP Address - ([string][])\n* Index Meta - ([bool][]) - formatted as `options['index_meta']`\n\n## Usage\n\nAfter initial setup, logging is as easy as:\n```python\n# Simplest use case\nlog.info('My Sample Log Line')\n\n# Add a custom level\nlog.info('My Sample Log Line', extra={ 'level': 'MyCustomLevel' })\n\n# Include an App name with this specific log\nlog.info('My Sample Log Line', extra={ 'level': 'Warn', 'app': 'myAppName'})\n\n# Pass associated objects along as metadata\nmeta = {\n    'foo': 'bar',\n    'nested': {\n        'nest1': 'nested text'\n    }\n}\n\nopts = {\n    'level': 'warn',\n    'meta': meta\n}\n\nlog.info('My Sample Log Line', extra=opts)\n```\n\n### Usage with fileConfig\n\nTo use [LogDNAHandler](#logdnahandlerkey-string-options-dict) with [fileConfig][] (e.g., in a Django `settings.py` file):\n\n```python\nimport os\nimport logging\nfrom logdna import LogDNAHandler #  required to register `logging.handlers.LogDNAHandler`\n\nLOGGING = {\n    # Other logging settings...\n    'handlers': {\n        'logdna': {\n            'level': logging.DEBUG,\n            'class': 'logging.handlers.LogDNAHandler',\n            'key': os.environ.get('LOGDNA_INGESTION_KEY'),\n            'options': {\n                'app': '<app name>',\n                'env': os.environ.get('ENVIRONMENT'),\n                'index_meta': <True|False>,\n            },\n        },\n    },\n    'loggers': {\n        '': {\n            'handlers': ['logdna'],\n            'level': logging.DEBUG\n        },\n    },\n}\n```\n\n(This example assumes you have set environment variables for `ENVIRONMENT` and `LOGDNA_INGESTION_KEY`.)\n\n## API\n\n### LogDNAHandler(key: [string][], [options: [dict][]])\n\n#### key\n\n* _**Required**_\n* Type: [string][]\n* Values: `<your ingestion key>`\n\nThe [LogDNA API Key](https://app.logdna.com/manage/profile) associated with your account.\n\n#### options\n\n##### app\n\n* _Optional_\n* Type: [string][]\n* Default: `''`\n* Values: `<your custom app>`\n\nThe default app named that is included in every every log line sent through this instance.\n\n##### env\n\n* _Optional_\n* Type: [string][]\n* Default: `''`\n* Values: `<your custom env>`\n\nThe default env passed along with every log sent through this instance.\n\n##### hostname\n\n* _Optional_\n* Type: [string][]\n* Default: `''`\n* Values: `<your custom hostname>`\n\nThe default hostname passed along with every log sent through this instance.\n\n##### include_standard_meta\n\n* _Optional_\n* Type: [bool][]\n* Default: `False`\n\nPython [LogRecord][] objects includes language-specific information that may be useful metadata in logs.\nSetting `include_standard_meta` to `True` automatically populates meta objects with `name`, `pathname`, and `lineno`\nfrom the [LogRecord][].\n\n*WARNING* This option is deprecated and will be removed in the upcoming major release.\n\n##### index_meta\n\n* _Optional_\n* Type: [bool][]\n* Default: `False`\n\nWe allow meta objects to be passed with each line. By default these meta objects are stringified and not searchable, and are only displayed for informational purposes.\n\nIf this option is set to True then meta objects are parsed and searchable up to three levels deep. Any fields deeper than three levels are stringified and cannot be searched.\n\n*WARNING* If this option is True, your metadata objects MUST have consistent types across all log messages or the metadata object might not be parsed properly.\n\n##### level\n\n* _Optional_\n* Type: [string][]\n* Default: `Info`\n* Values: `Debug`, `Trace`, `Info`, `Warn`, `Error`, `Fatal`, `<your custom level>`\n\nThe default level passed along with every log sent through this instance.\n\n##### verbose\n\n* _Optional_\n* Type: [string][] or [bool][]\n* Default: `True`\n* Values: `False` or any level\n\nSets the verbosity of log statements for failures.\n\n##### request_timeout\n\n* _Optional_\n* Type: [int][]\n* Default: `30000`\n\nThe amount of time (in ms) the request should wait for LogDNA to respond before timing out.\n\n##### tags\n\n* _Optional_\n* Type: [list][]&lt;[string][]&gt;\n* Default: `[]`\n\nList of tags used to dynamically group hosts.  More information on tags is available at [How Do I Use Host Tags?](https://docs.logdna.com/docs/logdna-agent#section-how-do-i-use-host-tags-)\n\n##### url\n\n* _Optional_\n* Type: [string][]\n* Default: `'https://logs.logdna.com/logs/ingest'`\n\nA custom ingestion endpoint to stream log lines into.\n\n##### custom_fields\n\n* _Optional_\n* Type: [list][]&lt;[string][]&gt;\n* Default: `['args', 'name', 'pathname', 'lineno']`\n\nList of fields out of `record` object to include in the `meta` object. By default, `args`, `name`, `pathname`, and `lineno` will be included.\n\n##### log_error_response\n\n* _Optional_\n* Type: [bool][]\n* Default: `False`\n\nEnables logging of the API response when an HTTP error is encountered\n\n### log(line, [options])\n\n#### line\n\n* _Required_\n* Type: [string][]\n* Default: `''`\n\nThe log line to be sent to LogDNA.\n\n#### options\n\n##### level\n\n* _Optional_\n* Type: [string][]\n* Default: `Info`\n* Values: `Debug`, `Trace`, `Info`, `Warn`, `Error`, `Fatal`, `<your custom level>`\n\nThe level passed along with this log line.\n\n##### app\n\n* _Optional_\n* Type: [string][]\n* Default: `''`\n* Values: `<your custom app>`\n\nThe app passed along with this log line.\n\n##### env\n\n* _Optional_\n* Type: [string][]\n* Default: `''`\n* Values: `<your custom env>`\n\nThe environment passed with this log line.\n\n##### meta\n\n* _Optional_\n* Type: [dict][]\n* Default: `None`\n\nA standard dictonary containing additional metadata about the log line that is passed. Please ensure values are JSON serializable.\n\n**NOTE**: Values that are not JSON serializable will be removed and the respective keys will be added to the `__errors` string.\n\n##### index_meta\n\n* _Optional_\n* Type: [bool][]\n* Default: `False`\n\nWe allow meta objects to be passed with each line. By default these meta objects will be stringified and will not be\nsearchable, but will be displayed for informational purposes.\n\nIf this option is turned to true then meta objects will be parsed and will be searchable up to three levels deep. Any fields deeper than three levels will be stringified and cannot be searched.\n\n*WARNING* When this option is true, your metadata objects across all types of log messages MUST have consistent types or the metadata object may not be parsed properly!\n\n##### timestamp\n\n* _Optional_\n* Type: [float][]\n* Default: [time.time()][]\n\nThe time in seconds since the epoch to use for the log timestamp. It must be within one day or current time - if it is not, it is ignored and time.time() is used in its place.\n\n\n## Development\n\nThis project makes use of the [poetry][] package manager for local development.\n\n```shell\n$ poetry install\n```\n\n### Scripts\n\n**lint**\nRun linting rules w/o attempting to fix them\n\n```shell\n$ poetry run task lint\n```\n\n\n**lint:fix**\n\nRun lint rules against all local python files and attempt to fix where possible.\n\n\n```shell\n$ poetry run task lint:fix\n```\n\n**test**:\n\nRuns all unit tests and generates coverage reports\n\n```shell\npoetry run task test\n```\n\n## Contributors \u2728\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/respectus\"><img src=\"https://avatars.githubusercontent.com/u/1046364?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Muaz Siddiqui</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=respectus\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/commits?author=respectus\" title=\"Documentation\">\ud83d\udcd6</a> <a href=\"https://github.com/logdna/python/commits?author=respectus\" title=\"Tests\">\u26a0\ufe0f</a></td>\n    <td align=\"center\"><a href=\"https://github.com/smusali\"><img src=\"https://avatars.githubusercontent.com/u/34287490?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Samir Musali</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=smusali\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/commits?author=smusali\" title=\"Documentation\">\ud83d\udcd6</a> <a href=\"https://github.com/logdna/python/commits?author=smusali\" title=\"Tests\">\u26a0\ufe0f</a></td>\n    <td align=\"center\"><a href=\"https://github.com/vilyapilya\"><img src=\"https://avatars.githubusercontent.com/u/17367511?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>vilyapilya</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=vilyapilya\" title=\"Code\">\ud83d\udcbb</a> <a href=\"#maintenance-vilyapilya\" title=\"Maintenance\">\ud83d\udea7</a> <a href=\"https://github.com/logdna/python/commits?author=vilyapilya\" title=\"Tests\">\u26a0\ufe0f</a></td>\n    <td align=\"center\"><a href=\"https://github.com/mikehu\"><img src=\"https://avatars.githubusercontent.com/u/981800?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mike Hu</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=mikehu\" title=\"Documentation\">\ud83d\udcd6</a></td>\n    <td align=\"center\"><a href=\"http://codedependant.net/\"><img src=\"https://avatars.githubusercontent.com/u/148561?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Eric Satterwhite</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=esatterwhite\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/commits?author=esatterwhite\" title=\"Documentation\">\ud83d\udcd6</a> <a href=\"https://github.com/logdna/python/commits?author=esatterwhite\" title=\"Tests\">\u26a0\ufe0f</a> <a href=\"#tool-esatterwhite\" title=\"Tools\">\ud83d\udd27</a></td>\n    <td align=\"center\"><a href=\"http://dev.utek.pl/\"><img src=\"https://avatars.githubusercontent.com/u/128036?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>\u0141ukasz Bo\u0142dys (Lukasz Boldys)</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=utek\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/issues?q=author%3Autek\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    <td align=\"center\"><a href=\"https://github.com/baronomasia\"><img src=\"https://avatars.githubusercontent.com/u/4133158?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ryan</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=baronomasia\" title=\"Documentation\">\ud83d\udcd6</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/LYHuang\"><img src=\"https://avatars.githubusercontent.com/u/14082239?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mike Huang</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=LYHuang\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/issues?q=author%3ALYHuang\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    <td align=\"center\"><a href=\"https://www.medium.com/@dmaas\"><img src=\"https://avatars.githubusercontent.com/u/9013104?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Dan Maas</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=danmaas\" title=\"Code\">\ud83d\udcbb</a></td>\n    <td align=\"center\"><a href=\"https://github.com/dchai76\"><img src=\"https://avatars.githubusercontent.com/u/13873467?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>DChai</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=dchai76\" title=\"Documentation\">\ud83d\udcd6</a></td>\n    <td align=\"center\"><a href=\"https://naboa.de/\"><img src=\"https://avatars.githubusercontent.com/u/10531844?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jakob de Maeyer </b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=jdemaeyer\" title=\"Code\">\ud83d\udcbb</a></td>\n    <td align=\"center\"><a href=\"https://github.com/sataloger\"><img src=\"https://avatars.githubusercontent.com/u/359111?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Andrey Babak</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=sataloger\" title=\"Code\">\ud83d\udcbb</a></td>\n    <td align=\"center\"><a href=\"https://github.com/mike-spainhower\"><img src=\"https://avatars.githubusercontent.com/u/380032?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mike S</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=SpainTrain\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/commits?author=SpainTrain\" title=\"Documentation\">\ud83d\udcd6</a></td>\n    <td align=\"center\"><a href=\"https://github.com/btashton\"><img src=\"https://avatars.githubusercontent.com/u/173245?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Brennan Ashton</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=btashton\" title=\"Code\">\ud83d\udcbb</a></td>\n  </tr>\n  <tr>\n    <td align=\"center\"><a href=\"http://justrocketscience.com/\"><img src=\"https://avatars.githubusercontent.com/u/604528?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Christian Hotz-Behofsits</b></sub></a><br /><a href=\"https://github.com/logdna/python/commits?author=inkrement\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/logdna/python/issues?q=author%3Ainkrement\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    <td align=\"center\"><a href=\"http://www.kinoarts.com/blog/\"><img src=\"https://avatars.githubusercontent.com/u/108118?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kurtiss Hare</b></sub></a><br /><a href=\"https://github.com/logdna/python/issues?q=author%3Akurtiss\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    <td align=\"center\"><a href=\"https://twitter.com/rudyryk\"><img src=\"https://avatars.githubusercontent.com/u/4500?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alexey Kinev</b></sub></a><br /><a href=\"https://github.com/logdna/python/issues?q=author%3Arudyryk\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n    <td align=\"center\"><a href=\"https://github.com/matthiasfru\"><img src=\"https://avatars.githubusercontent.com/u/24245643?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>matthiasfru</b></sub></a><br /><a href=\"https://github.com/logdna/python/issues?q=author%3Amatthiasfru\" title=\"Bug reports\">\ud83d\udc1b</a></td>\n  </tr>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n## License\n\nMIT \u00a9 [LogDNA](https://logdna.com/)\nCopyright \u00a9 2017 [LogDNA][], released under an MIT license. See the [LICENSE](./LICENSE) file and [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)\n\n\n*Happy Logging!*\n\n[bool]: https://docs.python.org/3/library/stdtypes.html#boolean-values\n[dict]: https://docs.python.org/3/library/stdtypes.html#mapping-types-dict\n[int]: https://docs.python.org/3/library/functions.html#int\n[float]: https://docs.python.org/3/library/functions.html#float\n[string]: https://docs.python.org/3/library/string.html\n[list]: https://docs.python.org/3/library/stdtypes.html#list\n[time.time()]: https://docs.python.org/3/library/time.html?#time.time\n[poetry]: https://python-poetry.org\n[LogDNA]: https://logdna.com/\n[LogRecord]: https://docs.python.org/2/library/logging.html#logrecord-objects\n[fileConfig]: https://docs.python.org/2/library/logging.config.html#logging.config.fileConfig\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python Package for Sending Logs to LogDNA",
    "version": "1.18.12",
    "project_urls": {
        "Download": "https://github.com/logdna/python/tarball/1.18.12",
        "Homepage": "https://github.com/logdna/python"
    },
    "split_keywords": [
        "logdna",
        "logging",
        "logs",
        "python",
        "logdna.com",
        "logger"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17ee84be073de85b5216653384130b03d9acdae83af805d7909572b0efc160c9",
                "md5": "132dd8fd9f7087859d8d512f9c32a9c8",
                "sha256": "a30b71e0c9d61b20b017990a2601f422934d969ede1eb581bde3e7d9e7e8a648"
            },
            "downloads": -1,
            "filename": "logdna-1.18.12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "132dd8fd9f7087859d8d512f9c32a9c8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11715,
            "upload_time": "2023-07-27T21:39:22",
            "upload_time_iso_8601": "2023-07-27T21:39:22.870415Z",
            "url": "https://files.pythonhosted.org/packages/17/ee/84be073de85b5216653384130b03d9acdae83af805d7909572b0efc160c9/logdna-1.18.12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc6ef0de50e7b646bfae6f666a7eb8a98dd78af4fde2d53e58c9edfe396c7093",
                "md5": "0777df4fd0b4d3cdad4809291de12de2",
                "sha256": "ce9d4ae3be39128c605a5062d8d5e57cb482d3e377e36164d19932e163646cb0"
            },
            "downloads": -1,
            "filename": "logdna-1.18.12.tar.gz",
            "has_sig": false,
            "md5_digest": "0777df4fd0b4d3cdad4809291de12de2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 19723,
            "upload_time": "2023-07-27T21:39:24",
            "upload_time_iso_8601": "2023-07-27T21:39:24.455462Z",
            "url": "https://files.pythonhosted.org/packages/dc/6e/f0de50e7b646bfae6f666a7eb8a98dd78af4fde2d53e58c9edfe396c7093/logdna-1.18.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-27 21:39:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "logdna",
    "github_project": "python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "logdna"
}
        
Elapsed time: 0.11236s