mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
447 B
19 lines
447 B
from terminal.utils.loki_client import get_loki_client
|
|
|
|
__all__ = ['LokiMixin', ]
|
|
|
|
|
|
class LokiMixin:
|
|
|
|
@staticmethod
|
|
def get_loki_client():
|
|
return get_loki_client()
|
|
|
|
@staticmethod
|
|
def create_loki_query(components, search):
|
|
stream_selector = '{component!=""}'
|
|
if components:
|
|
stream_selector = '{component=~"%s"}' % components
|
|
query = f'{stream_selector} |="{search}"'
|
|
return query
|