Skip to content

Latest commit

 

History

History
46 lines (41 loc) · 909 Bytes

README.md

File metadata and controls

46 lines (41 loc) · 909 Bytes

metrics_exporter

How to use

Set the metrics names and the postgres connection:

me = MetricsExporter(
    metricsGroups=[['metric1', 'metric2'], ['metric3']],
    tableName='it',
    user='root',
    password='root',
    dbname='postgres',
    host='localhost',
    port=5432,
    bufferSize=10000
)

For each metrics, 3 other metrics will be calculated:

  • Nomamlized value over the metric group
  • Accumulated value of the metric
  • Normalized accumulated value over the metric group

Now you can insert a new metric for a month in a page/user:

me.insertMetric(
    1, 'pippo', '201005',
    [{
        'metric1': 2,
        'metric2': 4
    }, {
        'metric3': 2
    }]
)

To be sure that all metrics have been saved to the database in the end run:

me.finalize()

Pip package

To update the pip package

python setup.py sdist
twine upload dist/*