this picture illustrates the importance of having a full-stack development team, enabling us to plan better as the team can eat the cake vertically sliced.
一个常用的Splunk查询例子
index=”actioncenter” | search “msg.Results.TraceLevel”=Error | search cf_app_name=”AccountOpenBFFAPI*” | search “msg.Results.Message”=”HTTP Response: {\”message\”:\”Invalid Role Title Code*with Customer Type BENE combination.*” | spath output=EnvelopeId path=msg.Extended_Fields.EnvelopeId | where isnotnull(EnvelopeId) | spath output=ActionId path=msg.Extended_Fields.ActionId | eval time =strftime(_time, “%m-%d-%Y %l:%M %p”) | table time, EnvelopeId, ActionId | stats list(time) by EnvelopeId,ActionId
table 和 stats list并不都需要,看实际情况。
Angular directive as data source
https://javascript.plainenglish.io/stop-wrapping-angular-components-7d397c23a84c
把数据和UI元素(component)分离。directives 可以有很多用途。
但有一点,directive 的DI decorator是不是应该用@host而不是@self