Skip to content

Commit 41957eb

Browse files
committed
Release 0.31.0-alpha
1 parent 3a6e620 commit 41957eb

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# 0.31.0-alpha
2+
* [BREAKING] Decoupled scraping is now default. Removed code which allowed to use scraper without it.
3+
```
4+
# Those flags are just ignored
5+
-decoupled-scraping=false
6+
-decoupled-scraping=true
7+
```
8+
* [BREAKING] Small timeframes of scraping can be used again now. In the past yace decided the scraping
9+
interval based on config. This magic was removed for simplicity.
10+
```
11+
# In the past this would have in some cases still set --scraping-interval 600
12+
--scraping-interval 10
13+
# Now it really would scrape every 10 seconds which could introduce big API costs. So please watch
14+
# your API requests!
15+
--scraping-interval 10
16+
```
17+
* Fix problems with start/endtime of scrapes (klarrio-dlamb)
18+
* Add support for Database Migration Service metrics
19+
* Allow to hotreload config via /reload (antoniomerlin)
20+
121
# 0.30.1-alpha
222
* *SECURITY* Fix issue with building binaries. Please update to mitigate (https://nvd.nist.gov/vuln/detail/CVE-2020-14039)
323
* Thanks jeason81 for reporting this security incident!

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -486,12 +486,11 @@ The flags 'cloudwatch-concurrency' and 'tag-concurrency' define the number of co
486486
Setting a higher value makes faster scraping times but can incur in throttling and the blocking of the API.
487487

488488
### Decoupled scraping
489-
The flag 'decoupled-scraping' makes the exporter to scrape Cloudwatch metrics in background in fixed intervals, in stead of each time that the '/metrics' endpoint is fetched. This protects from the abuse of API requests that can cause extra billing in AWS account. This flag is activated by default.
489+
The exporter scraped cloudwatch metrics in the background in fixed interval.
490+
This protects from the abuse of API requests that can cause extra billing in AWS account.
490491

491-
If the flag 'decoupled-scraping' is activated, the flag 'scraping-interval' defines the seconds between scrapes. Its default value is 300.
492-
493-
### Config reloading
494-
Use a POST request to /reload to reload the config and reset the session cache.
492+
The flag 'scraping-interval' defines the seconds between scrapes.
493+
The default value is 300.
495494

496495
## Troubleshooting / Debugging
497496

0 commit comments

Comments
 (0)