How to get the server version number
See original GitHub issueDescription
How can I get the server version number, apart from downloading the whole openapi.json file from api/v1/openapi.json
? I would not like to download the whole API schema just for the version number only.
I could create my own endpoint for that, but am I missing a more obvious way of doing it?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Different methods to identify the SQL Server version number
To obtain the SQL Server version numbers from the error log file, open the ERRORLOG.txt file of SQL Server. The default location of...
Read more >Determine version number and service pack - Exchange
Start the Microsoft Exchange Management console. · In the navigation pane, expand the Server Configuration objects until you locate the server ...
Read more >How to find my Subversion server version number?
Open the %VISUALSVN_SERVER%README.txt file. The first line shows the version number. enter image description here · Share.
Read more >How to tell what SQL Server versions you are running
The first is by using the functionality in SQL Server Management Studio and right clicking on the instance name and selecting Properties. In...
Read more >How to Determine SQL Server Version Number In Various Ways
You can access the Help menu in Management Studio and goto “About” to ascertain which SQL Server versions of the client tools you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
request.app.version
is MUCH better than myfrom myproject import __version__
, I might steal that…!Yeah, your best bet would probably be to return
request.app.version
in an endpoint. There is no built-in way to surface this information externally short of accessing the openapi spec.