Skip to content

Commit bb01eda

Browse files
authored
Merge pull request #649 from exceptionless/feature/discard-join
Feature/discard join
2 parents af087ac + f08ca69 commit bb01eda

File tree

231 files changed

+20028
-2653
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

231 files changed

+20028
-2653
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Build
22
on: [ push, pull_request ]
3-
env:
4-
DOTNET_CLI_TELEMETRY_OPTOUT: 1
5-
DOTNET_NOLOGO: true
63

74
jobs:
85
build:
@@ -71,7 +68,7 @@ jobs:
7168
if: github.event_name != 'pull_request'
7269
uses: azure/setup-helm@v1
7370
with:
74-
version: v3.2.3
71+
version: v3.3.0
7572
- name: Deploy Changes to Development Environment
7673
if: github.ref == 'refs/heads/feature/discard-join' && github.event_name != 'pull_request'
7774
run: |

.github/workflows/elasticsearch-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
jobs:
99

1010
build:
11-
11+
1212
runs-on: ubuntu-latest
13-
13+
1414
steps:
1515
- uses: actions/checkout@v1
1616
- name: Build custom Elasticsearch docker image

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515
"editorconfig",
1616
"elasticsearch",
1717
"gitignore"
18-
]
18+
],
19+
"powershell.codeFormatting.addWhitespaceAroundPipe": true
1920
}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ CMD [ "dotnet", "Exceptionless.Web.dll" ]
7878

7979
# completely self-contained
8080

81-
FROM exceptionless/elasticsearch:7.7.1 AS exceptionless
81+
FROM exceptionless/elasticsearch:7.8.1 AS exceptionless
8282

8383
WORKDIR /app
8484
COPY --from=api-publish /app/src/Exceptionless.Web/out ./

Exceptionless.sln

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2036
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30001.183
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Exceptionless.Core", "src\Exceptionless.Core\Exceptionless.Core.csproj", "{3E5B39D5-7ACD-486B-9F90-59116B67952D}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{98A5A2F7-BBA9-4B65-91C9-88E18D474341}"
99
ProjectSection(SolutionItems) = preProject
1010
.editorconfig = .editorconfig
11+
.github\workflows\build.yaml = .github\workflows\build.yaml
1112
build\common.props = build\common.props
1213
CONTRIBUTING.md = CONTRIBUTING.md
14+
docker-compose.yml = docker-compose.yml
1315
Dockerfile = Dockerfile
1416
global.json = global.json
1517
LICENSE.txt = LICENSE.txt
1618
NuGet.Config = NuGet.Config
1719
README.md = README.md
18-
docker-compose.yml = docker-compose.yml
1920
EndProjectSection
2021
EndProject
2122
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Exceptionless.Insulation", "src\Exceptionless.Insulation\Exceptionless.Insulation.csproj", "{75D9D89F-09F2-43A6-8B53-E1518E9FA822}"
@@ -56,7 +57,8 @@ Global
5657
GlobalSection(SolutionProperties) = preSolution
5758
HideSolutionNode = FALSE
5859
EndGlobalSection
60+
GlobalSection(ExtensibilityGlobals) = postSolution
5961
GlobalSection(ExtensibilityGlobals) = postSolution
6062
SolutionGuid = {1A90AFA5-B81C-4B1B-9DFA-2D90F8CA0EF0}
61-
EndGlobalSection
63+
EndGlobalSection
6264
EndGlobal

NuGet.Config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
<configuration>
33
<packageSources>
44
<add key="Foundatio" value="https://f.feedz.io/foundatio/foundatio/nuget/index.json" />
5+
<add key="StackOverflow" value="https://www.myget.org/F/stackoverflow/api/v3/index.json" />
56
</packageSources>
67
</configuration>

build/common.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
<LangVersion>latest</LangVersion>
1414
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1515
<EmbedUntrackedSources>true</EmbedUntrackedSources>
16+
<ReferenceFoundatioSource>false</ReferenceFoundatioSource>
17+
<ReferenceFoundatioRepositoriesSource>false</ReferenceFoundatioRepositoriesSource>
1618
</PropertyGroup>
1719

1820
<ItemGroup>

build/docker-entrypoint.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ else
1212
mkdir -p /var/log/supervisor
1313
mkdir -p Temp/
1414

15+
sed -i -E "s/app\//app\/wwwroot\//" /usr/local/bin/bootstrap
16+
sed -i -E "s/nginx//" /usr/local/bin/bootstrap
17+
/usr/local/bin/bootstrap
18+
1519
supervisord -c /etc/supervisord.conf
1620
sleep 3
1721

docker-compose.dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
- appdata:/app/storage
5353

5454
elasticsearch:
55-
image: exceptionless/elasticsearch:7.7.1
55+
image: exceptionless/elasticsearch:7.9.0
5656
environment:
5757
discovery.type: single-node
5858
xpack.security.enabled: 'false'
@@ -62,11 +62,11 @@ services:
6262
- 9300:9300
6363
volumes:
6464
- esdata7:/usr/share/elasticsearch/data
65-
65+
6666
kibana:
6767
depends_on:
6868
- elasticsearch
69-
image: docker.elastic.co/kibana/kibana:7.7.1
69+
image: docker.elastic.co/kibana/kibana:7.9.0
7070
ports:
7171
- 5601:5601
7272

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ version: '3.5'
55

66
services:
77
elasticsearch:
8-
image: exceptionless/elasticsearch:7.7.1
8+
image: exceptionless/elasticsearch:7.9.0
99
environment:
1010
discovery.type: single-node
1111
xpack.security.enabled: 'false'
1212
ES_JAVA_OPTS: -Xms1g -Xmx1g
1313
ports:
1414
- 9200:9200
1515
- 9300:9300
16-
16+
1717
kibana:
1818
depends_on:
1919
- elasticsearch
20-
image: docker.elastic.co/kibana/kibana:7.7.1
20+
image: docker.elastic.co/kibana/kibana:7.9.0
2121
ports:
2222
- 5601:5601
2323

2424
redis:
2525
image: redis:6.0-alpine
2626
ports:
2727
- 6379:6379
28-
28+
2929
ui:
3030
image: exceptionless/ui:latest
3131
environment:
@@ -34,7 +34,7 @@ services:
3434
EX_Html5Mode: 'true'
3535
ports:
3636
- 5100:80
37-
37+
3838
ready:
3939
image: dadarek/wait-for-dependencies
4040
command: elasticsearch:9200

0 commit comments

Comments
 (0)