- https://github.com/gigya/microdot: Microservice framework for developing microsercices
- https://github.com/Recognos/Metrics.NET: Framework to collect and expose metrics
- https://github.com/StackExchange/Dapper: A simple and lightweight relational database access framework
- Awesome collection of .net frameworkds and tools
This file contains 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
sudo yum install -y python3 -y | |
curl -O https://bootstrap.pypa.io/get-pip.py | |
python3 get-pip.py --user | |
pip install ansible --user |
This file contains 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
#!/bin/bash | |
./bin/kafka-consumer-groups.sh \ | |
--bootstrap-server localhost:9092 \ | |
--describe --group group-name |
This file contains 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
#!/bin/bash | |
./bin/kafka-consumer-groups.sh \ | |
--bootstrap-server localhost:9092 \ | |
--describe --group group-name |
This file contains 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
#!/bin/bash | |
bin/kafka-run-class.sh kafka.tools.GetOffsetShell \ | |
--broker-list localhost:9092 | |
-topic topic-name |
This file contains 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
wget https://github.com/prometheus/prometheus/releases/download/v2.14.0/prometheus-2.14.0.linux-amd64.tar.gz | |
tar -xvf prometheus-2.14.0.linux-amd64.tar.gz | |
This file contains 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
wget https://github.com/VictoriaMetrics/VictoriaMetrics/releases/download/v1.29.4/victoria-metrics-v1.29.4.tar.gz | |
sudo mkdir $storage_dir | |
tar -zxvf victoria-metrics-v1.29.4.tar.gz | |
rm victoria-metrics-v1.29.4.tar.gz | |
sudo ./victoria-metrics-prod -httpListenAddr=:80 |
This file contains 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
select db_name,pg_database_size(db_name) database_size, pg_size_pretty(pg_database_size(db_name)) as database_size_pretty from | |
(select datname as db_name, pg_database_size(datname) from pg_database | |
where datname <>'rdsadmin') x | |
order by database_size |
This file contains 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
1) http://lampwww.epfl.ch: Convert scala code to run on .NET. | |
2) Glossary to understand the terms: https://docs.microsoft.com/en-us/dotnet/standard/glossary | |
3) ikvm not compatible with .netcore | |
3.1) https://github.com/wwrd/ikvm8/issues/3 | |
3.2) https://github.com/KevM/tikaondotnet/issues/75 |
This file contains 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
#!/bin/bash | |
wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb | |
sudo dpkg -i packages-microsoft-prod.deb | |
sudo add-apt-repository universe | |
sudo apt-get install -y apt-transport-https | |
sudo apt-get update | |
sudo apt-get install -y dotnet-sdk-2.2 |
NewerOlder