Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CAP
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
CAP
Commits
200d14a8
Commit
200d14a8
authored
Nov 05, 2019
by
Savorboard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused file
parent
59f90b07
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
108 deletions
+0
-108
IMonitoringApi.cs
src/DotNetCore.CAP.Dashboard/IMonitoringApi.cs
+0
-29
MessageDto.cs
src/DotNetCore.CAP.Dashboard/Monitoring/MessageDto.cs
+0
-28
MessageQueryDto.cs
src/DotNetCore.CAP.Dashboard/Monitoring/MessageQueryDto.cs
+0
-23
ServerDto.cs
src/DotNetCore.CAP.Dashboard/Monitoring/ServerDto.cs
+0
-12
StatisticsDto.cs
src/DotNetCore.CAP.Dashboard/Monitoring/StatisticsDto.cs
+0
-16
No files found.
src/DotNetCore.CAP.Dashboard/IMonitoringApi.cs
deleted
100644 → 0
View file @
59f90b07
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using
System
;
using
System.Collections.Generic
;
using
DotNetCore.CAP.Dashboard.Monitoring
;
using
DotNetCore.CAP.Messages
;
namespace
DotNetCore.CAP.Dashboard
{
public
interface
IMonitoringApi
{
StatisticsDto
GetStatistics
();
IList
<
MessageDto
>
Messages
(
MessageQueryDto
queryDto
);
int
PublishedFailedCount
();
int
PublishedSucceededCount
();
int
ReceivedFailedCount
();
int
ReceivedSucceededCount
();
IDictionary
<
DateTime
,
int
>
HourlySucceededJobs
(
MessageType
type
);
IDictionary
<
DateTime
,
int
>
HourlyFailedJobs
(
MessageType
type
);
}
}
\ No newline at end of file
src/DotNetCore.CAP.Dashboard/Monitoring/MessageDto.cs
deleted
100644 → 0
View file @
59f90b07
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using
System
;
namespace
DotNetCore.CAP.Dashboard.Monitoring
{
public
class
MessageDto
{
public
long
Id
{
get
;
set
;
}
public
string
Version
{
get
;
set
;
}
public
string
Group
{
get
;
set
;
}
public
string
Name
{
get
;
set
;
}
public
string
Content
{
get
;
set
;
}
public
DateTime
Added
{
get
;
set
;
}
public
DateTime
?
ExpiresAt
{
get
;
set
;
}
public
int
Retries
{
get
;
set
;
}
public
string
StatusName
{
get
;
set
;
}
}
}
\ No newline at end of file
src/DotNetCore.CAP.Dashboard/Monitoring/MessageQueryDto.cs
deleted
100644 → 0
View file @
59f90b07
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using
DotNetCore.CAP.Messages
;
namespace
DotNetCore.CAP.Dashboard.Monitoring
{
public
class
MessageQueryDto
{
public
MessageType
MessageType
{
get
;
set
;
}
public
string
Group
{
get
;
set
;
}
public
string
Name
{
get
;
set
;
}
public
string
Content
{
get
;
set
;
}
public
string
StatusName
{
get
;
set
;
}
public
int
CurrentPage
{
get
;
set
;
}
public
int
PageSize
{
get
;
set
;
}
}
}
\ No newline at end of file
src/DotNetCore.CAP.Dashboard/Monitoring/ServerDto.cs
deleted
100644 → 0
View file @
59f90b07
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
namespace
DotNetCore.CAP.Dashboard.Monitoring
{
public
class
SubscriberDto
{
public
string
Name
{
get
;
set
;
}
public
string
Method
{
get
;
set
;
}
}
}
\ No newline at end of file
src/DotNetCore.CAP.Dashboard/Monitoring/StatisticsDto.cs
deleted
100644 → 0
View file @
59f90b07
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
namespace
DotNetCore.CAP.Dashboard.Monitoring
{
public
class
StatisticsDto
{
public
int
Servers
{
get
;
set
;
}
public
int
PublishedSucceeded
{
get
;
set
;
}
public
int
ReceivedSucceeded
{
get
;
set
;
}
public
int
PublishedFailed
{
get
;
set
;
}
public
int
ReceivedFailed
{
get
;
set
;
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment