Skip to content

Commit

Permalink
Fix harvest times.
Browse files Browse the repository at this point in the history
  • Loading branch information
asllop committed Aug 30, 2022
1 parent b847630 commit ad2ae84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG
All notable changes to this project will be documented in this file.

## [3.0.2] - 2022/08/30
### Fix
- Harvest initial time, from 10 to 60 seconds.

## [3.0.1] - 2022/08/25
### Add
- Added package json file
Expand Down
4 changes: 2 additions & 2 deletions components/NewRelicAgent/NRAgent.brs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function NewRelicInit(account as String, apikey as String, region as String) as
m.nrEventArrayDeltaK = 40
m.nrEventArrayK = m.nrEventArrayNormalK
'Harvest cycles for events
m.nrEventHarvestTimeNormal = 10 'TODO: 60
m.nrEventHarvestTimeNormal = 60
m.nrEventHarvestTimeMax = 600
m.nrEventHarvestTimeDelta = 60
'Reservoir sampling for logs
Expand All @@ -58,7 +58,7 @@ function NewRelicInit(account as String, apikey as String, region as String) as
m.nrMetricArrayDeltaK = 40
m.nrMetricArrayK = m.nrMetricArrayNormalK
'Harvest cycles for metrics
m.nrMetricHarvestTimeNormal = 10 'TODO: 60
m.nrMetricHarvestTimeNormal = 60
m.nrMetricHarvestTimeMax = 600
m.nrMetricHarvestTimeDelta = 60

Expand Down
2 changes: 1 addition & 1 deletion components/NewRelicAgent/NRAgent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<interface>
<!-- Properties -->
<field id="version" type="string" value="3.0.1"/>
<field id="version" type="string" value="3.0.2"/>
<field id="patternGen" type="node"/>
<!-- Public Methods (wrapped) -->
<function name="NewRelicInit"/>
Expand Down

0 comments on commit ad2ae84

Please sign in to comment.