{"id":15510655,"url":"https://github.com/dalen/puppet-puppetexplorer","last_synced_at":"2025-04-23T03:03:48.498Z","repository":{"id":66394939,"uuid":"21395801","full_name":"dalen/puppet-puppetexplorer","owner":"dalen","description":"Puppet module for installing Puppet Explorer","archived":false,"fork":false,"pushed_at":"2018-02-02T08:13:34.000Z","size":138,"stargazers_count":29,"open_issues_count":7,"forks_count":21,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-03-29T21:31:37.238Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Puppet","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dalen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-07-01T17:04:22.000Z","updated_at":"2020-11-27T12:38:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"f4999ba5-8033-4882-bf74-34778b324f3b","html_url":"https://github.com/dalen/puppet-puppetexplorer","commit_stats":null,"previous_names":["spotify/puppet-puppetexplorer"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalen%2Fpuppet-puppetexplorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalen%2Fpuppet-puppetexplorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalen%2Fpuppet-puppetexplorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalen%2Fpuppet-puppetexplorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dalen","download_url":"https://codeload.github.com/dalen/puppet-puppetexplorer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250360479,"owners_count":21417720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T09:50:18.267Z","updated_at":"2025-04-23T03:03:48.478Z","avatar_url":"https://github.com/dalen.png","language":"Puppet","funding_links":[],"categories":[],"sub_categories":[],"readme":"# puppetexplorer\n\n#### Table of Contents\n\n1. [Overview](#overview)\n2. [Parameters](#parameters)\n\n## Overview\n\nManage the Puppet Explorer web interface. In the default configuration it\nshould work if it is hosted on the same host as PuppetDB.\n\n## Parameters\n\n##### `package_ensure`\n  The ensure parameter of the puppetexplorer package. Default: present\n\n##### `ga_tracking_id`\n  Google Analytics tracking ID.\n\n##### `ga_domain`\n  Google Analytics domain setting. Default: auto\n\n##### `puppetdb_servers`\n  List of server name and URL tuples. Default: [ ['production', '/api'] ]\n\n##### `node_facts`\n  List of facts to display in node detail view.\n  Default: [ 'operatingsystem', 'operatingsystemrelease', 'manufacturer',\n             'productname', 'processorcount', 'memorytotal', 'ipaddress' ]\n\n\n##### `unresponsive_hours`\n  The amount of hours since the last check-in after which a node is considered\n  unresponsive.\n  Default: 2\n\n##### `dashboard_panels`\n  Custom dashboard panels. Should be an array of hashes containing the keys\n  name, query and type. Default:\n\n    [\n      {\n        'name'  =\u003e 'Unresponsive nodes',\n        'type'  =\u003e 'danger',\n        'query' =\u003e '#node.report_timestamp \u003c @\"now - 2 hours\"'\n      },\n      {\n        'name'  =\u003e 'Nodes in production env',\n        'type'  =\u003e 'success',\n        'query' =\u003e '#node.catalog_environment = production'\n      },\n      {\n        'name'  =\u003e 'Nodes in non-production env',\n        'type'  =\u003e 'warning',\n        'query' =\u003e '#node.catalog_environment != production'\n      }\n    ]\n\n##### `manage_apt`\n  Add apt repo for the module.\n  This option requires the `puppetlabs/apt` module.\n  Defaults to true for $::osfamily Debian\n\n##### `manage_yum`\n  Add yum repo for the module.\n  Defaults to true for $::osfamily RedHat\n\n##### `manage_selinux`\n   Manage SELinux capabilities\n   This option requires the `jfryman/selinux` module\n   Defaults to false\n\n##### `webserver_class`\n  Name of the class that manages the webserver configuration.\n  Using `'::puppetexplorer::apache'` requires the `puppetlabs/apache` module.\n  Defaults to '::puppetexplorer::apache'\n\n##### `servername`\n  The Apache vhost servername. Default: $::fqdn\n\n##### `ssl`\n  If SSL should be turned on for the Apache vhost. Default: true\n\n##### `port`\n  Port of the Apache vhost. Default: 443\n\n##### `proxy_pass`\n  Proxy pass configuration for Apache. This is useful to proxy the API to\n  PuppetDB through the same vhost that hosts Puppet Explorer. If they are not\n  proxied PuppetDB needs to have the Access-Control-Allow-Origin and\n  Access-Control-Expose-Headers \"X-Records\" headers.\n  See the proxy_pass parameter of apache::vhost in puppetlabs-apache for more\n  info on this.\n\n  Default:\n\n    [\n      { 'path'         =\u003e '/api/pdb/query', 'url' =\u003e 'http://localhost:8080/pdb/query' },\n      { 'path'     =\u003e '/api/pdb/meta', 'url'  =\u003e 'http://localhost:8080/pdb/meta' },\n      { 'path' =\u003e '/api/metrics', 'url'   =\u003e 'http://localhost:8080/metrics' }\n    ]\n\n##### `vhost_options`\n  An additional hash of apache::vhost options, see puppetlabs-apache for more\n  info. Can be used for configuring authentication or SSL certificates for\n  example. Default: {}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalen%2Fpuppet-puppetexplorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdalen%2Fpuppet-puppetexplorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalen%2Fpuppet-puppetexplorer/lists"}