-
Notifications
You must be signed in to change notification settings - Fork 11
Buccaneer Upgrade / Barnacle #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MWillWallT
wants to merge
37
commits into
master
Choose a base branch
from
barnacle-gemini
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 33 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
7a33711
Large Refactor. Reduce public facing code. Add editor based options. …
Belchy06 8067ae0
Refactor Bucc4PS
Belchy06 fafb1c2
Add Bucc4PS2
Belchy06 c504859
Fix copyright notices
Belchy06 7b87d84
Update namespacing
Belchy06 9fa3d6c
Fix Bucc4PS2 crash and add reporting interval project setting
Belchy06 91ac785
Barnacle Gemini
MWillWallT 07135e7
Metrics and time stamp updates
MWillWallT f8a9983
Update BuccaneerCommonModule.cpp
DenisTensorWorks 71bd4e6
Update BuccaneerCommonModule.cpp
DenisTensorWorks 4bad6e8
Update BuccaneerCommonModule.cpp
DenisTensorWorks 1aa7d3b
Update Plugins/Buccaneer/Source/BuccaneerCommon/Private/BuccaneerComm…
lukehb 5c5b320
- Added logic to prevent race condition
DenisTensorWorks 65a46fa
Fix false Append removal
MWillWallT 7b75dda
Merge pull request #10 from TensorWorks/update-file-rewrite-handling
MWillWallT de1a9ef
Update PushStatsHTTP to PushStats
MWillWallT f066ecb
Reverting back to previous stat sending to restore original Buccaneer…
MWillWallT 2c063f3
Refactor metrics handling to use FMetricsCollection
MWillWallT a05cb12
Prelim scaffolding prior to refactor bucc metrics
MWillWallT 98cec27
Updated barnacle to work with buccaneer. Pixel Streaming stats report…
MWillWallT 0a46ee2
Making FMetricsCollection more general
lukehb 668502b
Update BuccaneerMetrics.cpp
MWillWallT 8061e2e
Added ResX and ResY from the application
MWillWallT 2e8d174
Added sending of application stats from Pixel Streaming 1 and 2
lukehb b80b79d
Added better logging, exposed port for buc server as arg, make docker…
lukehb 66b99b2
Added missing locks/unlocks to main.go
lukehb 89a641b
Added better stat descriptions and < > format fixes
MWillWallT 69bf02c
Merge branch 'barnacle-gemini' of https://github.com/TensorWorks/Bucc…
MWillWallT fa8050d
Trying to fix deadlocking
lukehb aa82e64
New icons, fixes for crash on startup with editor, added reporting in…
MWillWallT 0c76eae
Removed useless bat file
MWillWallT 2d17243
New dashboards for Grafana PS stats
MWillWallT 2cf1ffc
Resolving all Gemini review issues
MWillWallT 8ce48c9
Update Dashboards/PS1 Barnacle Dashboard.json
MWillWallT b3013f2
New filename arg + updating default filename
MWillWallT 80c9ce3
Changing default filename for json output
MWillWallT 18dcc72
Fixing compilation error with Bucc PS1
MWillWallT File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| services: | ||
| unreal: | ||
| image: "tensorworks/buccaneerdemo-application" | ||
| command: [ "-PixelStreamingURL=ws://127.0.0.1:8888", "-BuccaneerURL=http://127.0.0.1:8000", "-RenderOffScreen", "-Res=1920x1080" ] | ||
| container_name: unreal | ||
| network_mode: "host" | ||
| deploy: | ||
| resources: | ||
| reservations: | ||
| devices: | ||
| - driver: nvidia | ||
| capabilities: [gpu] | ||
| count: 1 | ||
|
|
||
| cirrus: | ||
| image: "tensorworks/buccaneerdemo-cirrus" | ||
| container_name: cirrus | ||
| network_mode: "host" | ||
|
|
||
| buccaneerserver: | ||
| image: "tensorworks/buccaneerdemo-buccaneerserver" | ||
| container_name: buccaneerserver | ||
| network_mode: "host" | ||
|
|
||
| prometheus: | ||
| image: "prom/prometheus" | ||
| container_name: prometheus | ||
| network_mode: "host" | ||
| volumes: | ||
| - "../../Configs/prometheus.yml:/etc/prometheus/prometheus.yml" | ||
|
|
||
| grafana: | ||
| image: grafana/grafana | ||
| container_name: grafana | ||
| network_mode: "host" | ||
| volumes: | ||
| - "../../Configs/grafana-dashboard-config.yaml:/etc/grafana/provisioning/dashboards/grafana-dashboard-config.yaml" | ||
| - "../../Configs/grafana-datasource-config.yaml:/etc/grafana/provisioning/datasources/grafana-datasource-config.yaml" | ||
| - "../../Dashboards/:/etc/dashboards" | ||
|
|
||
| loki: | ||
| image: grafana/loki | ||
| container_name: loki | ||
| network_mode: "host" | ||
| volumes: | ||
| - "../../Configs/loki-local-config.yaml:/etc/loki/loki-local-config.yaml" | ||
|
|
||
| promtail: | ||
| image: grafana/promtail | ||
| container_name: promtail | ||
| command: -config.file=/etc/promtail/promtail-local-config.yaml | ||
| network_mode: "host" | ||
| volumes: | ||
| - "../../Configs/promtail-local-config.yaml:/etc/promtail/promtail-local-config.yaml" | ||
| - "eventslogs:/EventsServer" | ||
|
|
||
| volumes: | ||
| eventslogs: | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.