Parcourir la source

Make the config example more explicit

Nick Babcock il y a 7 ans
Parent
commit
56b37e18c4
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      README.md

+ 2 - 1
README.md

@@ -16,7 +16,7 @@ Don't fret if this repo hasn't been updated recently. I use this every day to cr
 
 - Create a directory that will home base for OhmGraphite (I use C:\Apps\OhmGraphite).
 - Download the [latest zip](https://github.com/nickbabcock/OhmGraphite/releases/latest) and extract to our directory
-- Update app configuration (located at `OhmGraphite.exe.config`) to include the host and port of graphite and the hardware polling interval. This config can be updated in the future, but will require a restart of the app for effect.
+- Update app configuration (located at `OhmGraphite.exe.config`). The config below polls our hardware every `5` seconds and sends the results to a graphite server listening on `localhost:2003`.
 
 ```xml
 <?xml version="1.0" encoding="utf-8" ?>
@@ -29,6 +29,7 @@ Don't fret if this repo hasn't been updated recently. I use this every day to cr
 </configuration>
 ```
 
+- This config can be updated in the future, but will require a restart of the app for effect.
 - The app can be ran interactively by simply executing `OhmGraphite.exe`. Executing as administrator will ensure all sensors are found.
 - To install the app `.\OhmGraphite.exe install`. The command will install OhmGraphite as a Windows service (so you can manage it with your favorite powershell commands or `services.msc`)
 - To start the app after installation: `.\OhmGraphite.exe start` or your favorite Windows service management tool