DevOps Elastic Search, Beats and a reverse proxy The problem is because the HOST header isn't being sent (or it's incorrect) so the proxy doesn't know what to do with the request.
DevOps Adding HTTPS to Kibana and Elasticsearch This post will go over adding Kibana to my new ELK stack, enabling https, and talking to my Elasticsearch over https.
DevOps Elasticsearch, NFS, and locking issues As I migrated my ELK stack to Docker backed by an NFS share, my Elasticsearch container started spitting out errors about not able to obtain a lock.
DevOps Elasticsearch and trace logging for everything I needed to enable logging on everything for Elasticsearch. By everything I mean literally everything I mean literally everything, if there was a log line, I wanted to see it.
C-Sharp Add User Secrets to a .NET Core Console Application While building my console applications I want to be able to use UserSecrets. Just like I can in an ASP Core application.
DevOps Create Your Own Docker Registry in Docker Swarm As I build my Docker Swarm cluster, I am needing a private registry. This is so I can host my own images internally, without needing to use a cloud service.
DevOps Securing the remote Docker instance Now that we've made our Docker instance accessible from a remote machine, we need to secure it.
DevOps Docker Swarm On Debian and Hyper-V The servers are based on Debian, have 2 processors each, with 8 gigs of ram, all 3 are running on a single Hyper-V server. I will use certificate authentication with SSH, install sudo, vim, configure networking and setup a swarm instance.
DevOps Remote Docker Instance I'm building a multi node Docker Swarm cluster and want to connect to it from my local desktop. I'd like to use my local development tools to build all of my Docker related files and push them up to the cluster. Note, this is an unauthenticated,
DevOps Certificate Based SSH Authentication I want to use Certificates to authenticate to my Linux servers.
DevOps Install OpenSSH client in Windows 10 Microsoft was nice enough to start shipping the OpenSSH client in Windows 10. It's easy to install if it's not already.
ASP.Net .NET Core Log Correlation - HttpClient and default headers How to pass a header to a backend API using the HttpClient easily and consistently. This header is used for correlating log entries between a frontend site, and the backend API.
ASP.Net .NET Core Log Correlation - Request Id Pass a header and have it automatically appear in all log entries on the backend service.
ASP.Net .NET Core Log Correlation - Arbitrary Log Properties Pass a header from the frontend site, and have it automatically appear in all log entries on the backend service using a custom property name so I can easily search the logs.
ASP.Net .NET Core Log Correlation - Easy Access to the Correlation Id Easily accessing the correlation Id that I am passing around, and, in my frontend site, create that correlation id
ASP.Net .NET Core Log Correlation Correlating log entries across multiple API's easily and efficiently without a whole lot of extra code in the way
DevOps LSASS and High CPU Usage Our high CPU utilization of LSASS and slow response times was caused by a poor implementation of user impersonation.
DevOps Bootable Thumb Drive for Installing Windows I needed to be able to install Windows via a USB thumb drive and I didn't want to use anything other than what comes with Windows.
DevOps Copying UNC path with PowerShell If you copy a UNC path (like \\system\share\) to some folder with Copy-Item cmdlet you'll end up with the target path including the share name. And this is usually undesirable.
DevOps Moving Certbot to Debian 9 I'm changing out my old Ubuntu firewall server with a Debian 9 system. Step one was getting everything I need installed on it. The only issue so far, certbot.
DevOps Visual Studio 2017/Android Development I have Hyper-V installed, along with a few VM's. And I use Docker, regularly, so I know Hyper-V is installed and working.
DevOps Write-Information missing in 2008R2/2012R2 In PowerShell versions less than v5 you'll notice that the friendly Write-Information cmdlet doesn't exist. That's fine, until you write a PowerShell script that uses Write-Information (or any other command that doesn't exist).
DevOps X-Forwarded-For in IIS and ELK Bringing a custom request header into IIS logs and the ELK stack
DevOps File Beat and IIS with multiple sites How to get additional fields from IIS logs into ElasticSearch.