mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 13:28:01 -05:00
Update default scrape-interval to 2 minutes for Beaconcha.in API rate limit (#14537)
* Update default scrape-interval to 2 minutes for Beaconcha.in API rate limit * Update changelog for scrape-interval change --------- Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
This commit is contained in:
@@ -61,6 +61,7 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve
|
|||||||
- Moved `ConvertKzgCommitmentToVersionedHash` to the `primitives` package.
|
- Moved `ConvertKzgCommitmentToVersionedHash` to the `primitives` package.
|
||||||
- reversed the boolean return on `BatchVerifyDepositsSignatures`, from need verification, to all keys successfully verified
|
- reversed the boolean return on `BatchVerifyDepositsSignatures`, from need verification, to all keys successfully verified
|
||||||
- Fix `engine_exchangeCapabilities` implementation.
|
- Fix `engine_exchangeCapabilities` implementation.
|
||||||
|
- Updated the default `scrape-interval` in `Client-stats` to 2 minutes to accommodate Beaconcha.in API rate limits.
|
||||||
- Switch to compounding when consolidating with source==target.
|
- Switch to compounding when consolidating with source==target.
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|||||||
@@ -28,6 +28,6 @@ var (
|
|||||||
ScrapeIntervalFlag = &cli.DurationFlag{
|
ScrapeIntervalFlag = &cli.DurationFlag{
|
||||||
Name: "scrape-interval",
|
Name: "scrape-interval",
|
||||||
Usage: "Frequency of scraping expressed as a duration, eg 2m or 1m5s.",
|
Usage: "Frequency of scraping expressed as a duration, eg 2m or 1m5s.",
|
||||||
Value: 60 * time.Second,
|
Value: 120 * time.Second,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user