Skip to content

Commit bb4aa94

Browse files
committed
Prepare release 1.2.0
1 parent ff91f2d commit bb4aa94

6 files changed

Lines changed: 79 additions & 272 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,5 @@ cmake_install.cmake
7676
.jetbrains*
7777

7878
contrib/debian/changelog
79+
profile/benchmark-dictionary
80+
profile/benchmark-registry

ChangeLog

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
netdata (1.2.0) - 2016-05-16
2+
3+
At a glance:
4+
5+
- netdata is now 30% faster
6+
- netdata now has a registry (my-netdata dashboard menu)
7+
- netdata now monitors Linux Containers (docker, lxc, etc)
8+
9+
IMPORTANT:
10+
This version requires libuuid. The package you need is:
11+
12+
- uuid-dev (debian/ubuntu), or
13+
- libuuid-devel (centos/fedora/redhat)
14+
15+
In detail:
16+
17+
* netdata is now 30% faster !
18+
19+
- Patches submitted by @fredericopissarra improved overall
20+
netdata performance by 10%.
21+
22+
- A new improved search function in the internal indexes
23+
made all searches faster by 50%, resulting in about
24+
20% better performance for the core of netdata.
25+
26+
- More efficient threads locking in key components
27+
contributed to the overal efficiency.
28+
29+
* netdata now has a CENTRAL REGISTRY !
30+
31+
The central registry tracks all your netdata servers
32+
and bookmarks them for you at the 'my-netdata' menu
33+
on all dashboards.
34+
35+
Every netdata can act as a registry, but there is also
36+
a global registry provided for free for all netdata users!
37+
38+
* netdata now monitors CONTAINERS !
39+
40+
docker, lxc, or anything else. For each container it monitors
41+
CPU, RAM, DISK I/O (network interfaces were already monitored)
42+
43+
* apps.plugin: now uses linux capabilities by default
44+
without setuid to root
45+
46+
* netdata has now an improved signal handler
47+
thanks to @simonnagl
48+
49+
* API: new improved CORS support
50+
51+
* SNMP: counter64 support fixed
52+
53+
* MYSQL: more charts, about QCache, MyISAM key cache,
54+
InnoDB buffer pools, open files
55+
56+
* DISK charts now show mount point when available
57+
58+
* Dashboard: improved support for older web browsers
59+
and mobile web browsers (thanks to @simonnagl)
60+
61+
* Multi-server dashboards now allow de-coupled refreshes for
62+
each chart, so that if one netdata has a network latency
63+
the other charts are not affected
64+
65+
* Several other minor improvements and bugfixes
66+
67+
168
netdata (1.1.0) - 2016-04-20
269

370
Dozens of commits that improve netdata in several ways:

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
AC_PREREQ(2.60)
55

66
define([VERSION_MAJOR], [1])
7-
define([VERSION_MINOR], [1])
8-
define([VERSION_FIX], [1])
7+
define([VERSION_MINOR], [2])
8+
define([VERSION_FIX], [0])
99
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
10-
define([VERSION_SUFFIX], [_master])
10+
define([VERSION_SUFFIX], [])
1111

1212
dnl Set to "1" for a first RPM release of a new version
13-
PACKAGE_RPM_RELEASE="0.0.$(echo VERSION_SUFFIX | sed s/^_//)"
13+
PACKAGE_RPM_RELEASE="1"
1414

1515
AC_INIT([netdata], VERSION_NUMBER[]VERSION_SUFFIX)
1616

netdata.spec.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ rm -rf $RPM_BUILD_ROOT
100100
%{_datadir}/%{name}/web
101101

102102
%changelog
103+
* Mon May 16 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.2.0-1
104+
- netdata is now 30% faster.
105+
- netdata now has a registry (my-netdata menu on the dashboard).
106+
- netdata now monitors Linux containers.
107+
- Several more improvements, new features and bugfixes.
103108
* Wed Apr 20 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.1.0-1
104109
- Several new features (IPv6, SYNPROXY, Users, Users Groups).
105110
- A lot of bug fixes and optimizations.

node.d/node_modules/node-int64.js

Lines changed: 0 additions & 268 deletions
This file was deleted.

packaging/tar-compare

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ diff -r "$1" $MYTMP/unpack/* | grep "^Only" | sed \
5656
-e '/: .*\.o$/d' \
5757
-e '/: CMakeLists.txt/d' \
5858
-e '/: .travis.yml/d' \
59+
-e '/: profile$/d' \
5960
-e '/sbin: \(firehol\|fireqos\|link-balancer\)$/d' \
6061
-e '/sbin: \(update-ipsets\|vnetbuild\|commands.sed\)$/d' > $MYTMP/out
6162

0 commit comments

Comments
 (0)