diff --git a/CHANGELOG.md b/CHANGELOG.md index 3239500..daea73b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ cookbook-druid CHANGELOG =============== +## 1.7.0 + + - Miguel Negron + - [5e06d69] Add incident_uuid to rb_vault + - [e8da803] Release 1.6.0 + - [5d228bf] Add incident_uuid to rb_event datastoure + - nilsver + - [ff034df] Update CHANGELOG.md + - [2df63bc] Release 1.6.1 + - José Navarro en redBorder + - [97eaec6] Bug/#17959 add memcached hosts to druid common properties (#40) + - Miguel Negrón + - [04917df] Merge pull request #41 from redBorder/feature/incident_response + ## 1.6.1 - José Navarro en redBorder diff --git a/resources/libraries/realtime.rb b/resources/libraries/realtime.rb index e2e4926..c3bd33b 100755 --- a/resources/libraries/realtime.rb +++ b/resources/libraries/realtime.rb @@ -97,7 +97,7 @@ def realtime_spec(dimensions, zk_host, max_rows, partition_num, namespaces) rb_vault = {} rb_vault['dataSource'] = 'rb_vault' rb_vault['dataSource'] += '_' + namespace unless namespace.empty? - rb_vault['dimensions'] = %w(pri pri_text syslogfacility syslogfacility_text syslogseverity syslogseverity_text hostname fromhost_ip app_name sensor_name proxy_uuid message status category source target sensor_uuid service_provider service_provider_uuid namespace namespace_uuid deployment deployment_uuid market market_uuid organization organization_uuid campus campus_uuid building building_uuid floor floor_uuid action') + dimensions.keys + rb_vault['dimensions'] = %w(pri pri_text syslogfacility syslogfacility_text syslogseverity syslogseverity_text hostname fromhost_ip app_name sensor_name proxy_uuid message status category source target sensor_uuid service_provider service_provider_uuid namespace namespace_uuid deployment deployment_uuid market market_uuid organization organization_uuid campus campus_uuid building building_uuid floor floor_uuid action incident_uuid) + dimensions.keys rb_vault['dimensionExclusions'] = %w(unit type valur) rb_vault['metrics'] = [ { type: 'count', name: 'events' }, diff --git a/resources/metadata.rb b/resources/metadata.rb index bf03e8c..ec06c63 100644 --- a/resources/metadata.rb +++ b/resources/metadata.rb @@ -3,4 +3,4 @@ maintainer_email 'git@redborder.com' license 'AGPL-3.0' description 'Installs/Configures druid' -version '1.6.1' +version '1.7.0'