[jaeger-client] Add interface's properties (#36677)

https://github.com/jaegertracing/jaeger-client-node/blob/master/src/configuration.js#L52-L54
This commit is contained in:
Igor Stepanov 2019-07-11 03:37:13 +03:00 committed by Armando Aguirre
parent e0fdba3aa4
commit f07cdbd2bd

View File

@ -42,12 +42,16 @@ export interface ReporterConfig {
logSpans?: boolean;
agentHost?: string;
agentPort?: number;
collectorEndpoint?: string;
username?: string;
password?: string;
flushIntervalMs?: number;
}
export interface SamplerConfig {
type: string;
param: number;
hostPort?: string;
host?: string;
port?: number;
refreshIntervalMs?: number;