Commit f74d7d55 authored by Tally Tarik's avatar Tally Tarik Committed by Blaize Kaye
Browse files

Issue #3206815 by fjgarlin, tallytarik, luigimannoni: Local DNS gets grounded...

Issue #3206815 by fjgarlin, tallytarik, luigimannoni: Local DNS gets grounded from module, throttle down requests on local envs
parent 551bde88
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
host: application-logs.lagoon.svc
port: 5140
identifier: drupal
enable: true
+3 −0
Original line number Diff line number Diff line
@@ -4,6 +4,9 @@ lagoon_logs.settings:
  type: config_object
  label: 'Lagoon logs settings'
  mapping:
    enable:
      type: integer
      label: 'Enabled'
    host:
      type: string
      label: 'Logstash host'
+1 −1
Original line number Diff line number Diff line
name: Lagoon Logs Module
description: Simple monolog wrapper for Lagoon.
package: Logging

configure: lagoon_logs.settings
type: module
core: 8.x
core_version_requirement: ^8 || ^9
+5 −0
Original line number Diff line number Diff line
system.lagoon_logs_settings:
  title: 'Lagoon Logs settings'
  parent: system.admin_config_development
  description: 'Configure Lagoon Logs.'
  route_name: lagoon_logs.settings
+4 −4
Original line number Diff line number Diff line
lagoon_logs.module_info:
  path: 'admin/settings/lagoon_logs'
lagoon_logs.settings:
  path: '/admin/config/development/lagoon_logs'
  defaults:
    _controller: '\Drupal\lagoon_logs\LagoonLogsInfoController::infoPage'
    _title: 'Lagoon Logs Settings'
    _form: '\Drupal\lagoon_logs\Form\LagoonLogsSettingsForm'
    _title: 'Lagoon Logs configuration'
  requirements:
    _permission: 'administer site configuration'
Loading