File tree Expand file tree Collapse file tree
config/grafana/dashboards Expand file tree Collapse file tree Original file line number Diff line number Diff line change 172172 "properties" : [
173173 {
174174 "id" : " custom.width" ,
175- "value" : 400
176- },
177- {
178- "id" : " custom.cellOptions" ,
179- "value" : {
180- "type" : " auto" ,
181- "wrapText" : true
182- }
175+ "value" : 300
183176 }
184177 ]
185178 }
Original file line number Diff line number Diff line change @@ -88,9 +88,9 @@ def get_query_texts_from_sink(db_name: str = None) -> dict:
8888 queryid = row ['queryid' ]
8989 query_text = row ['query' ]
9090 if queryid :
91- # Truncate very long queries for display
92- if query_text and len (query_text ) > 500 :
93- query_text = query_text [:500 ] + '...'
91+ # Truncate long queries for display (150 chars)
92+ if query_text and len (query_text ) > 150 :
93+ query_text = query_text [:150 ] + '...'
9494 query_texts [queryid ] = query_text or ''
9595
9696 conn .close ()
You can’t perform that action at this time.
0 commit comments