Class JaegerAuthSettings
Used for authentication against the HTTP collection endpoints
Inheritance
System.Object
JaegerAuthSettings
Namespace:Phobos.Tracing.Jaeger.Config
Assembly:Phobos.Tracing.Jaeger.dll
Syntax
public sealed class JaegerAuthSettings
Constructors
JaegerAuthSettings(String)
Declaration
public JaegerAuthSettings(string token)
Parameters
Type | Name | Description |
---|---|---|
System.String | token |
JaegerAuthSettings(String, String)
Declaration
public JaegerAuthSettings(string user, string password)
Parameters
Type | Name | Description |
---|---|---|
System.String | user | |
System.String | password |
Properties
Password
The password to use for authenticating with Jaeger HTTP endpoint.
Declaration
public string Password { get; }
Property Value
Type | Description |
---|---|
System.String |
Token
The auth token to send as "Bearer" to the endpoint.
To be used instead of auth.user
and auth.password
.
Declaration
public string Token { get; }
Property Value
Type | Description |
---|---|
System.String |
User
The username to use for basic authentication to the HTTP endpoint.
Declaration
public string User { get; }
Property Value
Type | Description |
---|---|
System.String |