4.4 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
1.2.0
Added
- Support
persistent_termmeasurements. - Require Erlang/OTP 24+.
1.1.0
Added
- Add the
init_delayconfiguration option. (#70)
1.0.0
This release marks stability of the API. The library now requires Telemetry ~> 1.0.
Fixed
- Fix disabling the default poller via application environment.
Changed
- Drop support for OTP 20.
0.5.1
Added
- Support
{:global, atom()}and{:via, module(), term()}names for the poller process.
0.5.0
Added
system_countsmeasurement
0.4.1
Changed
- Improve docs
- No longer add a default name to telemetry processes
0.4.0
Telemetry Poller has been rewritten in Erlang so it can be used by the overall Erlang community.
Therefore, the Telemetry.Poller module must now be accessed as telemetry_poller.
A new process_info measurement has also been added and the vm_measurements and measurements
keys have been merged into a single measurements key for simplicity.
Added
:process_infomeasurement
Changed
vm_measurementsandmeasurementshave been merged intomeasurementsTelemetry.Pollerhas been rewritten totelemetry_poller
0.3.0
This release marks the upgrade to Telemetry 0.4.0. This means that Poller measurements can emit a map of values now instead of a single one, making it less "noisy" when it comes to number of emitted events.
All specific memory measurements have been replaced with a single :memory measurement sending all
the values that were emitted by old measurements at once.
:run_queue_lengths VM measurement has been removed for now, as we believe that as detailed data
as it provided is not necessary to effectively debug the system. :total_run_queue_lengths VM
measurement has been changed so that it reports a :total length of run queues, length of :cpu
run queues (including dirty CPU run queue), and length of (dirty) :io run queue.
Added
:memoryVM measurement reporting all the data returned by:erlang.memory/0call.
Changed
:total_run_queue_lengthsVM measurement is reporting a:total,:cpuand:iorun queue lengths now. See documentation for more details.
Removed
:total_memory,:atom_memory,:atom_used_memory,:processes_memory,:processes_used_memory,:binary_memory,:ets_memory,:code_memoryand:system_memoryVM measurements have been removed. Please use the:memorymeasurement now instead.
0.2.0
Added
- Added
:total_run_queue_lengthsand:run_queue_lengthsmemory measurements;
Changed
:total_run_queue_lengthsis now included in the set of default VM measurements;- A default Poller process, with a default set of VM measurements, is started when
:telemetry_pollerapplication starts (configurable via:telemetry.poller, :defaultapplication environment). - VM measurements are now provided to Poller's
:vm_measurementsoption. Passing atom:defaultto this option makes the Poller use a default set of VM measurements; - Telemetry has been upgraded to version 0.3, meaning that VM measurements now use this version to emit the events.
Removed
Telemetry.Poller.vm_measurements/0function has been removed in favor of:vm_measurementsoption.
Fixed
- Fixed the type definition of
Telemetry.Poller.measurement/0type - no Dialyzer warnings are emitted when running it on the project.
0.1.0
Added
- The Poller process periodically invoking registered functions which emit Telemetry events. It supports VM memory measurements and custom measurements provided as MFAs.