Skip to content

Commit

Permalink
thanks, steve ulrich
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdotorg committed Aug 12, 2018
1 parent a6a2ead commit d543030
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ this extension can be easily installed using the weewx extensions installer.

2. install using the weewx extension utility
```
wee_extension --install v1.0.0.tar.gz
wee_extension --install v1.1.0.tar.gz
```

3. update **weewx.conf** to appropriately tag weather data for submission into the prometheus pushgateway and subsequent scraping from prometheus. note that **job** and **instance** names may be subject to relabeling depending on your prometheus environment.
Expand All @@ -45,6 +45,6 @@ sudo /etc/init.d/weewx start
```

## administravia
**author:** steve ulrich \<[sulrich@botwerks.org](mailto:sulrich@botwerks.org)\>
**author:** Tom Mitchell \<[tom@tom.org](mailto:tom@tom.org)\>
**license:** Apache License, Version 2.0. See LICENSE.
**source:** [https://github.com/sulrich/weewx-prompush](https://github.com/sulrich/weewx-prompush)
**source:** [https://github.com/tomdotorg/weewx-prometheus](https://github.com/tomdotorg/weewx-prometheus)
2 changes: 1 addition & 1 deletion bin/user/prompush.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
{'name': 'weewx_loop_tx_battery_status', 'type': 'gauge'}
}

__version__ = '1.0.0'
__version__ = '1.1.0'

import weewx
import weewx.restx
Expand Down
5 changes: 4 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[1.0.0] - 2018-08-12
[1.0.0] - 2016-06-25
initial release for submission to weewx extensions list
[1.1.0] - 2018-08-12
tom take it up where steve ulrich left off (thanks, steve!)

9 changes: 5 additions & 4 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
"""

__title__ = 'PromPush'
__version__ = '1.0.0'
__author__ = 'steve ulrich <sulrich@botwerks.org>'
__version__ = '1.1.0'
__author__ = 'Tom Mitchell <tom@tom.org>'
__license__ = 'Apache License, Version 2.0'

""" props to steve ulrich for the original version of this!!"""

import setup

Expand All @@ -26,8 +27,8 @@ def __init__(self):
version=__version__,
name=__title__,
description='post weather data to prometheus pushgateway.',
author='steve ulrich',
author_email='sulrich@botwerks.org',
author='Tom Mitchell',
author_email='tom@tom.org',
restful_services='user.prompush.PromPush',
config={
'StdRESTful': {
Expand Down

0 comments on commit d543030

Please sign in to comment.