本文分类:news发布日期:2025/4/4 22:29:16
相关文章
Spring Boot 整合 ELK 全面指南:实现日志采集、分析与可视化
一、ELK简介
1.1 什么是ELK?
ELK 是三个开源工具的组合:
Elasticsearch:一个分布式全文搜索和分析引擎,用于存储和查询日志数据。Logstash:一个数据处理管道工具,用于收集、解析和处理日志数据。Kibana&…
建站知识
2025/4/3 16:38:36
笔记:Centos Nginx Jdk Mysql OpenOffce KkFile Minio安装部署
远程工具
ToDesk
Nginx
解压
tar zxvf nginx-1.20.2.tar.gz进入Nginx 文件夹
cd nginx-1.20.2报错解决
./configure: error: C compiler cc is not found
yum -y install gcc gcc-c autoconf automake make./configure: error: the HTTP rewrite module requires the PC…
建站知识
2025/4/3 18:37:28
wpf 事件转命令的方式
1,方式1
<StackPanel Background"Transparent"><StackPanel.InputBindings><KeyBinding Command"{Binding ChangeColorCommand}"CommandParameter"{Binding ElementNamecolorPicker, PathSelectedItem}"Key"{Bi…
建站知识
2025/4/4 10:43:18
第 24 章 -Golang 性能优化
在Go语言中进行性能优化是一个多方面的过程,它涉及到代码编写、编译器优化、运行时系统调优以及对应用程序的深入理解。以下是针对Golang性能优化的一些关键点,包括性能分析工具、内存管理和并发优化等方面的内容,并附带一些简单的案例源代码…
建站知识
2025/4/4 20:10:01
记录一个奇怪的前端布局现象
背景
我再根尚硅谷的教程学着写页面时,用padding和margin使li里的文本水平垂直居中我看到下一级的时候发现li添加了一个div后,结果和老师的代码有所出入我就写了个demo
加padding/margin的demo
<!DOCTYPE html>
<html lang"en">…
建站知识
2025/4/4 20:05:25
在PythonStudio中,实现父子窗口间传递参数
一、方法一:发起方主动 1.1父窗体: 添加控件Lable,Edit,Button
1.2父窗体代码
import os
from glcl import *
# 需要引入子窗体类
from Unit2 import *class Form1(Form):def __init__(self, owner):self.Label1 Label(self)self.Button1 …
建站知识
2025/4/3 17:05:51