const getDateTime = (type) => { // 获取当前日期 let timestamp = Date.parse(new Date()); let date = new Date(timestamp); if (type == 'tomorrow') { // 明天 date ...
分类:
Web程序 时间:
2020-06-12 19:58:56
阅读次数:
385
1.获取当前日期 如2020-13-22 current_date() 或者current_date 获取当前时间:from_unixtime(unix_timestamp()) -->返回格式:yyyy-MM-dd HH:mm:ss :current_timestamp() -->返回格式:yyy ...
分类:
数据库 时间:
2020-06-12 16:05:54
阅读次数:
58
--日期转时间戳 SELECT EXTRACT(epoch FROM NOW()); SELECT EXTRACT(epoch FROM CAST('2017-12-06 00:17:10' AS TIMESTAMP)); --时间戳转日期 SELECT TO_TIMESTAMP(151249063 ...
分类:
数据库 时间:
2020-06-11 21:24:05
阅读次数:
177
在用户根目录创建个filebeat.docker.yml文件,文件内容如下 filebeat.config: modules: path: ${path.config}/modules.d/*.yml reload.enabled: false filebeat.autodiscover: prov ...
分类:
其他好文 时间:
2020-06-11 18:10:21
阅读次数:
115
在建表时: `create_time` timestamp not null default current_timestamp comment'创建时间',--将系统当前时间设为默认值 `update_tiem` timestamp not null default current_timesta ...
分类:
其他好文 时间:
2020-06-11 01:03:08
阅读次数:
62
# coding=utf-8 import os import time path = os.getcwd() index = 0 while True: # 当前时间戳 timestamp = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) ...
分类:
编程语言 时间:
2020-06-10 21:24:43
阅读次数:
88
DateUtils.java package com.alphajuns.ssm.util; import org.apache.commons.lang.time.DateFormatUtils; import java.sql.Timestamp; import java.text.ParseE ...
分类:
其他好文 时间:
2020-06-10 11:20:10
阅读次数:
54
使用NSSM将Logstash安装为Windows服务 下载NSSM:http://www.nssm.cc/download 将NSSM解压,eg:E盘,进入到E:\nssm-2.24\win64 ,执行cmd nssm install logstash,【nssm install <服务名> 例如 ...
celery的简介 celery是一个基于分布式消息传输的异步任务队列,它专注于实时处理,同时也支持任务调度。它的执行单元为任务(task),利用多线程,如Eventlet,gevent等,它们能被并发地执行在单个或多个职程服务器(worker servers)上。任务能异步执行(后台运行)或同步执 ...
分类:
编程语言 时间:
2020-06-09 23:27:41
阅读次数:
107
ELK ELK是Elasticsearch、Logstash、Kibana三大开源框架首字母大写简称。市面上也被成为Elastic Stack。 Elasticsearch是一个基于Lucene、分布式、通过Restful方式进行交互的近实时搜索平台框架。像类似百度、谷歌这种大数据全文搜索引擎的场景 ...
分类:
其他好文 时间:
2020-06-09 16:51:12
阅读次数:
54