Step by step: .Net Core and Azure Search
Wednesday, August 09, 2017 in 2017
4 minute read
Step by step: .Net Core and Azure Search is small introduction on how to connect to Azure Search, create and delete indexes, models, add documents and perform basic queries. Let’s go for it: Create an Azure Search service Create an Azure Search …
Read Azure Service Health Activity Logs with .NET Core
Friday, August 04, 2017 in 2017
3 minute read
This week there was a small outage within the Azure Data Lake Store service and as consequence I wondered how could I Read Azure Service Health Activity Logs with .NET Core. Let’s go for it: Create a folder for your new project Open a command …
Create a Service Principal and write required parameters to a .azureauth file
Wednesday, August 02, 2017 in 2017
3 minute read
This week I had to repeat the process of creating a Service Principal in order to use the Microsoft.Azure.Management.Fluent lib with .NET Core so I decided it was time to script the process. With the following script you can Create a Service …
Run ASP.NET Core on OpenShift
Wednesday, July 26, 2017 in 2017
Categories:
3 minute read
Today I’ll show you how to Run ASP.NET Core on OpenShift. First be aware of the following prerequisites: You’ll need a working Docker installation. If you are using Windows 10 you can get Docker for Windows here. Be sure to Disable TLS …
dotnet new templates for AWS Lambda and Raspberry Pi
Tuesday, July 18, 2017 in 2017
Categories:
less than a minute
After reading the following articles: How to create your own templates for dotnet new Custom Project Templates Using dotnet new and having a twitter conversation with Sayed-Ibrahim-Hashimi I decided it was a nice idea to create some templates based …
HDInsight: Scale Horizontally
Thursday, July 13, 2017 in 2017
2 minute read
HDInsight: Scale Horizontally with Scale-HDInsightClusterNodes.ps1 a PowerShell workflow that will help you automate the process of scaling your cluster. The script receives 4 parameters: ResourceGroupName: The name of the resource group where the …
Deploy your ASP.NET Core Web API to AWS Lambda
Tuesday, July 04, 2017 in 2017
Categories:
4 minute read
Today I’ll show you how to Deploy your ASP.NET Core Web API to AWS Lambda. First be aware of the following prerequisites: You’ll need an AWS account: https://aws.amazon.com/ You’ll need AWS CLI installed: …
Step by step: .NET Core and Azure Cosmos DB
Sunday, June 25, 2017 in 2017
3 minute read
Step by step: .NET Core and Azure Cosmos DB is a short post on how to connect to Cosmos DB, save a document and then query to find it. Let’s start: Create a Cosmos DB account Create a Cosmos DB account in your Azure subscription. Once created …
Use PowerShell to Enable Logging for Azure RM Web Apps
Saturday, June 17, 2017 in 2017
4 minute read
Recently I client ask me to enable application and http logging for more than 20 AzureRM Web Apps. Furthermore the client wanted the logs to be stored in a Storage Account. Issues started when I decided to Use PowerShell to Enable Logging for Azure …
Start with Elasticssearch, Kibana and ASP.NET Core
Tuesday, May 30, 2017 in 2017
Categories:
2 minute read
You want to Start with Elasticssearch, Kibana and ASP.NET Core and also want to do it fast? Let’s use Docker and find out how easy it can be: Create a folder for your new project Open a command prompt an run mkdir aspnet.elk.sample cd …