log-pilot:k8s Log Collection Artifact

There are two common solutions for pod log collection in k8s. Solution 1: Use fluentd as daemonset to collect all logs in stdout and / var/lib/containers directories (because fluentd is not familiar with, so it is troublesome); Solution 2: Use filebeat as sidecar (which is too cumbersome and requires adding this container to each pod) Accide ...

Posted by artacus on Sat, 12 Oct 2019 08:30:52 -0700

JSONPATH json parsing tool

1. jsonPath's address on github is as follows: https://github.com/json-path/JsonPath 2. json-path Quick Start Operators in json-path 2. Functions available in json-path 3. Filter operators     3. maven dependence <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId&gt ...

Posted by joecooper on Sat, 12 Oct 2019 07:07:57 -0700

Java Collection Details 8: Java Collection Class Details, Details Decide Success or Failure

The Java Collection Detailed Series is a new series that I am going to start after I have completed a series of blogs that consolidate the Java Foundation Chapter. These articles will be sorted out into my Java Interview Guide warehouse on GitHub, and more exciting content can be found in my warehouse. https://github.com/h2pl/Java-Tutorial If y ...

Posted by littleelmo on Sat, 12 Oct 2019 05:32:19 -0700

Spring Cloud Config Server Node migration issues, please pay special attention to this!

Preface: Although it is strongly recommended to use domestic open source configuration centers, such as Ctrip's Apollo configuration center and Ali's Nacos Registration & configuration center. However, when choosing the actual architecture, according to the actual project size, business complexity and other factors, some projects will still ...

Posted by blackmamba on Sat, 12 Oct 2019 03:30:48 -0700

Knative Actual Warfare: Implementing Weather Service Based on Knative Serverless Technology - Part II

How did we describe in the last issue? Implementation of Weather Service Based on Knative Serverless Technology First of all, let's review what we introduced in the previous part. Through the Gaud Weather API interface, regular events are sent every three hours, and the weather information of the domestic cities in the next three days is store ...

Posted by Albright on Fri, 11 Oct 2019 23:55:11 -0700

Qt Writing Custom Control 67 - Universal Borderless

I. Preface In a previous article, I wrote about a generic mobile control, which is used to pass in any widget control and move freely in the parent container. This article is about a general borderless class, which does not exactly mean that the control should be called a component. The control is something to see and has drawing requirements, ...

Posted by Soccerplayer1316 on Fri, 11 Oct 2019 18:52:13 -0700

Implementation of Android native PDF function

1, background Recently, the company hopes to achieve Android native PDF function, requirements: efficient and practical. After two days of research and coding, a simple Demo is implemented, as shown in the figure above. There are still many technical points about the realization of PDF function in Android's native end. In order to avoid detour ...

Posted by cschotch on Fri, 11 Oct 2019 17:52:07 -0700

python day 8: re module supplement, import module, hashlib module, string formatting, module knowledge collection, initial knowledge of requests module

Catalog python day 8 1. re module supplement 2. import module import 3. os module 4. hashlib module 5. String format: percentile and format methods 6. Modular Knowledge Collection 7. Initial knowledge of requests module python day 8 2019/10/11 Data from the ...

Posted by Kerry Kobashi on Fri, 11 Oct 2019 12:24:23 -0700

vue sends ajax requests

1. vue-resource 1, introduction A Vue plug-in for processing ajax requests is widely used in vue1.x and is not maintained. 2. Use process step1: installation [Command Line Input] npm install vue-resource --save Step 2: Introduction [main.js] // Introducing vue-resource import VueResource from 'vue-resource' // Using vue-resou ...

Posted by john_6767 on Fri, 11 Oct 2019 11:46:58 -0700

Storm series: Create Maven project packages and submit wordcount to Storm cluster

Links to the original text: http://www.cnblogs.com/NewIdea/p/deploy-wordcount-topology.html In the last blog, we passed Storm.Net.Adapter Create a Storm Topology - word count written in Csharp. This article describes how to write Java-s ...

Posted by phynias on Fri, 11 Oct 2019 10:46:43 -0700