-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* create kbn-legacy-logging package (#77678) * create kbn-legacy-logging package and start to move things * fix rotator tests * fix logging system test mocks * move logging format to the package * move logging setup to package * adapt legacy logging server * remove usage of legacy config in the legacy logging server * move legacy logging server to package * remove `??` syntax from package * update generated doc * fix a few things due to month old merge * remove typings from project * move reconfigureLogging to package * add basic README file * update generated doc * remove old typings * add typing for legacy logging events * remove `??` from packages * fix / improve event types usages * remove suffix from tsconfig # Conflicts: # src/legacy/server/config/schema.js * fix for 7.x branch
- Loading branch information
1 parent
b80f2a3
commit 1a97e07
Showing
36 changed files
with
749 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# @kbn/legacy-logging | ||
|
||
This package contains the implementation of the legacy logging | ||
system, based on `@hapi/good` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "@kbn/legacy-logging", | ||
"version": "1.0.0", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"main": "./target/index.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"kbn:bootstrap": "yarn build", | ||
"kbn:watch": "yarn build --watch" | ||
}, | ||
"dependencies": { | ||
"@kbn/std": "link:../kbn-std" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
export { LegacyLoggingConfig, legacyLoggingConfigSchema } from './schema'; | ||
export { attachMetaData } from './metadata'; | ||
export { setupLoggingRotate } from './rotate'; | ||
export { setupLogging, reconfigureLogging } from './setup_logging'; | ||
export { getLoggingConfiguration } from './get_logging_config'; | ||
export { LegacyLoggingServer } from './legacy_logging_server'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { EventData, isEventData } from './metadata'; | ||
|
||
export interface BaseEvent { | ||
event: string; | ||
timestamp: number; | ||
pid: number; | ||
tags?: string[]; | ||
} | ||
|
||
export interface ResponseEvent extends BaseEvent { | ||
event: 'response'; | ||
method: 'GET' | 'POST' | 'PUT' | 'DELETE'; | ||
statusCode: number; | ||
path: string; | ||
headers: Record<string, string | string[]>; | ||
responsePayload: string; | ||
responseTime: string; | ||
query: Record<string, any>; | ||
} | ||
|
||
export interface OpsEvent extends BaseEvent { | ||
event: 'ops'; | ||
os: { | ||
load: string[]; | ||
}; | ||
proc: Record<string, any>; | ||
load: string; | ||
} | ||
|
||
export interface ErrorEvent extends BaseEvent { | ||
event: 'error'; | ||
error: Error; | ||
url: string; | ||
} | ||
|
||
export interface UndeclaredErrorEvent extends BaseEvent { | ||
error: Error; | ||
} | ||
|
||
export interface LogEvent extends BaseEvent { | ||
data: EventData; | ||
} | ||
|
||
export interface UnkownEvent extends BaseEvent { | ||
data: string | Record<string, any>; | ||
} | ||
|
||
export type AnyEvent = | ||
| ResponseEvent | ||
| OpsEvent | ||
| ErrorEvent | ||
| UndeclaredErrorEvent | ||
| LogEvent | ||
| UnkownEvent; | ||
|
||
export const isResponseEvent = (e: AnyEvent): e is ResponseEvent => e.event === 'response'; | ||
export const isOpsEvent = (e: AnyEvent): e is OpsEvent => e.event === 'ops'; | ||
export const isErrorEvent = (e: AnyEvent): e is ErrorEvent => e.event === 'error'; | ||
export const isLogEvent = (e: AnyEvent): e is LogEvent => isEventData((e as LogEvent).data); | ||
export const isUndeclaredErrorEvent = (e: AnyEvent): e is UndeclaredErrorEvent => | ||
(e as any).error instanceof Error; |
Oops, something went wrong.