Skip to content

Commit

Permalink
Remove requirements for geoip and user-agent plugins (#30866)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyan-sheng authored Feb 14, 2019
1 parent fdc850d commit dfc18a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { onPremInstructions, cloudInstructions, onPremCloudInstructions } from '

export function apacheLogsSpecProvider(server, context) {
const moduleName = 'apache';
const geoipRequired = true;
const uaRequired = true;
const geoipRequired = false;
const uaRequired = false;
const platforms = ['OSX', 'DEB', 'RPM', 'WINDOWS'];
return {
id: 'apacheLogs',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { onPremInstructions, cloudInstructions, onPremCloudInstructions } from '

export function nginxLogsSpecProvider(server, context) {
const moduleName = 'nginx';
const geoipRequired = true;
const uaRequired = true;
const geoipRequired = false;
const uaRequired = false;
const platforms = ['OSX', 'DEB', 'RPM', 'WINDOWS'];
return {
id: 'nginxLogs',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { onPremInstructions, cloudInstructions, onPremCloudInstructions } from '

export function systemLogsSpecProvider(server, context) {
const moduleName = 'system';
const geoipRequired = true;
const geoipRequired = false;
const uaRequired = false;
const platforms = ['OSX', 'DEB', 'RPM'];
return {
Expand Down

0 comments on commit dfc18a7

Please sign in to comment.