Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit b55a693

Browse files
author
Konstantin Nazarov
committed
Release version 1.0.0
1 parent ce459a6 commit b55a693

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

rockspecs/prometheus-1.0.0-1.rockspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
}

rockspecs/prometheus-scm-1.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ source = {
77
description = {
88
summary = 'Prometheus library to collect metrics from Tarantool',
99
homepage = 'https://github.com/tarantool/prometheus.git',
10-
license = 'MIT',
10+
license = 'BSD',
1111
}
1212
dependencies = {
1313
'lua >= 5.1';

0 commit comments

Comments
 (0)