Skip to content

Commit c2b5fb2

Browse files
committed
Updated readme
1 parent 03ab62f commit c2b5fb2

File tree

7 files changed

+11
-14
lines changed

7 files changed

+11
-14
lines changed

ReadMe.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@ Coderr Community Server
33

44
[![Build status](https://1tcompany.visualstudio.com/_apis/public/build/definitions/75570083-b1ef-4e78-88e2-5db4982f756c/6/badge)]() [![Github All Releases](https://img.shields.io/github/downloads/coderrio/coderr.server/total.svg?style=flat-square)]()
55

6-
# Skip logfiles - Use automated exception handling!
6+
# Discover more errors and solve them faster!
77

8-
![OSS screenshot of v2.0](docs/screenshot.png)*screenshot is from the version 2.0 beta*
8+
![Welcome screen](docs/dashboard.png)
9+
10+
11+
## Search function
12+
13+
![Search using your own data](docs/seach.png)
914

1015

1116
.. don't want to host/maintain your own server? Try [Coderr Live](https://coderr.io/live/)

docs/dashboard.png

65.4 KB
Loading

docs/screenshot.png

-79.7 KB
Binary file not shown.

docs/search.png

32.9 KB
Loading

src/Server/Coderr.Server.ReportAnalyzer/Inbound/Handlers/Reports/ReportAnalyzer.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,7 @@ public async Task Analyze(IMessageContext context, ErrorReportEntity report)
8989
{
9090
incident = BuildIncident(report);
9191

92-
if (!string.IsNullOrEmpty(report.EnvironmentName))
93-
incident.EnvironmentNames = new[] { report.EnvironmentName };
94-
9592
_repository.CreateIncident(incident);
96-
_repository.SaveEnvironmentName(incident.Id, report.EnvironmentName);
9793
var evt = new IncidentCreated(incident.ApplicationId,
9894
incident.Id, incident.Description, incident.FullName)
9995
{
@@ -120,8 +116,6 @@ public async Task Analyze(IMessageContext context, ErrorReportEntity report)
120116
return;
121117
}
122118

123-
if (!string.IsNullOrEmpty(report.EnvironmentName))
124-
_repository.SaveEnvironmentName(incident.Id, report.EnvironmentName);
125119
if (incident.IsClosed)
126120
{
127121
if (applicationVersion != null && incident.IsReportIgnored(applicationVersion))
@@ -147,6 +141,9 @@ public async Task Analyze(IMessageContext context, ErrorReportEntity report)
147141
_repository.UpdateIncident(incident);
148142
}
149143

144+
if (!string.IsNullOrWhiteSpace(report.EnvironmentName))
145+
_repository.SaveEnvironmentName(incident.Id, report.EnvironmentName);
146+
150147
report.IncidentId = incident.Id;
151148
_repository.CreateReport(report);
152149
_logger.Debug("saving report " + report.Id + " for incident " + incident.Id);

src/Server/Coderr.Server.ReportAnalyzer/Incidents/IncidentBeingAnalyzed.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,6 @@ public string Description
9292
set => _description = value;
9393
}
9494

95-
/// <summary>
96-
/// List of all environment names that the developer specified when reporting the errors.
97-
/// </summary>
98-
public string[] EnvironmentNames { get; set; }
99-
10095
/// <summary>
10196
/// Full name of the exception message.
10297
/// </summary>

src/Server/Coderr.Server.Web/ClientApp/components/discover/home/home.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export default class DiscoverComponent extends Vue {
192192
});
193193
series.push({
194194
name: 'Reports',
195-
data: stats.Incidents
195+
data: stats.ErrorReports
196196
});
197197
this.legend.push({
198198
name: 'Reports',

0 commit comments

Comments
 (0)