This repository was archived by the owner on Feb 11, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+ All notable changes to this project will be documented in this file.
3+
4+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5+ and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6+
7+
8+ ## [ 1.0.0] - 2018-01-10
9+ ### Added
10+ - Support for counter, gauge and histogram metrics
11+ - Exporting metrics to a prometheus plaintext format
12+ - Serving metrics via tarantool 'http' module
13+ - Collecting basic tarantool stats: memory, request count and tuple counts by space
14+ - Luarock-based packaging
15+ - Basic unit tests
Original file line number Diff line number Diff line change 1+ package = ' prometheus'
2+ version = ' 1.0.0-1'
3+ source = {
4+ url = ' git://github.com/tarantool/prometheus.git' ,
5+ tag = ' 1.0.0' ,
6+ }
7+ description = {
8+ summary = ' Prometheus library to collect metrics from Tarantool' ,
9+ homepage = ' https://github.com/tarantool/prometheus.git' ,
10+ license = ' BSD' ,
11+ }
12+ dependencies = {
13+ ' lua >= 5.1' ;
14+ }
15+ build = {
16+ type = ' builtin' ,
17+
18+ modules = {
19+ [' prometheus.tarantool-metrics' ] = ' tarantool-metrics.lua' ,
20+ [' prometheus' ] = ' prometheus.lua'
21+ }
22+ }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ source = {
77description = {
88 summary = ' Prometheus library to collect metrics from Tarantool' ,
99 homepage = ' https://github.com/tarantool/prometheus.git' ,
10- license = ' MIT ' ,
10+ license = ' BSD ' ,
1111}
1212dependencies = {
1313 ' lua >= 5.1' ;
You can’t perform that action at this time.
0 commit comments