aboutsummaryrefslogtreecommitdiff
path: root/contrib
AgeCommit message (Collapse)Author
2018-04-08Make codacy happyAokromes
2018-01-01Update copyright note for 2018vincent-michael
auto happy = new year(2018);
2017-10-16Contrib/Grafana: updated dashboards (#20563)Evgeny Frolov
Add a single page dashboard including all graphs, useful for Grafana Cloud since it allows to created only a limited number of dashboards.
2017-09-23Contrib: Updated protobuf service generator with latest async handling changesShauren
2017-09-06Contrib: Dropped obsolete ScriptConverterjoschiwald
2017-07-17Optimize and Streamline Extractor.batcribolouf
2017-07-14Contrib/Windows: extractor.bat cleanuptkrokli
- Missing GOTO label :EOF at the end of the file - Messages to user are in full English sentences.
2017-02-25Update extractor.batAokromes
2017-02-11Tools: Make extractor better, add mmaps extractor multitaskAokromes
2017-01-19Contrib: Fix protoc-bnet generator to initialize all fields in the constructorShauren
2017-01-01Update copyright note for 2017vincent-michael
Happy new year
2016-10-16Yet more 6.x -> master renamesDDuarte
2016-06-04Grafana/Dashboards: Fix General info datasourcesjackpoz
Fix General info datasources for counter panels (cherry picked from commit 911bffd20826bf8898ccff02d3315720097a1da6)
2016-06-04Implement real time statistic visualization (#16956)DDuarte
Docs at https://trinitycore.atlassian.net/wiki/display/tc/Monitoring+a+TrinityCore+server * Common/Graphs: Initial proof of concept * Move influx db code to its own class * Reuse the same socket * Allow to log values of different categories * Allow to log events * Pass the timestamp to influxdb * Send events in batches * Send data async * Log server shutdown. Fix memory leak. * Allow to enable/disable Stats in the settings and at runtime * Read interval between each batch send from config * Add InfluxDB connection info to configs * Move each event category to its own table * Log pathfinding queries * Move categories table initialization to constructor using enum as key to avoid assigning the table name to the wrong enum value * Log player login/logout events. Pass the hostname correctly in the HTTP request. * Fix linux build * Handle "Connection: close" HTTP header, reconnecting on next scheduled send. Disable StatsLogger if connection fails, logging the error. * Add an enum for categories of logged values, it's still possible to pass a string instead of the enum. * Don't log the whole batchedData when InfluxDB returns an error, it's too long and unreadable on console. * Allow to call a function at a specified interval in thread-safe World::Update() context to log data like player count. * Log map tile load/unload * Core/StatsLogger: Allow logging more value types other than ints https://docs.influxdata.com/influxdb/v0.10/write_protocols/write_syntax/ * Fix a typo in string escape of StatsLogger * Yet more fixes to the escaping in FormatInfluxDBValue * DB/Gameobject: Fix respawn time of few Quest GameObjects By Tauriella, closes #16701 * DB/Misc: Fix some engrish By tkrokli closes #16648 * Tools/MMaps: Add format library linking to mmaps_generator (Very) partial cherry pick of ed75b0649add23e082976fa4e5d504bc0c312602 * Core/StatsLogger: Simplify code Convert values and categories arrays to maps initialized in-place Remove constructor and destructor * Core/StatsLogger: Add realm name to the event and value tags * Log amount of processed packet of each session * Apply recent singleton changes to sStatsLogger too * Fix influxdb data format if no realm name is present * Remove unneeded newlines from request body, fixes response 400 from InfluxDB 0.10 * Rename Reporting folder to Metric * Rename StatsLogger to Metric * Rename InfluxDB configs to Metric * Add Grafana dashboards * Add a random annoying macro * Move string formatting to Metric::SendBatch(), reducing performance footprint of Metric::LogEvent() and Metric::LogValue() * Update grafana graphs refresing tags on load and showing now-15m data, refreshing every minute. These settings can be modified in grafana. * Rename MetricData fields * Contrib/Grafana: Rename dashboard files * Contrib/Grafana: Replace hardcoded Windows/Ubuntu realm names by the default, Trinity * Config/Worldserver: Add missing section to the index * Contrib/Grafana: Add singlestat panels with current online players, update diff averages (1 min, 5 mins and 15 mins) http://i.imgur.com/Zi8lfvS.png * Core/Metric: Replace the enums MetricEventCategory and MetricValueCategory by strings For the sake of simplicity and less recompile time when adding new metrics, similar to how TC_LOG_* works * Contrib/Grafana: Display the current number of online players and not its average Closes #15075 (cherry picked from commit 3ae10160820782d039c3449107960108fb3a63b9) # Conflicts: # src/server/game/Server/WorldSession.cpp # src/server/game/World/World.cpp # src/server/worldserver/Main.cpp
2016-04-17Contrib: Fix the check_update scripts after the recent organization changesNaios
* Fixes the travis build * Ref 8778829a98e3d605
2016-04-16Core/Proto: Convert the proto project to a standalone shared libraryNaios
* Fixes issues with dynamic linking on linux * Closes #16981
2016-04-08Misc/Extractor: Add batch file for extractorsAokromes
You must copy it to your wow directory with the tools and run it. Linux version is welcomed. (cherry picked from commit d55d32fa0f7a7d86d8eae2649f7090377c777d2e)
2016-03-26Contrib: Updated protoc plugin to generate service classes suitable for ↵Shauren
dynamic linking
2016-03-26Contrib: Added .bat file with commands to generate protobuf sources using ↵Shauren
the plugin
2016-03-26Clang build fixShauren
2016-03-26Core/Shared: Added generated protobuf sourcesShauren
2016-03-26Contrib: Added sources of the protoc plugin used to generate servicesShauren
2016-01-01Update copyright note for 2016Vincent-Michael
Happy new year (Again new year with idiots ...)
2015-10-14contrib/script: error text corrections in check_updates.shtkrokli
Fix a factual error in the /contrib/check_updates.sh error message text, Best shown in an example from the latest travis build error: ``` $ ./contrib/check_updates.sh auth auth Database Updater check script: Checking database 'auth' for missing filenames in tables... - "sql/updates/2015_10_09_00_auth.sql" is missing in table 'auth'.'updates' Fatal error: The Database Updater is broken for database 'auth due to applied update which are missing in the 'auth'.'updates' table. How to fix: Insert the missing names of sql updates which were applied already to the 'updates' table of the 'auth' base dump ('sql/base/auth_database.sql'). The command "./contrib/check_updates.sh auth auth" exited with 1. ``` Main fix: `\"sql/updates/${file}\"` -> `\"sql/updates/${name}/${file}\"` Before this change, the error message claims that the updated SQL file was placed directly in the `/sql/updates/` directory and not in the subdirectory based on its DB name. All the other changes are improvements in English grammar and more precise description. (cherry picked from commit 01e0475ab898632bb9fd7c3ab0b11ddc6d5cee81)
2015-10-05Travis: Add check for update entries not listed in base dumps.Naios
* Will mark the travis build as failed when the database updater is broken. (cherry picked from commit 4dd6070c795fa7b34a38af0bd8d19d55bbc62959)
2015-07-25Core/Misc: Update helgrind suppressionsjackpoz
(cherry picked from commit e008ae752012d78aa3b1f40e6bf1f5bea6e64145)
2015-06-26Core/Misc: Update helgrind suppressionsjackpoz
(cherry picked from commit 6a303caffd6930bf20e15668229a45a77d38f348)
2015-06-26Core/Misc: Update helgrind suppressionsjackpoz
(cherry picked from commit abda6840e1ac3c8140af59c619bef934761db5ee)
2015-03-01SQL: Remove failVincent-Michael
2015-03-01Core/Misc: Update base stuff for V6.1.0 build 19702Vincent-Michael
2015-02-19Contrib: Update merge_updates batch files with hotfixes dbDuarte Duarte
2015-01-01Update copyright note for 2015Vincent-Michael
Happy new year
2014-11-10Core: Nuke authserverDDuarte
It has been replaced by bnetserver since grunt was deprecated
2014-10-28Tools/connection_patcher: remove c# code, add c++ code with minor ↵bloerwald
modification, move to tools, integrate into cmake note: no longer downloads nonexistent modules note: now throws on not finding patterns new dependency: boost.filesystem Closes #13471
2014-10-04Core/Authserver: Updated battle.net structures to 6.0.2.18973Shauren
2014-09-21Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4Vincent-Michael
Conflicts: src/server/game/DataStores/DBCStructure.h src/server/game/DataStores/DBCfmt.h
2014-09-20Core/Misc: Update helgrind suppressionsjackpoz
2014-08-24Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4Vincent-Michael
Conflicts: src/server/game/Entities/Unit/Unit.cpp
2014-08-24Core: Fix warningsVincent-Michael
2014-08-24Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4Vincent-Michael
2014-08-24TDB 335.55 - 2014/08/24TDB335.55Vincent-Michael
2014-06-08Merge branch 'battle.net' into 4.3.4Shauren
2014-05-18Contrib/Patcher: Make the client use realmListBn config instead of having to ↵Shauren
deal with portal and hosts rewrites
2014-05-17Contrib: Added an updated version of the configuration file merger tool.Warpten
This one lets you choose which value to keep between the two configuration files. Make sure to carefully read the file's lines 3 to 9 to make sure you don't misuse it and get back at me later raging. It is not exactly as I would like it to be, but current state will have to do. You can try it out live at: http://tinyurl.com/kzxmrlm
2014-05-11Contrib: Added client patcher, original author @FabiShauren
2014-04-26Move merge_updates_windows.bat to right folder and add Unix versionGacko
2014-01-01Update copyright note for 2014.Vincent_Michael
Happy new year.
2013-11-04Core/Threads: Include Helgrind suppressions filejackpoz
Include a Helgrind suppressions file under source control. Each suppressed race is either a false positive, a read race followed by a lock acquire anyway, a bool race. Suppressions related to the same issue in the same function are grouped with a counter in brackets [ ] . Fix tabs added in bcee801e4bdbf7d53f15cd0499e9d3aaedd3c3e2 .
2013-01-01Update copyright note for 2013.Vincent_Michael
Happy new year.
2012-03-11update forgotten copyright-headers for 2012thomas33