Skip to content

Instantly share code, notes, and snippets.

@sandeepkanabar
Last active September 22, 2016 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandeepkanabar/733931975697743e1a3b8df86f3f7acb to your computer and use it in GitHub Desktop.
Save sandeepkanabar/733931975697743e1a3b8df86f3f7acb to your computer and use it in GitHub Desktop.
Elasticsearch-puppet-debug
class profile::elasticsearch_cluster (
$es_version = hiera('profile::elasticsearch::version'),
$es_repo_version = hiera('profile::elasticsearch::repo_version'),
$es_manage_repo = hiera('profile::elasticsearch::manage_repo'),
$es_package_pin = hiera('profile::elasticsearch::package_pin'),
$es_cluster_name = hiera('profile::elasticsearch::cluster_name'),
$es_heap_size = hiera('profile::elasticsearch::es_heap_size'),
$es_node_master = hiera('profile::elasticsearch::node_master'),
$es_node_data = hiera('profile::elasticsearch::node_data'),
$es_node_tag = hiera('profile::elasticsearch::node_tag'),
$es_node_zone = hiera('profile::elasticsearch::node_zone'),
$es_network_host = hiera('profile::elasticsearch::network_host'),
$es_index_number_of_shards = hiera('profile::elasticsearch::index_number_of_shards'),
$es_index_number_of_replicas = hiera('profile::elasticsearch::index_number_of_replicas'),
$es_instance_name = hiera('profile::elasticsearch::instance_name'),
$es_host = hiera('profile::elasticsearch::es_host'),
$es_port = hiera('profile::elasticsearch::es_port'),
$proxy_url = hiera('profile::elasticsearch::proxy_url'),
$data_dir = hiera('profile::elasticsearch::es_data_dir'),
$log_dir = hiera('profile::elasticsearch::es_log_dir'),
$snapshot_repo_dir = hiera('profile::elasticsearch::es_snapshot_repo_dir'),
$conf_dir = hiera('profile::elasticsearch::es_conf_dir'),
$discovery_zen_ping_unicast_hosts = hiera('profile::elasticsearch::discovery_zen_ping_unicast_hosts'),
$discovery_zen_ping_multicast_enabled = hiera('profile::elasticsearch::discovery_zen_ping_multicast_enabled'),
$discovery_zen_ping_timeout = hiera('profile::elasticsearch::discovery_zen_ping_timeout'),
$marvel_agent_enabled = hiera('profile::elasticsearch::marvel_agent_enabled'),
$marvel_agent_exporters = hiera('profile::elasticsearch::marvel_agent_exporters_id1_type'),
$marvel_agent_exporters_host = hiera('profile::elasticsearch::marvel_agent_exporters_id1_host'),
$shield_enabled = hiera('profile::elasticsearch::shield_enabled'),
$es_shield_username = hiera('profile::elasticsearch::shield_username'),
$es_shield_password = hiera('profile::elasticsearch::shield_password'),
$kibana_username = hiera('profile::elasticsearch::kibana_username'),
$kibana_password = hiera('profile::elasticsearch::kibana_password'),
$marvel_agent_username = hiera('profile::elasticsearch::marvel_agent_username'),
$marvel_agent_password = hiera('profile::elasticsearch::marvel_agent_password'),
$create_kibana_user = hiera('profile::elasticsearch::create_kibana_user'),
$es_node_marvel = false, # This property is not specified in heira. For marvel node, its profile will set this to true while calling this class
$config = {
}
){
#Local variables
if ($proxy_url != '' and $proxy_url != 'absent') {
$proxy_url_array = split($proxy_url, ":")
## Make sure to have both port and host
validate_array($proxy_url_array)
$proxy_host = $proxy_url_array[0]
$proxy_port = $proxy_url_array[1]
} else {
$proxy_host = undef
$proxy_port = undef
}
user{'elasticsearch':
ensure => present,
shell => "/sbin/nologin"
}->
exec { 'create-elasticsearch-snapshot-repo-directory':
path => "/bin",
command => "mkdir -p ${snapshot_repo_dir}",
}->
exec { 'create-elasticsearch-log-directory':
path => "/bin",
command => "mkdir -p ${log_dir}",
}->
file { $snapshot_repo_dir:
ensure => "directory",
owner => "elasticsearch",
group => "elasticsearch",
mode => 0644,
recurse => true,
}
$config_hash = {
'ES_HEAP_SIZE' => $es_heap_size,
'MAX_OPEN_FILES' => '65535',
'MAX_LOCKED_MEMORY' => 'unlimited'
}
#Ensure jdk_oracle
if ! defined(Class['::profile::oracle_jdk']) {
class {'profile::oracle_jdk':}
}
class { '::elasticsearch':
version => $es_version,
manage_repo => $es_manage_repo,
repo_version => $es_repo_version,
package_pin => $es_package_pin,
init_defaults => $config_hash,
#package_url => $package_url,
config =>
{
'cluster.name' => $es_cluster_name,
'node.name' => $::fqdn,
'node.master' => $es_node_master,
'node.data' => $es_node_data,
'node.tag' => $es_node_tag,
'node.zone' => $es_node_zone,
'network.host' => $es_network_host,
'bootstrap.mlockall' => true,
'index.number_of_shards' => $es_index_number_of_shards,
'index.number_of_replicas' => $es_index_number_of_replicas,
'discovery.zen.ping.unicast.hosts' => $discovery_zen_ping_unicast_hosts,
'discovery.zen.ping.multicast.enabled' => $discovery_zen_ping_multicast_enabled,
'discovery.zen.ping.timeout' => $discovery_zen_ping_timeout,
'marvel.agent.enabled' => $marvel_agent_enabled,
'marvel.agent.exporters.id1.type' => $marvel_agent_exporters,
'marvel.agent.exporters.id1.host' => $marvel_agent_exporters_host,
'marvel.agent.exporters.id1.auth.username' => $marvel_agent_username,
'marvel.agent.exporters.id1.auth.password' => $marvel_agent_password,
'path.repo' => $snapshot_repo_dir,
},
# 'path' => {
# 'logs' => $log_dir
# }
# },
require => [Class['::profile::oracle_jdk']]
}
elasticsearch::instance { 'es-01':
datadir => $data_dir,
logdir => $log_dir,
configdir => $conf_dir,
config => $config
}
elasticsearch::plugin{'mobz/elasticsearch-head':
#module_dir => 'head',
instances => 'es-01',
#url => 'http://github.com/mobz/elasticsearch-head/archive/master.zip',
#url => 'http://10.2.162.196/artifactory/epmp-yum/rpms/elasticsearch-plugins/elasticsearch-head-master.zip',
proxy_host => $proxy_host,
proxy_port => $proxy_port
}
elasticsearch::plugin {'license':
#module_dir => 'marvel',
instances => 'es-01',
#url => ''
}->
file { 'es-license.json':
path => '/etc/elasticsearch/es-license.json',
ensure => file,
mode => '0755',
source => 'puppet:///modules/profile/license.json'
}
if ($marvel_agent_enabled) == false {
elasticsearch::plugin {'marvel-agent':
ensure => 'absent',
instances => 'es-01'
}
} else {
if ($es_node_marvel) == false {
elasticsearch::plugin {'marvel-agent':
instances => 'es-01',
}
}else {
elasticsearch::plugin {'marvel-agent':
ensure => 'absent',
instances => 'es-01'
}
}
}
if ($shield_enabled) == false {
elasticsearch::plugin {'shield':
ensure => 'absent',
instances => 'es-01'
}
} else {
elasticsearch::plugin {'shield':
instances => 'es-01',
}->
# add user/role and password for shield authentication
#notice("es_shield_username is $es_shield_username")
#notice("es_shield_password is $es_shield_password")
exec{"add_shield_admin_user":
command => "/usr/share/elasticsearch/bin/shield/esusers useradd $es_shield_username -r admin -p $es_shield_password",
require => [Elasticsearch::Plugin['shield'], Elasticsearch::Plugin['license']],
path => "/usr/bin/:/usr/sbin/:/bin/:/usr/share/elasticsearch/bin/shield",
onlyif => "test $(/usr/share/elasticsearch/bin/shield/esusers list | grep '$es_shield_username' | wc -l) -eq 0",
logoutput => true
}->
#work around shield limitation. Shield doesn't recognize custom config dirs
rsync::get { '/data/elasticsearch/conf':
source => '/etc/elasticsearch/shield',
purge => true,
}->
exec { 'chown-shield-folder':
path => '/usr/bin:/usr/sbin:/bin',
command => "ls -al /data/elasticsearch/conf/shield && chown -R elasticsearch:elasticsearch /data/elasticsearch/conf/shield",
}
}
if ($create_kibana_user == true and $shield_enabled == true) {
exec{"add_kibana_user":
command => "/usr/share/elasticsearch/bin/shield/esusers useradd $kibana_username -r kibana4_server -p $kibana_password",
require => [Elasticsearch::Plugin['shield'], Elasticsearch::Plugin['license']],
path => "/usr/bin/:/usr/sbin/:/bin/:/usr/share/elasticsearch/bin/shield",
onlyif => "test $(/usr/share/elasticsearch/bin/shield/esusers list | grep '$kibana_username' | wc -l) -eq 0",
logoutput => true
}
}
if ($es_node_marvel) == true {
if ($shield_enabled) == true {
notify {"marvel agent username and pass is: ${marvel_agent_username} ${marvel_agent_password}":
withpath => true,
}
exec{"add_marvel_agent_user":
command => "/usr/share/elasticsearch/bin/shield/esusers useradd $marvel_agent_username -r remote_marvel_agent -p $marvel_agent_password",
require => [Elasticsearch::Plugin['shield'], Elasticsearch::Plugin['license']],
path => "/usr/bin/:/usr/sbin/:/bin/:/usr/share/elasticsearch/bin/shield",
onlyif => "test $(/usr/share/elasticsearch/bin/shield/esusers list | grep '$marvel_agent_username' | wc -l) -eq 0",
logoutput => true
}
}
}
if ($marvel_agent_enabled) == true {
notice("marvel_agent_exporters is $marvel_agent_exporters")
if ($marvel_agent_exporters) == 'local' {
notice("Inside agent exporters" )
notify {"inside agent exporters":
withpath => true,
}
exec{"add_kibana_user":
command => "/usr/share/elasticsearch/bin/shield/esusers useradd $kibana_username -r kibana4_server,marvel_user -p $kibana_password",
require => [Elasticsearch::Plugin['shield'], Elasticsearch::Plugin['license']],
path => "/usr/bin/:/usr/sbin/:/bin/:/usr/share/elasticsearch/bin/shield",
onlyif => "test $(/usr/share/elasticsearch/bin/shield/esusers list | grep '$kibana_username' | wc -l) -eq 0",
logoutput => true
}->
exec {"change-marvel-index":
command => "sleep 20 && curl -XPUT 'http://$es_host:$es_port/_template/custom_marvel' -d '{ \"template\": \".marvel-es-*\", \"order\": 1, \"settings\": { \"number_of_shards\": 1, \"number_of_replicas\": 0 }}'",
path => "/usr/bin/:/usr/sbin/:/bin/",
tries => 5,
try_sleep => 10
}->
exec {"delete-marvel-indices":
command => "curl -XDELETE 'http://$es_host:$es_port/.marvel-es-*'",
path => "/usr/bin/:/usr/sbin/:/bin/",
tries => 5,
try_sleep => 10
}
}
}
}
class role::es_logstash inherits role {
anchor { 'es_logstash_role::begin': }->
class {'profile::setup_os_params':
}->
class {'profile::elasticsearch_cluster':
}->
class {'profile::install_es_license':
}->
class {'profile::logstash':
} ->
anchor { 'es_logstash_role::end': }
}
#elasticsearch properties
profile::elasticsearch::version: 2.3.3
profile::elasticsearch::repo_version: '2.x'
profile::elasticsearch::manage_repo: true
profile::elasticsearch::package_pin: false
profile::elasticsearch::cluster_name: ndd-es-cluster
profile::elasticsearch::port: 9300
profile::elasticsearch::es_heap_size: 1G
profile::elasticsearch::node_master: true
profile::elasticsearch::node_data: true
profile::elasticsearch::node_tag: ndd-es
profile::elasticsearch::node_zone: local
profile::elasticsearch::network_host: _site_
profile::elasticsearch::index_number_of_shards: 1
profile::elasticsearch::index_number_of_replicas: 0
profile::elasticsearch::instance_name: es-01
profile::elasticsearch::es_host: "%{::ipaddress}"
profile::elasticsearch::es_port: 9200
profile::elasticsearch::proxy_url: absent
profile::elasticsearch::es_data_dir: /data/elasticsearch/data
profile::elasticsearch::es_log_dir: /data/elasticsearch/log
profile::elasticsearch::es_snapshot_repo_dir: /data/elasticsearch/repo
profile::elasticsearch::es_conf_dir: /data/elasticsearch/conf
profile::elasticsearch::discovery_zen_ping_unicast_hosts: "%{::ipaddress}"
profile::elasticsearch::discovery_zen_ping_multicast_enabled: false
profile::elasticsearch::discovery_zen_ping_timeout: 10s
profile::elasticsearch::marvel_agent_enabled: false
profile::elasticsearch::marvel_agent_exporters_id1_type: local
profile::elasticsearch::marvel_agent_exporters_id1_host: "%{::ipaddress}"
profile::elasticsearch::shield_enabled: true
profile::elasticsearch::shield_username: admin-user
#profile::elasticsearch::shield_password: ENC[PKCS7,MIIBeQYJKoZIhvcNAQcDoIIBajCCAWYCAQAxggEhMIIBHQIBADAFMAACAQEwDQYJKoZIhvcNAQEBBQAEggEAaJ5j6hOJ/duKgHXghhe19NG6qNdgshXYBs9RIBKmsbT+EaMSXQWRJQTWvFBXQCw18KP8ScH+/s5db41odyPYhkPFizTUGdwTf21IdvdpZoCQmCkpAgMVA03eW0PDqIWrTzcKK3EGhIQfrPIu0Uq6DmTAKXeanx0F1xKqvFitUD4ZQ+/HzrQxRPTcfaQclNKqqiI44dRhXaIzdfMGpOoDDv81ydrds3fefPtjrWG3nJ6UfHqK8GtLMkMrMXv7fQe5YDdEuQ9eU1TFrZOx4PaJlq3XNeMYHeI7dH+Ba9hSdtbFy8d88GTOhz0RFPJCzAyAnyKLofd/u2TyAUL1rn4UuDA8BgkqhkiG9w0BBwEwHQYJYIZIAWUDBAEqBBDV50PDV2Yjl+y7Qw4L9LV1gBC9ytAelvIJsM13mpXo2lQg]
profile::elasticsearch::shield_password: Shield123
profile::elasticsearch::kibana_username: kibana-user
#profile::elasticsearch::kibana_password: ENC[PKCS7,MIIBeQYJKoZIhvcNAQcDoIIBajCCAWYCAQAxggEhMIIBHQIBADAFMAACAQEwDQYJKoZIhvcNAQEBBQAEggEAjbZDjSi1VoMK9l1snF/oqQS1iL7PLwe6JI6qZa5S9b5NSwaIqgDdh/RnrHpZKzy5fagMl9FsknhXoYaJxP4hJjsZABpKdGTQY006abrku0lR8B3qt8DghAd5NWuI7mkUsy0FGeedAbgDmxHhLzSxpjHO5Te7oT3djAUuS4xbXDqUQAz9UFXio30j/og0++gm40ZRmxyAalkApRVLBsA9phkvr4Q1zhsQSbHiEMaI4kJ/sVAlBXnbse082XhoNCpq/Y1TeURpokmTbwT4A0aQIA+0rXxSzg51QqARikJgmQu2cOdZ/Pt/7eeQ+kVWahNINhnwKvrRZfTizcgUAFuB4jA8BgkqhkiG9w0BBwEwHQYJYIZIAWUDBAEqBBCZab+TjLd1c4MYaZ79yLtVgBBeqHpRleYsK65nQj033ree]
profile::elasticsearch::kibana_password: kibanapass
profile::elasticsearch::marvel_agent_username: agent-user
profile::elasticsearch::marvel_agent_password: Marvel123
profile::elasticsearch::license_file: /etc/elasticsearch/es-license.json
profile::elasticsearch::create_kibana_user: false
#master
profile::elasticsearch::es_master_heap_size: 8G
#data
profile::elasticsearch::es_data_heap_size: 16G
#marvel
profile::elasticsearch::marvel_cluster_name: ndd-marvel
profile::elasticsearch::es_marvel_heap_size: 1G
profile::elasticsearch::marvel_unicast_hosts: "%{::ipaddress}"
#logstash
profile::logstash::version: 2.4.0
profile::logstash::repo_version: '2.4'
profile::logstash::manage_repo: true
profile::logstash::service_status: enabled
profile::logstash::elasticsearch_host: "%{::ipaddress}:9200"
profile::logstash::filebeats_plugin_install: true
profile::logstash::filebeats_plugin_name: logstash-input-beats
#kibana
profile::kibana::version: 4.5.1
profile::kibana::local_es: true
profile::kibana::elasticsearch_url: "http://%{::ipaddress}:9200"
profile::kibana::marvel_plugin_install: false
profile::kibana::marvel_plugin_name: "elasticsearch/marvel/%{hiera('profile::elasticsearch::version')}"
##profile::kibana::shield_plugin: kibana/shield/2.3.4
#jdk
profile::oracle_jdk::version: '8'
profile::oracle_jdk::version_update: 40
profile::oracle_jdk::version_build: 26
profile::oracle_jdk::jce: true
profile::oracle_jdk::install_dir: /usr/java
profile::oracle_jdk::wget_timeout: 900
profile::oracle_jdk::tmp_dir: /tmp
Major release is 6
Cleaning all in abc.xyz.net
Loaded plugins: fastestmirror, priorities, security
Cleaning repos: base epel extras puppetlabs-deps puppetlabs-products abc-base
: abc-custom abc-epel abc-epel-testing abc-extras abc-psql
: abc-puppet abc-puppet_deps abc-qa abc-scl abc-updates updates
: zabbix zabbix-non-supported
Cleaning up Everything
Cleaning up list of fastest mirrors
Cleaning all in abc.xyz.net ends
Installing puppetlabs in abc.xyz.net begins
Loaded plugins: fastestmirror, priorities, security
Setting up Install Process
Examining /var/tmp/yum-root-Q3D5K7/puppetlabs-release-el-6.noarch.rpm: puppetlabs-release-22.0-2.noarch
Marking /var/tmp/yum-root-Q3D5K7/puppetlabs-release-el-6.noarch.rpm as an update to puppetlabs-release-6-12.noarch
Determining fastest mirrors
* base: mirror.solarvps.com
* epel: mirror.abcdef.com
* extras: mirrors.mit.edu
* abc-base: yum.abcdef.net
* abc-custom: yum.abcdef.net
* abc-epel: yum.abcdef.net
* abc-epel-testing: yum.abcdef.net
* abc-extras: yum.abcdef.net
* abc-psql: yum.abcdef.net
* abc-puppet: yum.abcdef.net
* abc-puppet_deps: yum.abcdef.net
* abc-qa: yum.abcdef.net
* abc-scl: yum.abcdef.net
* abc-updates: yum.abcdef.net
* updates: mirror.abcdef.com
28399 packages excluded due to repository priority protections
Resolving Dependencies
--> Running transaction check
---> Package puppetlabs-release.noarch 0:6-12 will be updated
---> Package puppetlabs-release.noarch 0:22.0-2 will be an update
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Updating:
puppetlabs-release noarch 22.0-2 /puppetlabs-release-el-6.noarch 13 k
Transaction Summary
================================================================================
Upgrade 1 Package(s)
Total size: 13 k
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Updating : puppetlabs-release-22.0-2.noarch 1/2
Cleanup : puppetlabs-release-6-12.noarch 2/2
Verifying : puppetlabs-release-22.0-2.noarch 1/2
Verifying : puppetlabs-release-6-12.noarch 2/2
Updated:
puppetlabs-release.noarch 0:22.0-2
Complete!
Finished Installing puppetlabs in abc.xyz.net
Installing puppet agent in abc.xyz.net begins
Loaded plugins: fastestmirror, priorities, security
Setting up Install Process
Loading mirror speeds from cached hostfile
* base: mirror.solarvps.com
* epel: mirror.abcdef.com
* extras: mirrors.mit.edu
* abc-base: yum.abcdef.net
* abc-custom: yum.abcdef.net
* abc-epel: yum.abcdef.net
* abc-epel-testing: yum.abcdef.net
* abc-extras: yum.abcdef.net
* abc-psql: yum.abcdef.net
* abc-puppet: yum.abcdef.net
* abc-puppet_deps: yum.abcdef.net
* abc-qa: yum.abcdef.net
* abc-scl: yum.abcdef.net
* abc-updates: yum.abcdef.net
* updates: mirror.abcdef.com
28399 packages excluded due to repository priority protections
Resolving Dependencies
--> Running transaction check
---> Package puppet.noarch 0:3.8.6-1.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
puppet noarch 3.8.6-1.el6 abc-puppet 1.6 M
Transaction Summary
================================================================================
Install 1 Package(s)
Total download size: 1.6 M
Installed size: 6.3 M
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : puppet-3.8.6-1.el6.noarch 1/1
Verifying : puppet-3.8.6-1.el6.noarch 1/1
Installed:
puppet.noarch 0:3.8.6-1.el6
Complete!
Finished Installing puppet agent in abc.xyz.net
Inside check_All_Dirs_Exist
Copied ../puppet/hieradata/hiera.yaml to /etc/puppet successfully.
Copied ../puppet/modules to /etc/puppet/modules successfully.
Executing create_env.check_Dirs_Exist
created /etc/puppet/environments/dbe_metrics successfully.
created /etc/puppet/environments/dbe_metrics/manifests successfully.
created /etc/puppet/environments/dbe_metrics/modules successfully.
created /etc/puppet/environments/dbe_metrics/hieradata successfully.
copied ../puppet/environments/environment.conf to /etc/puppet/environments/dbe_metrics.
Copied ../puppet/hieradata/ndd_common.yaml to /etc/puppet/environments/dbe_metrics/hieradata successfully.
Copied ../puppet/hieradata/ndd_dbe_metrics.yaml to /etc/puppet/environments/dbe_metrics/hieradata successfully.
Copied ../puppet/manifests/site_dbe_metrics.pp to /etc/puppet/environments/dbe_metrics/manifests successfully.
% User created: elasticsearch 980
% User created: logstash 981
% User created: kibana 982
% User created: zookeeper 979
% User created: kafka 978
% User created: cassandra 977
Installing using masterless puppet setup for abc.xyz.net
Debug: Runtime environment: run_mode=user, ruby_version=1.8.7, puppet_version=3.8.6
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
[0;32mInfo: Loading facts
Debug: Loading facts from /etc/puppet/modules/stdlib/lib/facter/root_home.rb
Debug: Loading facts from /etc/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
Debug: Loading facts from /etc/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
Debug: Loading facts from /etc/puppet/modules/stdlib/lib/facter/pe_version.rb
Debug: Loading facts from /etc/puppet/modules/stdlib/lib/facter/service_provider.rb
Debug: Loading facts from /etc/puppet/modules/stdlib/lib/facter/package_provider.rb
[0;32mInfo: Loading facts
Debug: Loading facts from /etc/puppet/modules/elasticsearch/lib/facter/es_facts.rb
[0;32mInfo: Loading facts
Debug: Loading facts from /etc/puppet/modules/firewall/lib/facter/iptables_version.rb
Debug: Loading facts from /etc/puppet/modules/firewall/lib/facter/ip6tables_version.rb
Debug: Loading facts from /etc/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb
[0;32mInfo: Loading facts
Debug: Loading facts from /etc/puppet/modules/staging/lib/facter/staging_windir.rb
Debug: Loading facts from /etc/puppet/modules/staging/lib/facter/staging_http_get.rb
[0;32mInfo: Loading facts
Debug: Loading facts from /etc/puppet/modules/concat/lib/facter/concat_basedir.rb
[0;32mInfo: Loading facts
Debug: Loading facts from /etc/puppet/modules/epel/lib/facter/os_maj_version.rb
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Executing '/bin/rpm --version'
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Executing '/bin/rpm --version'
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Executing '/bin/rpm -ql rpm'
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Puppet::Type::Service::ProviderRunit: file /usr/bin/sv does not exist
Debug: Puppet::Type::Service::ProviderSystemd: file systemctl does not exist
Debug: Puppet::Type::Service::ProviderDaemontools: file /usr/bin/svc does not exist
Debug: Puppet::Type::Service::ProviderLaunchd: file /bin/launchctl does not exist
Debug: Puppet::Type::Service::ProviderDebian: file /usr/sbin/update-rc.d does not exist
Debug: Puppet::Type::Service::ProviderGentoo: file /sbin/rc-update does not exist
Debug: Puppet::Type::Service::ProviderOpenrc: file /bin/rc-status does not exist
Debug: Puppet::Type::Package::ProviderPortupgrade: file /usr/local/sbin/portinstall does not exist
Debug: Puppet::Type::Package::ProviderRug: file /usr/bin/rug does not exist
Debug: Puppet::Type::Package::ProviderHpux: file /usr/sbin/swinstall does not exist
Debug: Puppet::Type::Package::ProviderDpkg: file /usr/bin/dpkg does not exist
Debug: Puppet::Type::Package::ProviderAptitude: file /usr/bin/aptitude does not exist
Debug: Puppet::Type::Package::ProviderOpkg: file opkg does not exist
Debug: Puppet::Type::Package::ProviderFreebsd: file /usr/sbin/pkg_info does not exist
Debug: Puppet::Type::Package::ProviderAix: file /usr/sbin/installp does not exist
Debug: Puppet::Type::Package::ProviderOpenbsd: file pkg_info does not exist
Debug: Puppet::Type::Package::ProviderPacman: file /usr/bin/pacman does not exist
Debug: Puppet::Type::Package::ProviderNim: file /usr/sbin/nimclient does not exist
Debug: Puppet::Type::Package::ProviderAptrpm: file apt-get does not exist
Debug: Puppet::Type::Package::ProviderUrpmi: file urpmi does not exist
Debug: Puppet::Type::Package::ProviderPkg: file /usr/bin/pkg does not exist
Debug: Puppet::Type::Package::ProviderSunfreeware: file pkg-get does not exist
Debug: Puppet::Type::Package::ProviderUp2date: file /usr/sbin/up2date-nox does not exist
Debug: Puppet::Type::Package::ProviderPkgin: file pkgin does not exist
Debug: Puppet::Type::Package::ProviderPortage: file /usr/bin/eix-update does not exist
Debug: Puppet::Type::Package::ProviderZypper: file /usr/bin/zypper does not exist
Debug: Puppet::Type::Package::ProviderSun: file /usr/sbin/pkgrm does not exist
Debug: Puppet::Type::Package::ProviderPorts: file /usr/local/sbin/portupgrade does not exist
Debug: Puppet::Type::Package::ProviderApt: file /usr/bin/apt-get does not exist
Debug: Puppet::Type::Package::ProviderFink: file /sw/bin/fink does not exist
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: importing '/etc/puppet/modules/role/manifests/init.pp' in environment dbe_metrics
Debug: importing '/etc/puppet/modules/role/manifests/es_logstash.pp' in environment dbe_metrics
Debug: Automatically imported role::es_logstash from role/es_logstash into dbe_metrics
Debug: importing '/etc/puppet/modules/profile/manifests/setup_os_params.pp' in environment dbe_metrics
Debug: Automatically imported profile::setup_os_params from profile/setup_os_params into dbe_metrics
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: importing '/etc/puppet/modules/profile/manifests/elasticsearch_cluster.pp' in environment dbe_metrics
Debug: Automatically imported profile::elasticsearch_cluster from profile/elasticsearch_cluster into dbe_metrics
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: hiera(): Hiera YAML backend starting
Debug: hiera(): Looking up profile::elasticsearch_cluster::log_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_log_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_log_dir in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_network_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::network_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::network_host in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::marvel_agent_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::marvel_agent_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::marvel_agent_username in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_shield_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::shield_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::shield_password in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::marvel_agent_exporters_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::marvel_agent_exporters_id1_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::marvel_agent_exporters_id1_host in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::marvel_agent_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::marvel_agent_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::marvel_agent_password in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::shield_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::shield_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::shield_enabled in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_node_zone in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::node_zone in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Found profile::elasticsearch::node_zone in ndd_dbe_metrics
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_node_data in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::node_data in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::node_data in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::marvel_agent_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::marvel_agent_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::marvel_agent_enabled in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::discovery_zen_ping_timeout in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::discovery_zen_ping_timeout in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::discovery_zen_ping_timeout in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::discovery_zen_ping_multicast_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::discovery_zen_ping_multicast_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::discovery_zen_ping_multicast_enabled in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::conf_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_conf_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_conf_dir in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_node_tag in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::node_tag in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Found profile::elasticsearch::node_tag in ndd_dbe_metrics
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_port in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_port in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_port in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_host in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_heap_size in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_heap_size in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_heap_size in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_cluster_name in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::cluster_name in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Found profile::elasticsearch::cluster_name in ndd_dbe_metrics
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_node_marvel in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::kibana_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::kibana_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::kibana_password in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::proxy_url in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::proxy_url in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::proxy_url in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_instance_name in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::instance_name in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::instance_name in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_shield_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::shield_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::shield_username in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::snapshot_repo_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_snapshot_repo_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_snapshot_repo_dir in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_index_number_of_shards in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::index_number_of_shards in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::index_number_of_shards in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::config in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::kibana_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::kibana_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::kibana_username in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_node_master in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::node_master in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::node_master in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::marvel_agent_exporters in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::marvel_agent_exporters_id1_type in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::marvel_agent_exporters_id1_type in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::discovery_zen_ping_unicast_hosts in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::discovery_zen_ping_unicast_hosts in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::discovery_zen_ping_unicast_hosts in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::data_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_data_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_data_dir in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_version in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::version in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::version in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::create_kibana_user in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::create_kibana_user in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::create_kibana_user in ndd_common
Debug: hiera(): Looking up profile::elasticsearch_cluster::es_index_number_of_replicas in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up profile::elasticsearch::index_number_of_replicas in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::index_number_of_replicas in ndd_common
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: Evicting cache entry for environment 'dbe_metrics'
Debug: Caching environment 'dbe_metrics' (ttl = 0 sec)
Debug: importing '/etc/puppet/modules/profile/manifests/oracle_jdk.pp' in environment dbe_metrics
Debug: Automatically imported profile::oracle_jdk from profile/oracle_jdk into dbe_metrics
Debug: hiera(): Looking up profile::oracle_jdk::version in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::version in ndd_common
Debug: hiera(): Looking up profile::oracle_jdk::version_update in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::version_update in ndd_common
Debug: hiera(): Looking up profile::oracle_jdk::version_build in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::version_build in ndd_common
Debug: hiera(): Looking up profile::oracle_jdk::jce in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::jce in ndd_common
Debug: hiera(): Looking up profile::oracle_jdk::install_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::install_dir in ndd_common
Debug: hiera(): Looking up profile::oracle_jdk::wget_timeout in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::wget_timeout in ndd_common
Debug: hiera(): Looking up profile::oracle_jdk::tmp_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::oracle_jdk::tmp_dir in ndd_common
Debug: importing '/etc/puppet/modules/jdk_oracle/manifests/init.pp' in environment dbe_metrics
Debug: Automatically imported jdk_oracle from jdk_oracle into dbe_metrics
Debug: hiera(): Looking up jdk_oracle::use_cache in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::use_cache in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::cache_source in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::platform in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::platform in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::default_java in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::default_java in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up jdk_oracle::ensure in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: importing '/etc/puppet/modules/jdk_oracle/manifests/install.pp' in environment dbe_metrics
Debug: Automatically imported jdk_oracle::install from jdk_oracle/install into dbe_metrics
[mNotice: Scope(Class[Profile::Oracle_jdk]): setting java_home begin
[mNotice: Scope(Class[Profile::Oracle_jdk]): setting java_home ends
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/init.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch from elasticsearch into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/params.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::params from elasticsearch/params into dbe_metrics
Debug: hiera(): Looking up elasticsearch::api_port in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::logging_config in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::repo_key_id in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::configdir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::elasticsearch_group in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::package_url in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::java_package in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::api_basic_auth_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::api_basic_auth_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::logging_template in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::config_hiera_merge in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::restart_config_change in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::plugins in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::package_name in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::package_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::instances in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::validate_tls in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::ssl_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::plugindir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::logdir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::proxy_url in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::purge_package_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::validate_ssl in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::repo_stage in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::repo_priority in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::service_provider in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::elasticsearch_user in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::status in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::system_key in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::use_ssl in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::default_logging_level in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::repo_key_source in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::java_install in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::api_timeout in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::api_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::api_protocol in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::logging_file in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::init_defaults_file in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::package_provider in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::restart_plugin_change in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::ensure in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::instances_hiera_merge in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::datadir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::package_dl_timeout in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::autoupgrade in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::restart_package_change in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::ssl_user in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::plugins_hiera_merge in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::repo_proxy in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::init_template in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up elasticsearch::purge_configdir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/package.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::package from elasticsearch/package into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/service.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::service from elasticsearch/service into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/config.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::config from elasticsearch/config into dbe_metrics
Debug: Scope(Class[Elasticsearch::Config]): Retrieving template elasticsearch/etc/sysconfig/defaults.erb
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb]: Bound template variables for /etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb]: Interpolated template /etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb in 0.00 seconds
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/repo.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::repo from elasticsearch/repo into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/package/pin.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::package::pin from elasticsearch/package/pin into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/plugin.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::plugin from elasticsearch/plugin into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/instance.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::instance from elasticsearch/instance into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/shield/user.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::shield::user from elasticsearch/shield/user into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/shield/role.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::shield::role from elasticsearch/shield/role into dbe_metrics
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/template.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::template from elasticsearch/template into dbe_metrics
Debug: importing '/etc/puppet/modules/profile/manifests/install_es_license.pp' in environment dbe_metrics
Debug: Automatically imported profile::install_es_license from profile/install_es_license into dbe_metrics
Debug: hiera(): Looking up profile::elasticsearch::shield_enabled in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::shield_enabled in ndd_common
Debug: hiera(): Looking up profile::elasticsearch::shield_username in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::shield_username in ndd_common
Debug: hiera(): Looking up profile::elasticsearch::shield_password in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::shield_password in ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_host in ndd_common
Debug: hiera(): Looking up profile::elasticsearch::es_port in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::es_port in ndd_common
Debug: hiera(): Looking up profile::elasticsearch::license_file in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::elasticsearch::license_file in ndd_common
[mNotice: Scope(Class[Profile::Install_es_license]): License command when shield is false is: sleep 10 && curl -XPUT 'http://10.177.228.81:9200/_license' -d @/etc/elasticsearch/es-license.json
Debug: importing '/etc/puppet/modules/profile/manifests/logstash.pp' in environment dbe_metrics
Debug: Automatically imported profile::logstash from profile/logstash into dbe_metrics
Debug: hiera(): Looking up profile::logstash::elasticsearch_host in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::elasticsearch_host in ndd_common
Debug: hiera(): Looking up profile::logstash::repo_version in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::repo_version in ndd_common
Debug: hiera(): Looking up profile::logstash::manage_repo in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::manage_repo in ndd_common
Debug: hiera(): Looking up profile::logstash::service_status in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::service_status in ndd_common
Debug: hiera(): Looking up profile::logstash::version in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::version in ndd_common
Debug: hiera(): Looking up profile::logstash::filebeats_plugin_install in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::filebeats_plugin_install in ndd_common
Debug: hiera(): Looking up profile::logstash::filebeats_plugin_name in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Found profile::logstash::filebeats_plugin_name in ndd_common
[mNotice: Scope(Class[Profile::Logstash]): logstash version is 2.4.0
Debug: importing '/etc/puppet/modules/logstash/manifests/init.pp' in environment dbe_metrics
Debug: Automatically imported logstash from logstash into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/params.pp' in environment dbe_metrics
Debug: Automatically imported logstash::params from logstash/params into dbe_metrics
Debug: hiera(): Looking up logstash::configdir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::package_url in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::java_package in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::logstash_user in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::software_provider in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::restart_on_change in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::package_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::purge_package_dir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::repo_stage in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::service_provider in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::java_install in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::logstash_group in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::init_defaults_file in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::ensure in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::package_dl_timeout in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::autoupgrade in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::init_template in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: hiera(): Looking up logstash::purge_configdir in YAML backend
Debug: hiera(): Looking for data source ndd_dbe_metrics
Debug: hiera(): Looking for data source ndd_common
Debug: importing '/etc/puppet/modules/logstash/manifests/package.pp' in environment dbe_metrics
Debug: Automatically imported logstash::package from logstash/package into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/package/install.pp' in environment dbe_metrics
Debug: Automatically imported logstash::package::install from logstash/package/install into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/config.pp' in environment dbe_metrics
Debug: Automatically imported logstash::config from logstash/config into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/service.pp' in environment dbe_metrics
Debug: Automatically imported logstash::service from logstash/service into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/service/init.pp' in environment dbe_metrics
Debug: Automatically imported logstash::service::init from logstash/service/init into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/repo.pp' in environment dbe_metrics
Debug: Automatically imported logstash::repo from logstash/repo into dbe_metrics
Debug: importing '/etc/puppet/modules/logstash/manifests/plugin.pp' in environment dbe_metrics
Debug: Automatically imported logstash::plugin from logstash/plugin into dbe_metrics
Debug: Scope(Class[Profile::Logstash]): Retrieving template logstash/confs/input.erb
Debug: template[/etc/puppet/modules/logstash/templates/confs/input.erb]: Bound template variables for /etc/puppet/modules/logstash/templates/confs/input.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/logstash/templates/confs/input.erb]: Interpolated template /etc/puppet/modules/logstash/templates/confs/input.erb in 0.00 seconds
Debug: importing '/etc/puppet/modules/logstash/manifests/configfile.pp' in environment dbe_metrics
Debug: Automatically imported logstash::configfile from logstash/configfile into dbe_metrics
Debug: Scope(Class[Profile::Logstash]): Retrieving template logstash/confs/filter.erb
Debug: template[/etc/puppet/modules/logstash/templates/confs/filter.erb]: Bound template variables for /etc/puppet/modules/logstash/templates/confs/filter.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/logstash/templates/confs/filter.erb]: Interpolated template /etc/puppet/modules/logstash/templates/confs/filter.erb in 0.00 seconds
Debug: Scope(Class[Profile::Logstash]): Retrieving template logstash/confs/output.erb
Debug: template[/etc/puppet/modules/logstash/templates/confs/output.erb]: Bound template variables for /etc/puppet/modules/logstash/templates/confs/output.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/logstash/templates/confs/output.erb]: Interpolated template /etc/puppet/modules/logstash/templates/confs/output.erb in 0.00 seconds
Debug: template[inline]: Bound template variables for inline template in 0.00 seconds
Debug: template[inline]: Interpolated template inline template in 0.00 seconds
Debug: template[inline]: Bound template variables for inline template in 0.00 seconds
Debug: template[inline]: Interpolated template inline template in 0.00 seconds
Debug: Scope(Elasticsearch::Instance[es-01]): Retrieving template elasticsearch/etc/elasticsearch/logging.yml.erb
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/elasticsearch/logging.yml.erb]: Bound template variables for /etc/puppet/modules/elasticsearch/templates/etc/elasticsearch/logging.yml.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/elasticsearch/logging.yml.erb]: Interpolated template /etc/puppet/modules/elasticsearch/templates/etc/elasticsearch/logging.yml.erb in 0.00 seconds
Debug: importing '/etc/puppet/modules/datacat/manifests/init.pp' in environment dbe_metrics
Debug: Automatically imported datacat from datacat into dbe_metrics
Debug: Scope(Logstash::Service::Init[logstash]): Retrieving template logstash/etc/sysconfig/defaults.erb
Debug: template[/etc/puppet/modules/logstash/templates/etc/sysconfig/defaults.erb]: Bound template variables for /etc/puppet/modules/logstash/templates/etc/sysconfig/defaults.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/logstash/templates/etc/sysconfig/defaults.erb]: Interpolated template /etc/puppet/modules/logstash/templates/etc/sysconfig/defaults.erb in 0.00 seconds
Debug: importing '/etc/puppet/modules/elasticsearch/manifests/service/init.pp' in environment dbe_metrics
Debug: Automatically imported elasticsearch::service::init from elasticsearch/service/init into dbe_metrics
Debug: Scope(Elasticsearch::Service::Init[es-01]): Retrieving template elasticsearch/etc/sysconfig/defaults.erb
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb]: Bound template variables for /etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb]: Interpolated template /etc/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb in 0.00 seconds
Debug: Scope(Elasticsearch::Service::Init[es-01]): Retrieving template elasticsearch/etc/init.d/elasticsearch.RedHat.erb
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb]: Bound template variables for /etc/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb in 0.00 seconds
Debug: template[/etc/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb]: Interpolated template /etc/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb in 0.00 seconds
Debug: Adding relationship from Anchor[es_logstash_role::begin] to Class[Profile::Setup_os_params] with 'before'
Debug: Adding relationship from User[elasticsearch] to Exec[create-elasticsearch-snapshot-repo-directory] with 'before'
Debug: Adding relationship from Exec[create-elasticsearch-snapshot-repo-directory] to Exec[create-elasticsearch-log-directory] with 'before'
Debug: Adding relationship from Exec[create-elasticsearch-log-directory] to File[/data/elasticsearch/repo] with 'before'
Debug: Adding relationship from Package[elasticsearch] to Elasticsearch::Service[es-01] with 'notify'
Debug: Adding relationship from Package[elasticsearch] to Exec[remove_plugin_dir] with 'notify'
Debug: Adding relationship from Yumrepo[elasticsearch] to Exec[elasticsearch_yumrepo_yum_clean] with 'notify'
Debug: Adding relationship from Anchor[elasticsearch::begin] to Class[Elasticsearch::Repo] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Repo] to Class[Elasticsearch::Package] with 'before'
Debug: Adding relationship from Anchor[elasticsearch::begin] to Class[Elasticsearch::Package] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Package] to Class[Elasticsearch::Config] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Config] to Elasticsearch::Plugin[marvel-agent] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Config] to Elasticsearch::Plugin[license] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Config] to Elasticsearch::Plugin[mobz/elasticsearch-head] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Config] to Elasticsearch::Plugin[shield] with 'before'
Debug: Adding relationship from Class[Elasticsearch::Config] to Elasticsearch::Instance[es-01] with 'before'
Debug: Adding relationship from Elasticsearch::Plugin[license] to Elasticsearch::Instance[es-01] with 'before'
Debug: Adding relationship from Elasticsearch::Plugin[mobz/elasticsearch-head] to Elasticsearch::Instance[es-01] with 'before'
Debug: Adding relationship from Elasticsearch::Plugin[license] to File[es-license.json] with 'before'
Debug: Adding relationship from Class[Profile::Setup_os_params] to Class[Profile::Elasticsearch_cluster] with 'before'
Debug: Adding relationship from Class[Profile::Elasticsearch_cluster] to Class[Profile::Install_es_license] with 'before'
Debug: Adding relationship from Anchor[logstash::begin] to Class[Logstash::Repo] with 'before'
Debug: Adding relationship from Class[Logstash::Repo] to Class[Logstash::Package] with 'before'
Debug: Adding relationship from Anchor[logstash::begin] to Class[Logstash::Package] with 'before'
Debug: Adding relationship from Class[Logstash::Package] to Class[Logstash::Config] with 'before'
Debug: Adding relationship from Class[Logstash::Package] to Class[Logstash::Service] with 'before'
Debug: Adding relationship from Class[Logstash::Config] to Class[Logstash::Service] with 'before'
Debug: Adding relationship from Class[Logstash::Service] to Anchor[logstash::end] with 'before'
Debug: Adding relationship from Class[Profile::Install_es_license] to Class[Profile::Logstash] with 'before'
Debug: Adding relationship from Class[Profile::Logstash] to Anchor[es_logstash_role::end] with 'before'
Debug: Adding relationship from Elasticsearch_plugin[mobz/elasticsearch-head] to File[/usr/share/elasticsearch/plugins/head] with 'before'
Debug: Adding relationship from Elasticsearch_plugin[license] to File[/usr/share/elasticsearch/plugins/license] with 'before'
Debug: Adding relationship from Elasticsearch_plugin[marvel-agent] to File[/usr/share/elasticsearch/plugins/marvel-agent] with 'before'
Debug: Adding relationship from Elasticsearch_plugin[shield] to File[/usr/share/elasticsearch/plugins/shield] with 'before'
Debug: Exec[create_package_dir_elasticsearch]: Adding default for tries
Debug: Exec[create_package_dir_elasticsearch]: Adding default for try_sleep
Debug: Exec[remove_plugin_dir]: Adding default for tries
Debug: Exec[remove_plugin_dir]: Adding default for try_sleep
Debug: Exec[remove_plugin_dir]: Adding default for path
Debug: Exec[remove_plugin_dir]: Adding default for cwd
Debug: File[/etc/elasticsearch]: Adding default for group
Debug: File[/etc/elasticsearch]: Adding default for owner
Debug: File[/var/log/elasticsearch]: Adding default for owner
Debug: File[/usr/share/elasticsearch]: Adding default for group
Debug: File[/usr/share/elasticsearch]: Adding default for owner
Debug: File[/usr/share/elasticsearch/data]: Adding default for group
Debug: File[/usr/share/elasticsearch/data]: Adding default for owner
Debug: File[/usr/share/elasticsearch/lib]: Adding default for group
Debug: File[/usr/share/elasticsearch/lib]: Adding default for owner
Debug: File[/var/run/elasticsearch]: Adding default for owner
Debug: File[/usr/share/elasticsearch/templates_import]: Adding default for group
Debug: File[/usr/share/elasticsearch/templates_import]: Adding default for owner
Debug: File[/usr/share/elasticsearch/scripts]: Adding default for group
Debug: File[/usr/share/elasticsearch/scripts]: Adding default for owner
Debug: File[/etc/init.d/elasticsearch]: Adding default for group
Debug: File[/etc/init.d/elasticsearch]: Adding default for owner
Debug: File[/etc/elasticsearch/elasticsearch.yml]: Adding default for group
Debug: File[/etc/elasticsearch/elasticsearch.yml]: Adding default for owner
Debug: File[/etc/elasticsearch/logging.yml]: Adding default for group
Debug: File[/etc/elasticsearch/logging.yml]: Adding default for owner
Debug: Exec[elasticsearch_yumrepo_yum_clean]: Adding default for path
Debug: Exec[elasticsearch_yumrepo_yum_clean]: Adding default for cwd
Debug: File[/etc/logstash]: Adding default for group
Debug: File[/etc/logstash]: Adding default for owner
Debug: File[/etc/logstash/conf.d]: Adding default for group
Debug: File[/etc/logstash/conf.d]: Adding default for owner
Debug: File[/etc/logstash/patterns]: Adding default for group
Debug: File[/etc/logstash/patterns]: Adding default for owner
Debug: File[/etc/logstash/plugins]: Adding default for group
Debug: File[/etc/logstash/plugins]: Adding default for owner
Debug: File[/etc/logstash/plugins/logstash]: Adding default for group
Debug: File[/etc/logstash/plugins/logstash]: Adding default for owner
Debug: File[/etc/logstash/plugins/logstash/inputs]: Adding default for group
Debug: File[/etc/logstash/plugins/logstash/inputs]: Adding default for owner
Debug: File[/etc/logstash/plugins/logstash/outputs]: Adding default for group
Debug: File[/etc/logstash/plugins/logstash/outputs]: Adding default for owner
Debug: File[/etc/logstash/plugins/logstash/filters]: Adding default for group
Debug: File[/etc/logstash/plugins/logstash/filters]: Adding default for owner
Debug: File[/etc/logstash/plugins/logstash/codecs]: Adding default for group
Debug: File[/etc/logstash/plugins/logstash/codecs]: Adding default for owner
Debug: Exec[get_jdk_installer_8]: Adding default for path
Debug: Exec[extract_jdk_8]: Adding default for path
Debug: Exec[get_jce_package]: Adding default for path
Debug: Exec[extract_jce]: Adding default for path
Debug: Exec[mkdir_datadir_elasticsearch_es-01]: Adding default for path
Debug: Exec[mkdir_datadir_elasticsearch_es-01]: Adding default for cwd
Debug: Exec[mkdir_configdir_elasticsearch_es-01]: Adding default for path
Debug: Exec[mkdir_configdir_elasticsearch_es-01]: Adding default for cwd
Debug: File[/data/elasticsearch/conf]: Adding default for group
Debug: File[/data/elasticsearch/conf]: Adding default for owner
Debug: File[/data/elasticsearch/conf/logging.yml]: Adding default for group
Debug: File[/data/elasticsearch/conf/logging.yml]: Adding default for owner
Debug: File[/data/elasticsearch/conf/scripts]: Adding default for group
Debug: File[/data/elasticsearch/conf/scripts]: Adding default for owner
[Notice: Compiled catalog for abc.xyz.net in environment dbe_metrics in 2.57 seconds
Debug: Puppet::Type::User::ProviderDirectoryservice: file /usr/bin/dsimport does not exist
Debug: Puppet::Type::User::ProviderUser_role_add: file rolemod does not exist
Debug: Failed to load library 'ldap' for feature 'ldap'
Debug: Puppet::Type::User::ProviderLdap: feature ldap is missing
Debug: Puppet::Type::User::ProviderPw: file pw does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderPlugin: file /usr/share/elasticsearch/bin/plugin does not exist
Debug: Puppet::Type::Elasticsearch_plugin::ProviderElasticsearch_plugin: file /usr/share/elasticsearch/bin/elasticsearch-plugin does not exist
Debug: Creating default schedules
#open firewall ports for elasticsearch and Kibana
class {'role::es_logstash': }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment