Skip to content

Commit

Permalink
Prepare release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsaou committed May 16, 2016
1 parent ff91f2d commit bb4aa94
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 272 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,5 @@ cmake_install.cmake
.jetbrains*

contrib/debian/changelog
profile/benchmark-dictionary
profile/benchmark-registry
67 changes: 67 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,70 @@
netdata (1.2.0) - 2016-05-16

At a glance:

- netdata is now 30% faster
- netdata now has a registry (my-netdata dashboard menu)
- netdata now monitors Linux Containers (docker, lxc, etc)

IMPORTANT:
This version requires libuuid. The package you need is:

- uuid-dev (debian/ubuntu), or
- libuuid-devel (centos/fedora/redhat)

In detail:

* netdata is now 30% faster !

- Patches submitted by @fredericopissarra improved overall
netdata performance by 10%.

- A new improved search function in the internal indexes
made all searches faster by 50%, resulting in about
20% better performance for the core of netdata.

- More efficient threads locking in key components
contributed to the overal efficiency.

* netdata now has a CENTRAL REGISTRY !

The central registry tracks all your netdata servers
and bookmarks them for you at the 'my-netdata' menu
on all dashboards.

Every netdata can act as a registry, but there is also
a global registry provided for free for all netdata users!

* netdata now monitors CONTAINERS !

docker, lxc, or anything else. For each container it monitors
CPU, RAM, DISK I/O (network interfaces were already monitored)

* apps.plugin: now uses linux capabilities by default
without setuid to root

* netdata has now an improved signal handler
thanks to @simonnagl

* API: new improved CORS support

* SNMP: counter64 support fixed

* MYSQL: more charts, about QCache, MyISAM key cache,
InnoDB buffer pools, open files

* DISK charts now show mount point when available

* Dashboard: improved support for older web browsers
and mobile web browsers (thanks to @simonnagl)

* Multi-server dashboards now allow de-coupled refreshes for
each chart, so that if one netdata has a network latency
the other charts are not affected

* Several other minor improvements and bugfixes


netdata (1.1.0) - 2016-04-20

Dozens of commits that improve netdata in several ways:
Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
AC_PREREQ(2.60)

define([VERSION_MAJOR], [1])
define([VERSION_MINOR], [1])
define([VERSION_FIX], [1])
define([VERSION_MINOR], [2])
define([VERSION_FIX], [0])
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
define([VERSION_SUFFIX], [_master])
define([VERSION_SUFFIX], [])

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

AC_INIT([netdata], VERSION_NUMBER[]VERSION_SUFFIX)

Expand Down
5 changes: 5 additions & 0 deletions netdata.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/%{name}/web

%changelog
* Mon May 16 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.2.0-1
- netdata is now 30% faster.
- netdata now has a registry (my-netdata menu on the dashboard).
- netdata now monitors Linux containers.
- Several more improvements, new features and bugfixes.
* Wed Apr 20 2016 Costa Tsaousis <costa@tsaousis.gr> - 1.1.0-1
- Several new features (IPv6, SYNPROXY, Users, Users Groups).
- A lot of bug fixes and optimizations.
Expand Down
268 changes: 0 additions & 268 deletions node.d/node_modules/node-int64.js

This file was deleted.

1 change: 1 addition & 0 deletions packaging/tar-compare
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ diff -r "$1" $MYTMP/unpack/* | grep "^Only" | sed \
-e '/: .*\.o$/d' \
-e '/: CMakeLists.txt/d' \
-e '/: .travis.yml/d' \
-e '/: profile$/d' \
-e '/sbin: \(firehol\|fireqos\|link-balancer\)$/d' \
-e '/sbin: \(update-ipsets\|vnetbuild\|commands.sed\)$/d' > $MYTMP/out

Expand Down

0 comments on commit bb4aa94

Please sign in to comment.